aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Woodhouse <David.Woodhouse@intel.com>2012-05-21 21:54:31 +0800
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-05-21 21:55:35 +0800
commitbbc7d2814dda56a43eb12680fc74abf691927e47 (patch)
tree1304dd9b36a5c5ee23b73b2210764fd10c190340
parent0c434368afb9d581ba44bf27361792036c49ce10 (diff)
downloadgsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.tar
gsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.tar.gz
gsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.tar.bz2
gsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.tar.lz
gsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.tar.xz
gsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.tar.zst
gsoc2013-evolution-bbc7d2814dda56a43eb12680fc74abf691927e47.zip
Bug 676492 - Mail backend properties with underscores stopped working.
Fix oal_selected and oab_offline properties for EWS, and account_uid for ActiveSync. (cherry picked from commit d04dd269e1be631f201fdf34bf56410313db3e74)
-rw-r--r--mail/e-mail-migrate.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/e-mail-migrate.c b/mail/e-mail-migrate.c
index b54a764ca2..ffc5f1a264 100644
--- a/mail/e-mail-migrate.c
+++ b/mail/e-mail-migrate.c
@@ -842,6 +842,7 @@ em_rename_camel_url_params (CamelURL *url)
const gchar *url_parameter;
const gchar *property_name;
} camel_url_conversion[] = {
+ { "account_uid", "account-uid" },
{ "ad_auth", "gc-auth-method" },
{ "ad_browse", "gc-allow-browse" },
{ "ad_expand_groups", "gc-expand-groups" },
@@ -863,6 +864,8 @@ em_rename_camel_url_params (CamelURL *url)
{ "folder_hierarchy_relative", "folder-hierarchy-relative" },
{ "imap_custom_headers", "fetch-headers-extra" },
{ "keep_on_server", "keep-on-server" },
+ { "oab_offline", "oab-offline" },
+ { "oal_selected", "oal-selected" },
{ "offline_sync", "stay-synchronized" },
{ "override_namespace", "use-namespace" },
{ "owa_path", "owa-path" },