diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-01-25 11:18:20 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-01-25 11:21:59 +0800 |
commit | d75f6c636406385abb50025b4c371dec262b1c4b (patch) | |
tree | 62a62a06cb6a6b78373dd2e13a2c198d5ef9e3a0 /mail/em-account-editor.c | |
parent | fa244511cec16843162db9896ecbb4350d827957 (diff) | |
download | gsoc2013-evolution-d75f6c636406385abb50025b4c371dec262b1c4b.tar.gz gsoc2013-evolution-d75f6c636406385abb50025b4c371dec262b1c4b.tar.zst gsoc2013-evolution-d75f6c636406385abb50025b4c371dec262b1c4b.zip |
Bug 668479: Missing transport-only accounts in Preferences
Evolution kinda sorta supports multiple identities by allowing users
to set up so-called "transport-only" accounts by choosing "None" for
the account type.
Add a CamelStore subclass for those types of accounts so they get
added to EMailAccountStore. It's just a stupid hack to keep another
stupid hack working, but this should sustain us until we can support
multiple identities FOR REAL.
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 0e5c948ba8..21f5da0095 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -301,7 +301,13 @@ static gint emae_provider_compare (const CamelProvider *p1, const CamelProvider *p2) { - /* sort providers based on "location" (ie. local or remote) */ + /* The "none" provider comes first. */ + if (g_strcmp0 (p1->protocol, "none") == 0) + return -1; + if (g_strcmp0 (p2->protocol, "none") == 0) + return 1; + + /* Then sort remote providers before local providers. */ if (p1->flags & CAMEL_PROVIDER_IS_REMOTE) { if (p2->flags & CAMEL_PROVIDER_IS_REMOTE) return 0; @@ -1381,7 +1387,13 @@ emae_account_url (EMAccountEditor *emae, account = em_account_editor_get_modified_account (emae); uri = e_account_get_string (account, urlid); - if (uri && uri[0]) + /* XXX Stupid hack for these stupid transport-only accounts. + * We've been saving these as invalid URI strings all this + * time; no protocol, just "//...". Catch it and fix it. */ + if (uri != NULL && g_str_has_prefix (uri, "//")) + return camel_url_new ("none:", NULL); + + if (uri != NULL && *uri != '\0') url = camel_url_new (uri, NULL); if (url == NULL) { @@ -2304,7 +2316,6 @@ emae_service_provider_changed (EMAccountEditorService *service) CamelProvider *provider = NULL; const gchar *description; - /* Protocol is NULL when server type is 'None'. */ if (service->protocol != NULL) provider = camel_provider_get (service->protocol, NULL); @@ -2389,7 +2400,6 @@ emae_service_provider_changed (EMAccountEditorService *service) gtk_widget_hide (service->ssl_hbox); gtk_widget_show (service->no_ssl); #endif - } else { gtk_widget_hide (service->frame); gtk_widget_hide (service->auth_frame); @@ -2459,12 +2469,6 @@ emae_refresh_providers (EMAccountEditor *emae, gtk_combo_box_text_remove_all (combo_box); - /* We just special case each type here, its just easier */ - if (service->type == CAMEL_PROVIDER_STORE) - gtk_combo_box_text_append ( - combo_box, NULL, - C_("mail-receiving", "None")); - for (link = emae->priv->providers; link != NULL; link = link->next) { CamelProvider *provider = link->data; @@ -2665,7 +2669,6 @@ emae_setup_service (EMAccountEditor *emae, service->protocol = g_intern_string (url->protocol); camel_url_free (url); - /* Protocol is NULL when server type is 'None'. */ if (service->protocol != NULL) provider = camel_provider_get (service->protocol, NULL); @@ -4392,7 +4395,6 @@ emae_check_service_complete (EMAccountEditor *emae, gboolean need_port; gboolean need_user; - /* Protocol is NULL when server type is 'None'. */ if (service->protocol != NULL) provider = camel_provider_get (service->protocol, NULL); |