When I click password and username recovery in my app, the app flashes "Mail Sent" but it isn't. Reviewing the mail server logs I find...
Feb 27 03:45:10 admin01 sendmail[13140]: STARTTLS=server, relay=localhost [127.0.0.1], version=TLSv1/SSLv3, verify=NO, cipher=DHE-RSA-AES256-SHA, bits=256/256 Feb 27 03:45:11 admin01 sendmail[13140]: p1R3jAkU013140: localhost [127.0.0.1] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA My latest settings in db.py are: mail.settings.server = 'localhost:25' # your SMTP server mail.settings.sender = '[email protected]' # your email mail.settings.login = None # your credentials or None I've also tried port 587 with a valid username and password. My mailer is configured to use all the usual authentication methods and ciphers, and answers as: 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH GSSAPI DIGEST-MD5 CRAM-MD5 250-STARTTLS 250-DELIVERBY 250 HELP I believe that once TLS starts, it will also allow PLAIN. Not sure what is going on here. Any help appreciated. </edg>

