The project should be able to send email from Python. I can successfully send, for example, "smtp.gmail.com", but using localhost or 127.0.0.1 returns "errno 111, the connection was rejected." Statement
server = smtplib.SMTP('127.0.0.1', 8025)
Notes: I am running Ubuntu, Python 3.2, or Python 2.7 depending on what wonderful people here know best, and my programming knowledge may be kindly described as limited.
Celer source
share