Commit d5c736f2d27e4e1341f1054e3063725577071e10
1 parent
7ac21657
Exists in
master
and in
36 other branches
Set Django's DEFAULT_FROM_EMAIL
This fixes password reset emails
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
cookbooks/colab/templates/settings.yaml.erb
... | ... | @@ -14,6 +14,10 @@ ADMINS: &admin |
14 | 14 | |
15 | 15 | MANAGERS: *admin |
16 | 16 | |
17 | +# general Django settings | |
18 | +DEFAULT_FROM_EMAIL: '<%= node['config']['colab_from_address'] %>' | |
19 | + | |
20 | +# colab-specific | |
17 | 21 | COLAB_FROM_ADDRESS: '<%= node['config']['colab_from_address'] %>' |
18 | 22 | SERVER_EMAIL: '<%= node['config']['server_email'] %>' |
19 | 23 | ... | ... |