aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-editor.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-02-23 05:40:26 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-02-23 05:40:26 +0800
commite939da9df48b7e4992de4df915e7832803f8fa12 (patch)
tree2baa5274b6b5601a6560bde5d15f0d7faf6d956b /mail/mail-account-editor.h
parent09515df40565b84e1fdcafce80015b51c0984567 (diff)
downloadgsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.tar
gsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.tar.gz
gsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.tar.bz2
gsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.tar.lz
gsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.tar.xz
gsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.tar.zst
gsoc2013-evolution-e939da9df48b7e4992de4df915e7832803f8fa12.zip
Fixed memory corruption bug.
2001-02-22 Jeffrey Stedfast <fejj@ximian.com> * openpgp-utils.c (openpgp_verify): Fixed memory corruption bug. * mail-format.c (try_inline_pgp_sig): Check to make sure the validity isn't NULL. (handle_multipart_signed): Check for NULL validities. 2001-02-21 Jeffrey Stedfast <fejj@ximian.com> * mail-tools.c (mail_tool_uri_to_folder): Protect against NULL uri's. * mail-vtrash.c: Do mutex locking on the global hash table - this should clear up some segfaults ;-) * mail-config-druid.c (druid_finish): Set the 'enabled' member of the source to TRUE if the URL exists else set to FALSE. (incoming_type_changed): If the provider chosen is "None" then gray-out the auto-check widgets and the check-settings, otherwise sensitize them. * mail-account-editor.c (construct): Added a few more settings. (apply_changes): Save the new settings. * mail-config.c (service_copy): Updated. (config_read): Read in whether or not the account is enabled. (mail_config_write): Save if the account is enabled or not. svn path=/trunk/; revision=8349
Diffstat (limited to 'mail/mail-account-editor.h')
-rw-r--r--mail/mail-account-editor.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/mail/mail-account-editor.h b/mail/mail-account-editor.h
index d9c318ea8d..a750bdedb6 100644
--- a/mail/mail-account-editor.h
+++ b/mail/mail-account-editor.h
@@ -46,6 +46,7 @@ struct _MailAccountEditor {
GladeXML *gui;
+ /* Identity / General */
GtkEntry *account_name;
GtkEntry *name;
GtkEntry *email;
@@ -53,6 +54,7 @@ struct _MailAccountEditor {
GtkEntry *organization;
GnomeFileEntry *signature;
+ /* Source */
GtkWidget *source_type; /* this is generic because we don't know the widget-type */
GtkEntry *source_host;
GtkEntry *source_user;
@@ -62,13 +64,19 @@ struct _MailAccountEditor {
GtkOptionMenu *source_auth;
GtkCheckButton *source_ssl;
+ GtkCheckButton *keep_on_server;
+
+ GtkCheckButton *source_auto_check;
+ GtkSpinButton *source_auto_timeout;
+
+ GtkCheckButton *source_enabled;
+
+ /* Transport */
GtkWidget *transport_type; /* Same here... */
GtkEntry *transport_host;
GtkOptionMenu *transport_auth;
GtkCheckButton *transport_ssl;
- GtkCheckButton *keep_on_server;
-
const CamelProvider *transport;
};