here are my email configurations in settings.py

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.domain.org'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_HOST_USER = '[email protected]'
EMAIL_PORT = '587'
DEFAULT_FROM_EMAIL = '[email protected]'
SERVER_EMAIL = '[email protected]'
# EMAIL_USE_TLS = 'True'
EMAIL_SUBJECT_PREFIX = '[domain correspondance]'

here is the output of tests from the command line.

(mysite)m...@longsox:~/domain$ python manage.py retry_deferred
8 message(s) retried

(mysite)m...@longsox:~/domain$ python manage.py send_mail
------------------------------------------------------------------------
acquiring lock...
acquired.
sending message 'Confirm e-mail address for domain.org' to
[email protected]
message deferred due to failure: (550, 'Verification failed for
<webmas...@localhost>\nUnrouteable address\nSender verify failed',
'webmas...@localhost')

so basically pinax is not sending verification emails

this pinax site is running on django 1.2 and the server ubuntu 10.04
nginx fastcgi

do I need to add the smtp server to the /etc/hosts file?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to