diff options
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 84217219fa..c85b519876 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -267,6 +267,11 @@ static send_info_t get_receive_type(const char *url) CamelProvider *provider; CamelException ex; + /* HACK: since mbox is ALSO used for native evolution trees now, we need to + fudge this to treat it as a special 'movemail' source */ + if (!strncmp(url, "mbox:", 5)) + return SEND_RECEIVE; + camel_exception_init(&ex); provider = camel_session_get_provider (session, url, &ex); camel_exception_clear(&ex); |