diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2010-11-23 04:28:24 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:04 +0800 |
commit | 89557dcfee7bb9f7ca7dddfe559e89dc7b2a93df (patch) | |
tree | 4a8c829382d963104a260c32a19634204efa8176 /mail/em-utils.c | |
parent | 64d24b234e59628c8d2a3adf34b416f8bd2da78d (diff) | |
download | gsoc2013-evolution-89557dcfee7bb9f7ca7dddfe559e89dc7b2a93df.tar.gz gsoc2013-evolution-89557dcfee7bb9f7ca7dddfe559e89dc7b2a93df.tar.zst gsoc2013-evolution-89557dcfee7bb9f7ca7dddfe559e89dc7b2a93df.zip |
Migrate the local store from mbox to maildir format
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 779e1a79e0..0753a75947 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -1513,7 +1513,7 @@ gchar *em_uri_to_camel (const gchar *euri) if (strcmp(eurl->user, "vfolder") == 0) curl = camel_url_new("vfolder:", NULL); else - curl = camel_url_new("mbox:", NULL); + curl = camel_url_new("maildir:", NULL); base = g_strdup_printf("%s/mail/%s", e_get_user_data_dir(), eurl->user); #ifdef G_OS_WIN32 |