Hi, EAMiller wrote: > The first few lines of settings.py: > > DEBUG = False > TEMPLATE_DEBUG = DEBUG > > ADMINS = ( > ('E Miller', '[EMAIL PROTECTED]'), > ('E Miller', '[EMAIL PROTECTED]') > ) > > MANAGERS = ADMINS > SEND_BROKEN_LINK_EMAILS = True > SERVER_EMAIL = '[EMAIL PROTECTED]' > > Up until a few months ago this was fine - I mostly depended on gmail > to see any 500 or 404 errors. Now no mail seems to get through. I > haven't been messing with postfix settings, so I'm not sure what has > changed. > > I added ('E Miller', '[EMAIL PROTECTED]') to admins to see if I could at > least check for mail on the server. Still no mail. I'm sure mail to > localhost works because I can do: > > $ mail [EMAIL PROTECTED] -s 'test' > etc... > > and I do receive the email. I have checked relevant /var/log files and > I can't seem to diagnose this. Any suggestions?
Drop into a shell (python manage.py shell) and send yourself a test message using: from django.core.mail import send_mail send_mail('Subject test', 'Message test', '[EMAIL PROTECTED]', ['your_email_address_here'], fail_silently=False) With fail_silently=False, you will receive some kind of an error message if that email send is unsuccessful. Use that to investigate further. If the above call doesn't show any errors, check your Postfix logs. Lastly, although this is probably not related to your problem at the moment, make sure you have SPF records set for your sending domain name to allow emails from the server. Without an appropriate SPF record, Gmail might take these emails to be spam. http://en.wikipedia.org/wiki/Sender_Policy_Framework Also, it's a good idea to have a Reverse DNS pointer record for your server's IP address. http://en.wikipedia.org/wiki/Anti-spam_techniques_%28e-mail%29#PTR.2FReverse_DNS_checks -Rajesh D --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---