From: Kevin McCarthy Date: Thu, 29 Nov 2018 20:36:08 +0000 (-0800) Subject: Add SENDER to default list of IMAP headers. X-Git-Tag: mutt-1-12-rel~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1daffc9b5952171d1ef9a3551fae342dec0c80ee;p=mutt Add SENDER to default list of IMAP headers. This header is matched by the ~e and ~L patterns. Those patterns should work without the user having to know to add Sender to the list of $imap_headers. This was probably just an oversight. --- diff --git a/imap/message.c b/imap/message.c index 3e400dc2..faf2c146 100644 --- a/imap/message.c +++ b/imap/message.c @@ -687,7 +687,7 @@ static int read_headers_fetch_new (IMAP_DATA *idata, unsigned int msn_begin, FILE *fp = NULL; IMAP_HEADER h; BUFFER *b; - static const char * const want_headers = "DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE CONTENT-DESCRIPTION IN-REPLY-TO REPLY-TO LINES LIST-POST X-LABEL"; + static const char * const want_headers = "DATE FROM SENDER SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE CONTENT-DESCRIPTION IN-REPLY-TO REPLY-TO LINES LIST-POST X-LABEL"; ctx = idata->ctx; idx = ctx->msgcount;