summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/account.py')
-rw-r--r--alot/account.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/alot/account.py b/alot/account.py
index f8438564..c8f3c09a 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -348,7 +348,11 @@ class SendmailAccount(Account):
try:
# make sure self.mail is a string
- out, *_ = await call_cmd_async(cmdlist, stdin=str(mail))
+ out, err, code = await call_cmd_async(cmdlist, stdin=str(mail))
+ if code != 0:
+ msg = 'The sendmail command {} returned with code {}{}'.format(
+ self.cmd, code, ':\n' + err.strip() if err else '.')
+ raise Exception(msg)
except Exception as e:
logging.error(str(e))
raise SendingMailFailed(str(e))