From 909bf2c9fdb23ee6842aa98afc14d7b5c5f8c5e0 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 13 Jul 2011 17:29:42 -0400 Subject: [PATCH] Extracting the 'To:' header from the replying_to message now works. --- webcit/messages.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webcit/messages.c b/webcit/messages.c index 6e9b08729..61a7b0801 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1428,7 +1428,9 @@ void display_enter(void) PutBstr(HKEY("references"), refs); } - if (!strcasecmp(bstr("replying_mode"), "reply")) { + if ( (!strcasecmp(bstr("replying_mode"), "reply")) + || (!strcasecmp(bstr("replying_mode"), "replyall")) + ) { StrBuf *to_rcpt = NewStrBuf(); if (!IsEmptyStr(rfca)) { StrBufAppendPrintf(to_rcpt, "%s <%s>", from, rfca); -- 2.30.2