aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-config.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-12-20 08:35:40 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-12-20 08:35:40 +0800
commit34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716 (patch)
tree8e49d2870b7de39db1aa6033f1796a054e1e2494 /mail/mail-config.h
parent28d014efff13377bb743a69ba164f6476de71a8c (diff)
downloadgsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.tar
gsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.tar.gz
gsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.tar.bz2
gsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.tar.lz
gsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.tar.xz
gsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.tar.zst
gsoc2013-evolution-34ea30a0d8b5efe1c03a1c93d4929ba51aa5c716.zip
Add the auto-cc/bcc recipients here. The problem with setting them in the
2001-12-19 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (composer_get_message): Add the auto-cc/bcc recipients here. The problem with setting them in the composer is that what if the user changes which account he wants to use? We'd either have to clear the cc/bcc lists *or* we'd have to leave them alone. Either way is bad. We can't just clear the entries because the user may have added addresses since the composer was opened. We don't want to leave any old auto-cc/bcc addresses there because that isn't desirable either. So we give up and add them here after the user has already hit the send button. * mail-config.c (account_copy): Update to copy the always-[b]cc options. (account_destroy): Update to destroy the above options. (config_read): Update to read in those values. (mail_config_write): Save those options. * mail-account-gui.c (mail_account_gui_new): Setup Always Cc/Bcc widgets. (mail_account_gui_save): Get the user-entered values for the always-cc/bcc stuff. svn path=/trunk/; revision=15189
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r--mail/mail-config.h39
1 files changed, 22 insertions, 17 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h
index c54fef4eba..2575f8b817 100644
--- a/mail/mail-config.h
+++ b/mail/mail-config.h
@@ -32,38 +32,43 @@ extern "C" {
#endif /* __cplusplus */
typedef struct {
- gchar *name;
- gchar *address;
- gchar *organization;
- gchar *signature;
- gchar *html_signature;
+ char *name;
+ char *address;
+ char *organization;
+ char *signature;
+ char *html_signature;
gboolean has_html_signature;
} MailConfigIdentity;
typedef struct {
- gchar *url;
+ char *url;
gboolean keep_on_server;
gboolean auto_check;
- gint auto_check_time;
+ int auto_check_time;
gboolean save_passwd;
gboolean enabled;
} MailConfigService;
typedef struct {
- gchar *name;
+ char *name;
MailConfigIdentity *id;
MailConfigService *source;
MailConfigService *transport;
- gchar *drafts_folder_name, *drafts_folder_uri;
- gchar *sent_folder_name, *sent_folder_uri;
+ char *drafts_folder_name, *drafts_folder_uri;
+ char *sent_folder_name, *sent_folder_uri;
- gchar *pgp_key;
+ gboolean always_cc;
+ char *cc_addrs;
+ gboolean always_bcc;
+ char *bcc_addrs;
+
+ char *pgp_key;
gboolean pgp_encrypt_to_self;
gboolean pgp_always_sign;
- gchar *smime_key;
+ char *smime_key;
gboolean smime_encrypt_to_self;
gboolean smime_always_sign;
} MailConfigAccount;
@@ -134,8 +139,8 @@ void mail_config_set_show_preview (const char *uri, gboolean value);
gboolean mail_config_get_hide_deleted (void);
void mail_config_set_hide_deleted (gboolean value);
-gint mail_config_get_paned_size (void);
-void mail_config_set_paned_size (gint size);
+int mail_config_get_paned_size (void);
+void mail_config_set_paned_size (int size);
gboolean mail_config_get_send_html (void);
void mail_config_set_send_html (gboolean send_html);
@@ -152,8 +157,8 @@ void mail_config_set_citation_color (guint32);
gint mail_config_get_do_seen_timeout (void);
void mail_config_set_do_seen_timeout (gboolean do_seen_timeout);
-gint mail_config_get_mark_as_seen_timeout (void);
-void mail_config_set_mark_as_seen_timeout (gint timeout);
+int mail_config_get_mark_as_seen_timeout (void);
+void mail_config_set_mark_as_seen_timeout (int timeout);
gboolean mail_config_get_prompt_empty_subject (void);
void mail_config_set_prompt_empty_subject (gboolean value);
@@ -193,7 +198,7 @@ void mail_config_service_set_save_passwd (MailConfigService *service, gboolean s
gboolean mail_config_find_account (const MailConfigAccount *account);
const MailConfigAccount *mail_config_get_default_account (void);
-gint mail_config_get_default_account_num (void);
+int mail_config_get_default_account_num (void);
const MailConfigAccount *mail_config_get_account_by_name (const char *account_name);
const MailConfigAccount *mail_config_get_account_by_source_url (const char *url);
const MailConfigAccount *mail_config_get_account_by_transport_url (const char *url);