SMTP_SKIP_TLS fix
This commit is contained in:
@@ -2394,24 +2394,18 @@ def send_email (pText, pHTML):
|
|||||||
smtp_connection.ehlo()
|
smtp_connection.ehlo()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if not SafeParseGlobalBool("SMTP_SKIP_TLS"):
|
if not SMTP_SKIP_TLS:
|
||||||
smtp_connection.starttls()
|
smtp_connection.starttls()
|
||||||
smtp_connection.ehlo()
|
smtp_connection.ehlo()
|
||||||
if not SafeParseGlobalBool("SMTP_SKIP_LOGIN"):
|
if not SMTP_SKIP_LOGIN:
|
||||||
smtp_connection.login (SMTP_USER, SMTP_PASS)
|
smtp_connection.login (SMTP_USER, SMTP_PASS)
|
||||||
|
|
||||||
smtp_connection.sendmail (REPORT_FROM, REPORT_TO, msg.as_string())
|
smtp_connection.sendmail (REPORT_FROM, REPORT_TO, msg.as_string())
|
||||||
smtp_connection.quit()
|
smtp_connection.quit()
|
||||||
except smtplib.SMTPAuthenticationError as e:
|
except smtplib.SMTPAuthenticationError as e:
|
||||||
file_print(' ERROR: Couldn\'t connect to the SMTP, skipping Email')
|
file_print(' ERROR: Couldn\'t connect to the SMTP server, skipping Email')
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
def SafeParseGlobalBool(boolVariable):
|
|
||||||
if boolVariable in globals():
|
|
||||||
return eval(boolVariable)
|
|
||||||
return False
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
def send_webhook (_json, _html):
|
def send_webhook (_json, _html):
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user