From e81570ad0afc4b7e92214906ec28a820118a15db Mon Sep 17 00:00:00 2001 From: Ben Copeland Date: Thu, 2 Oct 2014 15:05:15 +0100 Subject: [PATCH] adding username/password support along with ssl/starttls --- notification/mail.py | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/notification/mail.py b/notification/mail.py index 34cd3a09bf3..ccf53029741 100644 --- a/notification/mail.py +++ b/notification/mail.py @@ -69,6 +69,17 @@ options: - The body of the email being sent. default: $subject required: false + username: + description: + - If SMTP requires username + default: null + required: false + version_added: "1.6" + password: + - If SMTP requires password + default: null + required: false + version_added: "1.6" host: description: - The mail server @@ -122,6 +133,7 @@ EXAMPLES = ''' import os import sys import smtplib +import ssl try: from email import encoders @@ -142,6 +154,8 @@ def main(): module = AnsibleModule( argument_spec = dict( + username = dict(default=None), + password = dict(default=None), host = dict(default='localhost'), port = dict(default='25'), sender = dict(default='root', aliases=['from']), @@ -156,6 +170,8 @@ def main(): ) ) + username = module.params.get('username') + password = module.params.get('password') host = module.params.get('host') port = module.params.get('port') sender = module.params.get('sender') @@ -167,17 +183,23 @@ def main(): attach_files = module.params.get('attach') headers = module.params.get('headers') charset = module.params.get('charset') - sender_phrase, sender_addr = parseaddr(sender) if not body: body = subject try: + smtp = smtplib.SMTP_SSL(host, port=int(port)) + except (smtplib.SMTPException, ssl.SSLError): smtp = smtplib.SMTP(host, port=int(port)) - except Exception, e: - module.fail_json(rc=1, msg='Failed to send mail to server %s on port %s: %s' % (host, port, e)) - + smtp.ehlo() + if username and password: + if smtp.has_extn('STARTTLS'): + smtp.starttls() + try: + smtp.login(username, password) + except smtplib.SMTPAuthenticationError: + module.fail_json(msg="Authentication to %s:%s failed, please check your username and/or password" % (host, port)) msg = MIMEMultipart() msg['Subject'] = subject