From b98a485b9f792c6af852a2457761df7cc08554d8 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Mon, 13 Oct 2003 09:09:48 +0000 Subject: [PATCH] when using 'Reply to all' include the 'send replies to' fodler property --- ChangeLog.claws | 10 ++++++++++ configure.ac | 2 +- src/compose.c | 4 ++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index f708fc434..555fc6688 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,13 @@ +2003-10-13 [paul] 0.9.6claws19 + + * src/compose.c + when using 'Reply to all' include the 'send replies + to' folder property + + * po/ja.po + update Japanese translation. submitted by Rui Hirokawa + + 2003-10-13 [hoa] 0.9.6claws18 * src/account.c diff --git a/configure.ac b/configure.ac index bce4bf26c..207548103 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=18 +EXTRA_VERSION=19 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/compose.c b/src/compose.c index 4db6939db..85326064a 100644 --- a/src/compose.c +++ b/src/compose.c @@ -1854,6 +1854,10 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo, if (replyto && from) cc_list = address_list_append_with_comments(cc_list, from); + if (to_all && msginfo->folder && + msginfo->folder->prefs->enable_default_reply_to) + cc_list = address_list_append_with_comments(cc_list, + msginfo->folder->prefs->default_reply_to); cc_list = address_list_append_with_comments(cc_list, msginfo->to); cc_list = address_list_append_with_comments(cc_list, compose->cc); -- 2.25.1