You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're always forcing SMTP authentication in smtp_output.py with smtp_conn.login. We should only run that when we have both smtp_user and smtp_pass defined.
A simple fix would be: if (self.smtp_user and self.smtp_pass): smtp_conn.login(self.smtp_user, self.smtp_pass)
The text was updated successfully, but these errors were encountered:
We're always forcing SMTP authentication in
smtp_output.py
withsmtp_conn.login
. We should only run that when we have bothsmtp_user
andsmtp_pass
defined.A simple fix would be:
if (self.smtp_user and self.smtp_pass): smtp_conn.login(self.smtp_user, self.smtp_pass)
The text was updated successfully, but these errors were encountered: