From 5c0c98554794b215badf8407cc8e07961735bc0e Mon Sep 17 00:00:00 2001 From: "R. Soto" Date: Mon, 3 Jul 2017 17:34:58 -0600 Subject: [PATCH] update auth_flag variable after STARTTLS connection is established, fixes #26376 --- lib/ansible/modules/notification/mail.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/notification/mail.py b/lib/ansible/modules/notification/mail.py index 7c7d5f2e5bf..862e61ccefa 100644 --- a/lib/ansible/modules/notification/mail.py +++ b/lib/ansible/modules/notification/mail.py @@ -312,6 +312,7 @@ def main(): try: smtp.starttls() smtp.ehlo() + auth_flag = smtp.has_extn('AUTH') secure_state = True except smtplib.SMTPException: e = get_exception()