diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2010-07-14 07:41:57 +0800 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-07-15 23:48:45 +0800 |
commit | 8b8fdabfa64d627ba3e13a77cbb104d463d29fb5 (patch) | |
tree | 10d4273116d1a73d507c896230f19e6c51ac6b84 /modules | |
parent | 0f7b73d6396ccc08c479c86759c0a3016a1aaf3e (diff) | |
download | gsoc2013-evolution-8b8fdabfa64d627ba3e13a77cbb104d463d29fb5.tar.gz gsoc2013-evolution-8b8fdabfa64d627ba3e13a77cbb104d463d29fb5.tar.zst gsoc2013-evolution-8b8fdabfa64d627ba3e13a77cbb104d463d29fb5.zip |
Warn on reply-to-all with too many recipients
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 d46972ffd8..5c30ddf634 100644 --- a/modules/mail/e-mail-shell-settings.c +++ b/modules/mail/e-mail-shell-settings.c @@ -224,6 +224,10 @@ e_mail_shell_settings_init (EShell *shell) "/apps/evolution/mail/prompts/private_list_reply"); e_shell_settings_install_property_for_key ( + "composer-prompt-reply-many-recips", + "/apps/evolution/mail/prompts/reply_many_recips"); + + 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 f2def6b123..37da770b14 100644 --- a/modules/mail/em-composer-prefs.c +++ b/modules/mail/em-composer-prefs.c @@ -422,6 +422,11 @@ em_composer_prefs_construct (EMComposerPrefs *prefs, shell_settings, "composer-prompt-private-list-reply", widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkPromptReplyManyRecips"); + e_mutual_binding_new ( + shell_settings, "composer-prompt-reply-many-recips", + widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkAutoSmileys"); e_mutual_binding_new ( shell_settings, "composer-magic-smileys", |