diff options
Diffstat (limited to 'mail/em-account-editor.c')
-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); |