aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucian Langa <lucilanga@gnome.org>2011-05-25 04:47:35 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:20 +0800
commit2c5c883e00be8cf16154aa1f4db202d82ff31617 (patch)
tree87b3f414bc6479a16ff3203f0d47cd55d6d1836f
parentd9ccdb74843ff808980df3bf36cc7326f575cb80 (diff)
downloadgsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.tar
gsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.tar.gz
gsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.tar.bz2
gsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.tar.lz
gsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.tar.xz
gsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.tar.zst
gsoc2013-evolution-2c5c883e00be8cf16154aa1f4db202d82ff31617.zip
Bug 651001 - Cannot send message from accounts not having a provider
-rw-r--r--mail/e-mail-store.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/mail/e-mail-store.c b/mail/e-mail-store.c
index 17ff7652ba..7a9c74cc8a 100644
--- a/mail/e-mail-store.c
+++ b/mail/e-mail-store.c
@@ -303,14 +303,20 @@ e_mail_store_add_by_account (EMailSession *session,
* and if this belongs in the folder tree model, add it. */
provider = camel_provider_get (account->source->url, &error);
- if (provider == NULL)
- goto fail;
+ if (provider == NULL) {
+ /* In case we do not have a provider here, we handle
+ * the special case of having multiple mail identities
+ * eg. a dummy account having just SMTP server defined */
+ goto handle_transport;
+ }
service = camel_session_add_service (
CAMEL_SESSION (session),
account->uid, account->source->url,
CAMEL_PROVIDER_STORE, &error);
+handle_transport:
+
if (account->transport) {
/* While we're at it, add the account's transport to the
* CamelSession. The transport's UID is a kludge for now.