diff options
author | Magnus Hagander | 2015-01-22 14:04:09 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-22 14:04:09 +0000 |
commit | 0c58317302c0eeea57dcbafa28b5150b82eba3de (patch) | |
tree | 2f02f27f4780e89b1bd9918ceb7f6f1477328ad8 /pgcommitfest/settings.py | |
parent | c80b7e1d58f3bac19a6df99ddf3d4bfc50e6a2ee (diff) |
Implement support for secondary email addresses
Each user can add a secondary email (well, more than one) and then pick
one of those when sending email.
Addresses are validated by sending a token to the newly added address,
with a link to click to confirm it. Only a fully confirmed address can
actually be used.
Diffstat (limited to 'pgcommitfest/settings.py')
-rw-r--r-- | pgcommitfest/settings.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pgcommitfest/settings.py b/pgcommitfest/settings.py index 5ef0bd4..f33c71b 100644 --- a/pgcommitfest/settings.py +++ b/pgcommitfest/settings.py @@ -128,6 +128,7 @@ INSTALLED_APPS = ( 'selectable', 'commitfest', 'mailqueue', + 'userprofile', ) # A sample logging configuration. The only tangible logging @@ -166,6 +167,9 @@ ARCHIVES_HOST="archives.postgresql.org" # Host: header to send # Email address to pgsql-hackers. Set to something local to test maybe? HACKERS_EMAIL="pgsql-hackers-testing@localhost" +# Email address for outgoing system messages +NOTIFICATION_FROM="webmaster@postgresql.org" + # Load local settings overrides try: from local_settings import * |