aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-account-editor.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-03-21 21:31:59 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:46 +0800
commit256718f9285902441798b2490360ecc44762b0cb (patch)
tree02409af5d4be1ac45673f978369145b0037b9699 /mail/em-account-editor.c
parent8909379ecc7e7b81c87fb68c6bfe370fb4623416 (diff)
downloadgsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.tar
gsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.tar.gz
gsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.tar.bz2
gsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.tar.lz
gsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.tar.xz
gsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.tar.zst
gsoc2013-evolution-256718f9285902441798b2490360ecc44762b0cb.zip
Select IMAP+ by default in new account setup.
It's high time we promote IMAP+ over the older IMAP provider. Migration of existing IMAP accounts to IMAP+ will come in a future release. This is a first step.
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r--mail/em-account-editor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c
index 984d13f696..55ffb3ac57 100644
--- a/mail/em-account-editor.c
+++ b/mail/em-account-editor.c
@@ -1686,7 +1686,8 @@ emae_refresh_providers (EMAccountEditor *emae, EMAccountEditorService *service)
current[len] = 0;
}
} else {
- current = (gchar *) "imap";
+ /* Promote the newer IMAP provider over the older one. */
+ current = (gchar *) "imapx";
}
store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_POINTER);