when using 'Reply to all' include the 'send replies to' fodler property
authorPaul Mangan <paul@claws-mail.org>
Mon, 13 Oct 2003 09:09:48 +0000 (09:09 +0000)
committerPaul Mangan <paul@claws-mail.org>
Mon, 13 Oct 2003 09:09:48 +0000 (09:09 +0000)
ChangeLog.claws
configure.ac
src/compose.c

index f708fc434b082bbceed9bf41a734d689437c7792..555fc6688ca386215af4a0c095deca359828935b 100644 (file)
@@ -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 
+               <rui_hirokawa@ybb.ne.jp>        
+
 2003-10-13 [hoa]       0.9.6claws18
 
        * src/account.c
index bce4bf26c8ced59dc30330a6f74bc015aafd21c0..207548103ea8c2cf29fcca1285fc973ba3d62030 100644 (file)
@@ -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
index 4db6939dbcdb896dcc6f8f86c5c459aa941c8226..85326064ae1a70dbaab57e7d7e090f8fb2bfc4a1 100644 (file)
@@ -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);