On Mon, 2008-07-14 at 16:02 -0700, EAMiller wrote: [...] > Not sure what this really means. Doesn't the fact that I can use > 'mail' to send mail from the CLI mean my postfix setup is basically > OK? I will keep working on it.
There are two ways that mail can be delivered to an MTA (sendmail, postfix, ...) on a system: by connecting to a listening port (the network-based method) and by starting a new process designed to accept a single transaction / piece of email. When you use "mail" to send mail from the command-line, it uses the second approach. When Django sends mail it has to use the network-based approach, since the mail server could be anywhere. So if 'netstat -tl' doesn't show the mail server listening on a port, you've found the problem. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---