From 3d6a2b1c38b67cf2d5f86cb81122c6edce8594b9 Mon Sep 17 00:00:00 2001 From: Sankar P Date: Sat, 7 May 2005 06:27:22 +0000 Subject: mail-ops.c (mail_send_message) Added code to prevent copying of sent 2005-05-07 Sankar P * mail-ops.c (mail_send_message) Added code to prevent copying of sent items, based on provider type * em-account-editor.c (emae_defaults_page) Added code to disable the Sent Folders button svn path=/trunk/; revision=29310 --- mail/em-account-editor.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mail/em-account-editor.c') diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 56c7b50aad..390f092148 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -2135,9 +2135,10 @@ emae_defaults_page(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, st emae_account_entry(emae, "bcc_addrs", E_ACCOUNT_BCC_ADDRS, xml); gtk_widget_set_sensitive((GtkWidget *)gui->drafts_folder_button, e_account_writable(emae->account, E_ACCOUNT_DRAFTS_FOLDER_URI)); - gtk_widget_set_sensitive((GtkWidget *)gui->sent_folder_button, e_account_writable(emae->account, E_ACCOUNT_SENT_FOLDER_URI)); + gtk_widget_set_sensitive((GtkWidget *)gui->sent_folder_button, e_account_writable(emae->account, E_ACCOUNT_SENT_FOLDER_URI)&& !(emae->priv->source.provider->flags & CAMEL_PROVIDER_DISABLE_SENT_FOLDER)); gtk_widget_set_sensitive((GtkWidget *)gui->restore_folders_button, - e_account_writable(emae->account, E_ACCOUNT_SENT_FOLDER_URI) + (e_account_writable(emae->account, E_ACCOUNT_SENT_FOLDER_URI) && + ! ( emae->priv->source.provider->flags & CAMEL_PROVIDER_DISABLE_SENT_FOLDER)) || e_account_writable(emae->account, E_ACCOUNT_DRAFTS_FOLDER_URI)); /* Receipt policy */ -- cgit v1.2.3