I've got a Django instance (1.4, python 2.7.2) running via FastCGI on vds-hosting.The problem is:(mypython)-bash-4.1$ python manage.py shellPython 2.7.2 (default, Dec 8 2011, 12:06:29)[GCC 4.4.4 20100726 (Red Hat 4.4.4-13)] on linux2Type "help", "copyright", "credits" or "license" for more information.(InteractiveConsole)>>> import django>>> from django.core.mail import EmailMessage>>> email = EmailMessage('Hello', 'World', to=['bla...@bla-bla.ru'])>>> email.send()Traceback (most recent call last):File "<console>", line 1, in <module>File "/home/vhosts/e-pyfan.com/private/mypython/lib/python2.7/site-packages/Django-1.4-py2.7.egg/django/core/mail/message.py", line 248, in sendreturn self.get_connection(fail_silently).send_messages([self])File "/home/vhosts/e-pyfan.com/private/mypython/lib/python2.7/site-packages/Django-1.4-py2.7.egg/django/core/mail/backends/smtp.py", line 92, in send_messagessent = self._send(message)File "/home/vhosts/e-pyfan.com/private/mypython/lib/python2.7/site-packages/Django-1.4-py2.7.egg/django/core/mail/backends/smtp.py", line 110, in _sendemail_message.message().as_string())File "/opt/python27/lib/python2.7/smtplib.py", line 728, in sendmailraise SMTPDataError(code, resp)SMTPDataError: (554, 'mail server permanently rejected message (#5.3.0)')
When I tested e-mail sending on my PC with locally installed mail server I didn't have any problem, mailing worked well.Please anybody help.--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/pI8qXk50AaEJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.