Hi group, On my ubuntu server I'm using pinax 0.71 and for deployment I used this tutorial http://pinaxproject.com/docs/dev/deployment.html#sending-mail-and-notices
The emailsettings are: EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = $$ EMAIL_HOST_PASSWORD = $$ EMAIL_PORT = 587 EMAIL_USE_TLS = True Nevertheless the syslog shows the cronjobs trying to activate local postfix to send the mails. When I execute the shell script created for the cronjob manually the mail get delivered perfectly fine. This is the script using the 'mailer' app: #!/bin/bash source /home/mark/virtualenv/<domain>/bin/activate cd /home/mark/public_html/<domain>/mysite/ python manage.py send_mail Is it necessary to define avoidance of postfix as default mailer? If so how? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.