From 47f48cb8af91dbb105866f800ff91e9299b0a942 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 11 Jun 2008 00:04:16 +0000 Subject: [PATCH] Also store the "To:" header in the messages GtkListStore --- src/account/mbox.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/account/mbox.c b/src/account/mbox.c index 4465e7b..1e12dfa 100644 --- a/src/account/mbox.c +++ b/src/account/mbox.c @@ -77,6 +77,7 @@ int _message_set_header(Message * message, char const * header, struct { int col; char * name; } abc[] = { { MH_COL_SUBJECT, "Subject: " }, { MH_COL_FROM, "From: " }, + { MH_COL_TO, "To: " }, { MH_COL_DATE, "Date: " }, { -1, NULL } };