[Django]-Postfix + Django: SMTPException: SMTP AUTH extension not supported by server

7👍

It looks like you don’t really want to use AUTH. In that case, user and password should be None, not the empty string. If you look at the code base, Django checks explicitly for None. Since the default is None already, you can just leave off the username and password parameters.

HTH!

Leave a comment