Re: Reply to Group?



On 2001.11.13 07:40 Toralf Lund wrote:
... 
>  From what header is the address extracted? Could this problem be 
> related 
> to other IMAP header issues? The messages I've tried this have all 
> been 
> read from IMAP mailboxes.
> --
> - Toralf
>
Looks like it's `x-beenthere', `x-mailing-list', or `to'. The IMAP code
in libmutt/imap/message.c doesn't ask for the first two, but it does
fetch `to', so at first glance it's not clear why the address wouldn't
get populated. 

You could always try adding the two `x-.*' headers to `want_headers' in
libmutt/imap/message.c: patch attached.

Peter
diff ../balsa-1.2.3/libmutt/imap/message.c libmutt/imap/message.c
--- ../balsa-1.2.3/libmutt/imap/message.c	Tue Jul 31 05:32:29 2001
+++ libmutt/imap/message.c	Tue Nov 13 10:30:57 2001
@@ -54,7 +54,11 @@
   IMAP_HEADER h;
   int rc, mfhrc;
   int fetchlast = 0;
-  const char *want_headers = "DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE IN-REPLY-TO REPLY-TO LINES X-LABEL";
+  const char *want_headers = "DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE IN-REPLY-TO REPLY-TO LINES X-LABEL"
+#ifdef LIBMUTT
+      "X-BEENTHERE X-MAILING-LIST"
+#endif
+      ;
 
   ctx = idata->ctx;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]