Re: email in settings.py

2008-01-11 Thread Bill
It looks like those variables are documented in the SVN docs, but not 0.96: http://www.djangoproject.com/documentation/email/ If your server doesn't use authentication for SMTP, try not setting _USER and _PASSWORD. As for why those vars weren't in your settings.py, I believe the settings.py sho

Re: email in settings.py

2008-01-11 Thread Thomas
Hello Michael, you might need to know if your mail server requires a secure connection. This is what works for gmail: EMAIL_USE_TLS = True EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = '[EMAIL PROTECTED]' EMAIL_HOST_PASSWORD = '' EMAIL_PORT = 587 Good luck. Thomas On Jan 11, 2:4

email in settings.py

2008-01-11 Thread Michael Allen
Hiya, I'm a noob running official release .96, please be gentle. I'm trying to enable email functionality. Per this doc http://www.djangoproject.com/documentation/0.96/settings/#DEFAULT_CHARSET I should see a set of email settings in my settings.py file. I don't see any of the following: EMAIL_HO