tags:

views:

68

answers:

1

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 60, Operation Timed Out". Exception Location: ...python2.6/socket.py in create_connection

Any ideas?

A: 

Are you running a local OSX SMTP server? if not then may I suggest this script which when used during development will dump any locally sent mail message to a file:

http://www.djangosnippets.org/snippets/96/

Frozenskys