diff options
author | Not Zed <NotZed@Ximian.com> | 2004-03-18 12:58:29 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-03-18 12:58:29 +0800 |
commit | 4b308cddb0efde0acf808f3a52a4e7653e9e0070 (patch) | |
tree | 07b26e695cf25781e620946712c210e5348e5c6c /mail/mail-config.h | |
parent | bc6046b8f1bb7c50cae563c08cb9d55c956ff38b (diff) | |
download | gsoc2013-evolution-4b308cddb0efde0acf808f3a52a4e7653e9e0070.tar.gz gsoc2013-evolution-4b308cddb0efde0acf808f3a52a4e7653e9e0070.tar.zst gsoc2013-evolution-4b308cddb0efde0acf808f3a52a4e7653e9e0070.zip |
started writing this, but i couldn't be fucked right now - apparently
2004-03-18 Not Zed <NotZed@Ximian.com>
* mail-config.c (mail_config_writable): started writing this, but
i couldn't be fucked right now - apparently gnome is supposed to
use the gconf thing which just doens't work. i'll waste a few
hours trying to get it to work again first before i keep going
with this.
2004-03-17 Not Zed <NotZed@Ximian.com>
* em-format-html.c (efh_message_deliverystatus): format as plain
text too.
* em-format.c (emf_message_deliverystatus): format delivery
status messages as plain text, rather than as messages. since
they wont be CamelMimeMessages. Maybe they should be silently
hidden.
* mail-offline-handler.c (store_go_online): split this, only call
add_store/note_store once we've actually set the store online.
(store_went_online): set the store up once we're fully online.
Works around a deadlock in #55618.
* em-account-prefs.c (account_cursor_change): disable
editing/adding/removing accounts etc if accounts aren't editable.
(em_account_prefs_construct): call above after setup.
* mail-component.c (mc_quit_sync): if we have empty on exit days,
check that. keep track of the last empty on exit time.
* em-mailer-prefs.c (emmp_empty_trash_init): init the trash stuff
here.
(em_mailer_prefs_apply): save empty trash on exit frequency.
svn path=/trunk/; revision=25110
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r-- | mail/mail-config.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h index 36891eccb4..265cac8f8d 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -179,6 +179,28 @@ void mail_config_signature_emit_event (MailConfigSigEvent event, MailConfigSigna void mail_config_write_account_sig (EAccount *account, int i); char *mail_config_signature_run_script (char *script); +typedef enum _mail_config_item_t { + MAIL_CONFIG_ACCOUNTS, /* should this be on e-account-list? */ + MAIL_CONFIG_COMPOSER_CHARSET, + MAIL_CONFIG_COMPOSER_SEND_HTML, + MAIL_CONFIG_COMPOSER_MAGIC_SMILEYS, + MAIL_CONFIG_COMPOSER_SPELL_CHECK, + MAIL_CONFIG_FORMAT_FORWARD_STYLE, + MAIL_CONFIG_FORMAT_REPLY_STYLE, + MAIL_CONFIG_TRASH_EMPTY_ON_EXIT, + MAIL_CONFIG_TRASH_EMPTY_ON_EXIT_DAYS, + MAIL_CONFIG_DISPLAY_CHARSET, + MAIL_CONFIG_DISPLAY_HEADERS, + MAIL_CONFIG_DISPLAY_LABELS, + MAIL_CONFIG_DISPLAY_FONT_MONO, + MAIL_CONFIG_DISPLAY_FONT_PROP, + MAIL_CONFIG_DISPLAY_LOAD_HTTP, + + MAIL_CONFIG_ITEM_LAST +}; + +gboolean mail_config_writable(mail_config_item_t item); + #ifdef __cplusplus } #endif /* __cplusplus */ |