aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-06-13 20:59:07 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-06-13 20:59:44 +0800
commit7530345eb762ad9a9e0969365a1bc8bc2eb1de8b (patch)
treeb7eba1aa04d92e83da5c24d0835be8776a64fd0b /mail
parent7420d677c84044693d57e210c55fb59ad4990cf2 (diff)
downloadgsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.tar
gsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.tar.gz
gsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.tar.bz2
gsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.tar.lz
gsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.tar.xz
gsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.tar.zst
gsoc2013-evolution-7530345eb762ad9a9e0969365a1bc8bc2eb1de8b.zip
Bug 677882 - Cannot create account with Sendmail
Diffstat (limited to 'mail')
-rw-r--r--mail/e-mail-config-service-page.c47
1 files changed, 21 insertions, 26 deletions
diff --git a/mail/e-mail-config-service-page.c b/mail/e-mail-config-service-page.c
index 41618affe1..5994ebc2bf 100644
--- a/mail/e-mail-config-service-page.c
+++ b/mail/e-mail-config-service-page.c
@@ -307,19 +307,6 @@ mail_config_service_page_backend_name_to_description (GBinding *binding,
return TRUE;
}
-static Candidate *
-mail_config_service_page_get_active_candidate (EMailConfigServicePage *page)
-{
- GtkComboBox *combo_box;
- gint active;
-
- combo_box = GTK_COMBO_BOX (page->priv->type_combo);
- active = gtk_combo_box_get_active (combo_box);
- g_return_val_if_fail (active >= 0, NULL);
-
- return g_ptr_array_index (page->priv->candidates, active);
-}
-
static void
mail_config_service_page_set_registry (EMailConfigServicePage *page,
ESourceRegistry *registry)
@@ -510,35 +497,43 @@ static gboolean
mail_config_service_page_check_complete (EMailConfigPage *page)
{
EMailConfigServicePagePrivate *priv;
- Candidate *candidate;
+ EMailConfigServiceBackend *backend;
GtkComboBox *type_combo;
+ const gchar *backend_name;
priv = E_MAIL_CONFIG_SERVICE_PAGE_GET_PRIVATE (page);
- /* Make sure the combo box has an active item. */
type_combo = GTK_COMBO_BOX (priv->type_combo);
- if (gtk_combo_box_get_active_id (type_combo) == NULL)
+ backend_name = gtk_combo_box_get_active_id (type_combo);
+
+ if (backend_name == NULL)
return FALSE;
- candidate = mail_config_service_page_get_active_candidate (
- E_MAIL_CONFIG_SERVICE_PAGE (page));
- g_return_val_if_fail (candidate != NULL, FALSE);
+ backend = e_mail_config_service_page_lookup_backend (
+ E_MAIL_CONFIG_SERVICE_PAGE (page), backend_name);
- return e_mail_config_service_backend_check_complete (
- candidate->backend);
+ return e_mail_config_service_backend_check_complete (backend);
}
static void
mail_config_service_page_commit_changes (EMailConfigPage *page,
GQueue *source_queue)
{
- Candidate *candidate;
+ EMailConfigServicePagePrivate *priv;
+ EMailConfigServiceBackend *backend;
+ GtkComboBox *type_combo;
+ const gchar *backend_name;
+
+ priv = E_MAIL_CONFIG_SERVICE_PAGE_GET_PRIVATE (page);
+
+ type_combo = GTK_COMBO_BOX (priv->type_combo);
+ backend_name = gtk_combo_box_get_active_id (type_combo);
+ g_return_if_fail (backend_name != NULL);
- candidate = mail_config_service_page_get_active_candidate (
- E_MAIL_CONFIG_SERVICE_PAGE (page));
- g_return_if_fail (candidate != NULL);
+ backend = e_mail_config_service_page_lookup_backend (
+ E_MAIL_CONFIG_SERVICE_PAGE (page), backend_name);
- e_mail_config_service_backend_commit_changes (candidate->backend);
+ e_mail_config_service_backend_commit_changes (backend);
}
static void