aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-05-11 03:46:47 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-11 03:46:47 +0800
commit2da1da08e288d93916d6c4b3c78a72885153c0ce (patch)
treecfd25d8161788bdc27f16425d5b5b4dfe3a0cc59 /mail
parent9cb267c67eed4c03f6e20787cca4626b66aca184 (diff)
downloadgsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.tar
gsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.tar.gz
gsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.tar.bz2
gsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.tar.lz
gsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.tar.xz
gsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.tar.zst
gsoc2013-evolution-2da1da08e288d93916d6c4b3c78a72885153c0ce.zip
Default the Mailer header to enabled. Fixes bug #58217.
2004-05-10 Jeffrey Stedfast <fejj@novell.com> * em-mailer-prefs.c (em_mailer_prefs_construct): Default the Mailer header to enabled. Fixes bug #58217. svn path=/trunk/; revision=25849
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/em-mailer-prefs.c5
2 files changed, 6 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index c341513175..cab798afb0 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2004-05-10 Jeffrey Stedfast <fejj@novell.com>
+
+ * em-mailer-prefs.c (em_mailer_prefs_construct): Default the
+ Mailer header to enabled. Fixes bug #58217.
+
2004-05-10 JP Rosevear <jpr@ximian.com>
* mail-ops.c (mail_send_message): set header to just Evolution
diff --git a/mail/em-mailer-prefs.c b/mail/em-mailer-prefs.c
index 24369942e9..6371188f7a 100644
--- a/mail/em-mailer-prefs.c
+++ b/mail/em-mailer-prefs.c
@@ -892,10 +892,7 @@ em_mailer_prefs_construct (EMMailerPrefs *prefs)
h = g_malloc (sizeof (struct _EMMailerPrefsHeader));
h->is_default = TRUE;
h->name = g_strdup (default_headers[i].name);
- if (g_ascii_strcasecmp (default_headers[i].name, EM_FORMAT_HEADER_XMAILER) == 0)
- h->enabled = FALSE;
- else
- h->enabled = TRUE;
+ h->enabled = TRUE;
g_hash_table_insert (default_header_hash, (gpointer) default_headers[i].name, h);
header_add_list = g_slist_append (header_add_list, h);
}