From fd2ef9c3249b8555585d08e8f7ee4bbed8c47534 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Sun, 3 Jan 2010 01:27:15 +0000 Subject: [PATCH 1/1] 2010-01-03 [mir] 3.7.3cvs51 * src/compose.c When composing to a NNTP list TO: will always be preset to the NNTP list unless user has chosen some other default in which case we will handle this the normal way. Therefore mfield will be set to TO_FIELD_PRESENT if mailto is NULL. --- ChangeLog | 8 ++++++++ PATCHSETS | 1 + configure.ac | 2 +- src/compose.c | 1 + 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ff4cef630..048285708 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2010-01-03 [mir] 3.7.3cvs51 + + * src/compose.c + When composing to a NNTP list TO: will always be preset + to the NNTP list unless user has chosen some other default + in which case we will handle this the normal way. Therefore + mfield will be set to TO_FIELD_PRESENT if mailto is NULL. + 2010-01-01 [paul] 3.7.3cvs50 * src/gtk/about.c diff --git a/PATCHSETS b/PATCHSETS index cbd8ab799..9a828cdd3 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3924,3 +3924,4 @@ ( cvs diff -u -r 1.1.2.10 -r 1.1.2.11 manual/intro.xml; cvs diff -u -r 1.1.2.26 -r 1.1.2.27 manual/plugins.xml; ) > 3.7.3cvs48.patchset ( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 manual/claws-mail-manual.xml; cvs diff -u -r 1.1.2.11 -r 1.1.2.12 manual/intro.xml; cvs diff -u -r 1.1.2.27 -r 1.1.2.28 manual/plugins.xml; ) > 3.7.3cvs49.patchset ( cvs diff -u -r 1.4.2.75 -r 1.4.2.76 src/gtk/about.c; ) > 3.7.3cvs50.patchset +( cvs diff -u -r 1.382.2.540 -r 1.382.2.541 src/compose.c; ) > 3.7.3cvs51.patchset diff --git a/configure.ac b/configure.ac index de97bf4c3..615798087 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=3 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=50 +EXTRA_VERSION=51 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/compose.c b/src/compose.c index b6f3dcbdb..429e77c45 100644 --- a/src/compose.c +++ b/src/compose.c @@ -1059,6 +1059,7 @@ Compose *compose_generic_new(PrefsAccount *account, const gchar *mailto, FolderI mfield = compose_entries_set(compose, mailto, COMPOSE_TO); } else if (item && FOLDER_CLASS(item->folder) == news_get_class()) { compose_entry_append(compose, item->path, COMPOSE_NEWSGROUPS, PREF_FOLDER); + mfield = TO_FIELD_PRESENT; } /* * CLAWS: just don't allow return receipt request, even if the user -- 2.25.1