diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-21 21:31:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-03-21 21:36:05 +0800 |
commit | b0f0049aa20100e1d44234802a9f47b3f357725e (patch) | |
tree | c86bbbd55085644c55492e34f5b13c7216b652b5 | |
parent | e7b39f3487b1280eea75b7dfccea3537259c9a50 (diff) | |
download | gsoc2013-evolution-b0f0049aa20100e1d44234802a9f47b3f357725e.tar.gz gsoc2013-evolution-b0f0049aa20100e1d44234802a9f47b3f357725e.tar.zst gsoc2013-evolution-b0f0049aa20100e1d44234802a9f47b3f357725e.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.
-rw-r--r-- | mail/em-account-editor.c | 3 |
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); |