From 8b8fdabfa64d627ba3e13a77cbb104d463d29fb5 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Wed, 14 Jul 2010 00:41:57 +0100 Subject: Warn on reply-to-all with too many recipients --- modules/mail/e-mail-shell-settings.c | 4 ++++ modules/mail/em-composer-prefs.c | 5 +++++ 2 files changed, 9 insertions(+) (limited to 'modules') 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 @@ -223,6 +223,10 @@ e_mail_shell_settings_init (EShell *shell) "composer-prompt-private-list-reply", "/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", -- cgit