X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fmessages.c;h=61a7b0801bf884eec52ae37fbf445f381bd7d3f7;hp=6e9b087290c537b4f34a50a3eff26e61ac674372;hb=909bf2c9fdb23ee6842aa98afc14d7b5c5f8c5e0;hpb=6a38faea03a78f287bc248dd6ae405d7f1e579f4 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);