2006-12-23 [paul] 2.6.1cvs67
authorPaul Mangan <paul@claws-mail.org>
Sat, 23 Dec 2006 10:34:36 +0000 (10:34 +0000)
committerPaul Mangan <paul@claws-mail.org>
Sat, 23 Dec 2006 10:34:36 +0000 (10:34 +0000)
* src/compose.c
don't warn about empty subject when
redirecting

ChangeLog
PATCHSETS
configure.ac
src/compose.c

index 449220f7555bf6c9325cbc0c4e044e1b9ec288ed..f07c954eb310c7f6c674f3e17008fa2f836ce931 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-12-23 [paul]      2.6.1cvs67
+
+       * src/compose.c
+               don't warn about empty subject when
+               redirecting
+
 2006-12-22 [colin]     2.6.1cvs66
 
        * src/summary_search.c
index 9394c611b226dc8a4bcff954fd0494f8b63e39d7..01ae518ae1968390c864eb518c3634dc0ca231bc 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.43.2.57 -r 1.43.2.58 src/toolbar.c;  cvs diff -u -r 1.19.2.13 -r 1.19.2.14 src/toolbar.h;  cvs diff -u -r 1.1.2.21 -r 1.1.2.22 src/plugins/bogofilter/bogofilter.c;  cvs diff -u -r 1.1.2.13 -r 1.1.2.14 src/plugins/bogofilter/bogofilter_gtk.c;  cvs diff -u -r 1.1.2.7 -r 1.1.2.8 src/plugins/bogofilter/bogofilter.h;  ) > 2.6.1cvs64.patchset
 ( cvs diff -u -r 1.5.2.46 -r 1.5.2.47 src/gtk/gtkutils.c;  cvs diff -u -r 1.179.2.141 -r 1.179.2.142 src/imap.c;  cvs diff -u -r 1.18.2.20 -r 1.18.2.21 src/jpilot.c;  cvs diff -u -r 1.15.2.39 -r 1.15.2.40 src/summary_search.c;  ) > 2.6.1cvs65.patchset
 ( cvs diff -u -r 1.15.2.40 -r 1.15.2.41 src/summary_search.c;  ) > 2.6.1cvs66.patchset
+( cvs diff -u -r 1.382.2.344 -r 1.382.2.345 src/compose.c;  ) > 2.6.1cvs67.patchset
index 492eac4660a4a8122dc8817e4af7678c5b1be430..bd2376367442f9054fe5cf09f394b26963287cc2 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=6
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=66
+EXTRA_VERSION=67
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index e5a90199ce7c7dd6e16d59484c75633d828f69e2..6a35449a34586e2d5b72733b0e9f329d8782950b 100644 (file)
@@ -4251,7 +4251,8 @@ static gboolean compose_check_entries(Compose *compose, gboolean check_everythin
 
        if (!compose->batch) {
                str = gtk_entry_get_text(GTK_ENTRY(compose->subject_entry));
-               if (*str == '\0' && check_everything == TRUE) {
+               if (*str == '\0' && check_everything == TRUE && 
+                   !compose->redirect_filename) {
                        AlertValue aval;
 
                        aval = alertpanel(_("Send"),