diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2010-07-16 00:20:16 +0800 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-07-16 00:20:16 +0800 |
commit | 51a41db621693114f5ee60d48e7e6442fc85fcc4 (patch) | |
tree | a9db9c3a0d3258b4b73d603028f1e76a998fd82e /modules | |
parent | 21b0925061702c0c2a6ee30819c739409bba39d2 (diff) | |
download | gsoc2013-evolution-51a41db621693114f5ee60d48e7e6442fc85fcc4.tar.gz gsoc2013-evolution-51a41db621693114f5ee60d48e7e6442fc85fcc4.tar.zst gsoc2013-evolution-51a41db621693114f5ee60d48e7e6442fc85fcc4.zip |
Add nag popup when mailing list hijacks private reply with Reply-To: header
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-shell-settings.c | 4 | ||||
-rw-r--r-- | modules/mail/em-composer-prefs.c | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/mail/e-mail-shell-settings.c b/modules/mail/e-mail-shell-settings.c index c17cc8744f..ca51acf72f 100644 --- a/modules/mail/e-mail-shell-settings.c +++ b/modules/mail/e-mail-shell-settings.c @@ -236,6 +236,10 @@ e_mail_shell_settings_init (EShell *shell) "/apps/evolution/mail/prompts/reply_many_recips"); e_shell_settings_install_property_for_key ( + "composer-prompt-list-reply-to", + "/apps/evolution/mail/prompts/list_reply_to"); + + e_shell_settings_install_property_for_key ( "composer-prompt-empty-subject", "/apps/evolution/mail/prompts/empty_subject"); diff --git a/modules/mail/em-composer-prefs.c b/modules/mail/em-composer-prefs.c index 93620669a3..a975a3a92d 100644 --- a/modules/mail/em-composer-prefs.c +++ b/modules/mail/em-composer-prefs.c @@ -427,6 +427,11 @@ em_composer_prefs_construct (EMComposerPrefs *prefs, shell_settings, "composer-prompt-reply-many-recips", widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkPromptListReplyTo"); + e_mutual_binding_new ( + shell_settings, "composer-prompt-list-reply-to", + widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkAutoSmileys"); e_mutual_binding_new ( shell_settings, "composer-magic-smileys", |