diff options
author | Milan Crha <mcrha@redhat.com> | 2011-03-03 21:11:41 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-03-03 21:13:33 +0800 |
commit | f1e416438026e495a29ca36715e27964f7dc4b04 (patch) | |
tree | 6c85cc847fc857634870bc5dd644a3be342f2c3a /mail/mail-tools.c | |
parent | 0be641ea82d61a5967d4f34dde9bc3bbbb9aa7cf (diff) | |
download | gsoc2013-evolution-f1e416438026e495a29ca36715e27964f7dc4b04.tar.gz gsoc2013-evolution-f1e416438026e495a29ca36715e27964f7dc4b04.tar.zst gsoc2013-evolution-f1e416438026e495a29ca36715e27964f7dc4b04.zip |
Bug #643218 - Local delivery doesn't deliver after maildir migration
Diffstat (limited to 'mail/mail-tools.c')
-rw-r--r-- | mail/mail-tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-tools.c b/mail/mail-tools.c index 4bb006d705..1e1680be86 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -94,7 +94,7 @@ mail_tool_do_movemail (const gchar *source_url, GError **error) if (uri == NULL) return NULL; - if (strcmp(uri->protocol, "maildir") != 0) { + if (strcmp (uri->protocol, "mbox") != 0) { /* This is really only an internal error anyway */ g_set_error ( error, CAMEL_SERVICE_ERROR, |