Hi Larry, Yes - you'll need to configure the SMTP host, port and any login credentials. The exact settings required will depend on how you've got postfix configured, but the full list of settings that *may* be required is listed here:
https://docs.djangoproject.com/en/dev/topics/email/#smtp-backend This section of the docs also shows you another option -- if, during testing, you don't want to send mail out on the wire, you can configure your server to use a different mail "backend" for sending mail. So, for example, you can configure all mail to be "sent" to the console, saving you the trouble of waiting for your mail client to pick up mail from a mailbox. Yours, Russ Magee %-) On Wed, Oct 17, 2012 at 8:28 PM, Larry Martell <[email protected]> wrote: > I'm trying to set up the password reset stuff, following what I read at: > > https://docs.djangoproject.com/en/dev/ref/contrib/admin/#adding-a-password-reset-feature > > When I click on the 'Reset my password' button, I get: > > SMTPServerDisconnected at /admin/password_reset/ > please run connect() first > > > I do have postfix running on the same machine that apache is running > on. Is there some part of the setup missing? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > 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. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

