diff options
Diffstat (limited to 'mail/mail-account-gui.c')
-rw-r--r-- | mail/mail-account-gui.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 880d7aaa4f..b708b93e27 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1029,6 +1029,11 @@ extract_values (MailAccountGuiService *source, GHashTable *extra_config, CamelUR break; case CAMEL_PROVIDER_CONF_ENTRY: + if (strcmp (entries[i].name, "username") == 0 + || strcmp (entries[i].name, "hostname") == 0 + || strcmp (entries[i].name, "path") == 0) { + break; + } entry = g_hash_table_lookup (extra_config, entries[i].name); camel_url_set_param (url, entries[i].name, gtk_entry_get_text (entry)); break; |