reenabled default_reply_to folder option

This commit is contained in:
Thorsten Maerz 2002-11-05 18:56:17 +00:00
parent 8e9458ad22
commit 564f532490
3 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2002-11-05 [thorsten] 0.8.5claws75
* src/compose.c
reenabled default_reply_to folder option
2002-11-05 [colin] 0.8.5claws74
* src/compose.[ch]

View file

@ -11,7 +11,7 @@ MINOR_VERSION=8
MICRO_VERSION=5
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws74
EXTRA_VERSION=claws75
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -1634,7 +1634,13 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo,
compose_entry_append(compose,
compose->ml_post,
COMPOSE_TO);
else
else if (!(to_all || ignore_replyto)
&& msginfo->folder
&& msginfo->folder->prefs->enable_default_reply_to) {
compose_entry_append(compose,
msginfo->folder->prefs->default_reply_to,
COMPOSE_TO);
} else
compose_entry_append(compose,
(compose->replyto && !ignore_replyto)
? compose->replyto