Tuesday, November 30, 2010

Re: nUnrouteable address

On Tue, Nov 30, 2010 at 5:01 PM, mangamonk <mark.herringer@gmail.com> wrote:
> 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 = 'webmaster@domain.org'
> EMAIL_PORT = '587'
> DEFAULT_FROM_EMAIL = 'webmaster@domain.org'
> SERVER_EMAIL = 'webmaster@domain.org'
> # EMAIL_USE_TLS = 'True'
> EMAIL_SUBJECT_PREFIX = '[domain correspondance]'
>
> here is the output of tests from the command line.
>
> (mysite)mark@longsox:~/domain$ python manage.py retry_deferred
> 8 message(s) retried
>
> (mysite)mark@longsox:~/domain$ python manage.py send_mail
> ------------------------------------------------------------------------
> acquiring lock...
> acquired.
> sending message 'Confirm e-mail address for domain.org' to
> mark@emailaddrs.net
> message deferred due to failure: (550, 'Verification failed for
> <webmaster@localhost>\nUnrouteable address\nSender verify failed',
> 'webmaster@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?
>

Your SMTP server is declining to accept mail from this sender. Either
reconfigure your SMTP server to allow this sender access, or
reconfigure django to send as an approved sender.

BTW, I know you are trying to anonymise domains and what not, but your
problem is that emails are submitted from address
'webmaster@localhost', which is mighty close to
'webmaster@domain.org'. It might be easier to explicitly state your
settings.

Cheers

Tom

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

No comments:

Post a Comment