Opened 14 years ago

Closed 14 years ago

#13847 closed (invalid)

PasswordResetForm sends emails using "webmaster@localhost"

Reported by: Jari Pennanen Owned by: nobody
Component: contrib.auth Version: 1.2
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django.contrib.auth.forms.PasswordResetForm.save() function uses None as a from email address, and seems to default to "webmaster@localhost" on my computer.

Instead it should use the same address as others, the one defined in settings.SERVER_EMAIL

Change History (1)

comment:1 by Jari Pennanen, 14 years ago

Resolution: invalid
Status: newclosed

Found out that there is another setting called:

settings.DEFAULT_FROM_EMAIL

Which does the thing.

Note: See TracTickets for help on using tickets.
Back to Top