views:

157

answers:

3

Running into a very stange error. I'm running Django on my Mac OSX and when I tried to send an email from my application it hangs and gives me this error: "Error 61 Connection Refused"

Any ideas? I don't have my firewall turned on. I can upload an image of the error if needed.

A: 

Being totally Max OS X ignorant, my first guess would be that your SMTP server requires authentication.

Peter Rowell
A: 

Have you actually configured the EMAIL_* settings in settings.py? Error 61 is the error you get if you leave it on the default values and you don't have a local SMTP server running.

Alternatively, as Peter suggests, if you have set it up then you might need to use authentication with your SMTP server.

Daniel Roseman
Thanks. Let me check into this.
update posted above!
A: 

I'm having the same problem but I don't see where those settings are located. They aren't in my settings.py

joel