forked from ubccr/coldfront
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #487 from ucb-rit/ansible_configure_email_admins
Allow EMAIL_ADMIN_LIST to be configured in Ansible
- Loading branch information
Showing
4 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,7 @@ that quotes need not be provided, except in the list variable. | |
redis_passwd: password_here | ||
from_email: [email protected] | ||
admin_email: [email protected] | ||
email_admin_list: ["[email protected]"] | ||
request_approval_cc_list: ["[email protected]"] | ||
``` | ||
8. Provision the VM. This should run the Ansible playbook. Expect this to take | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,8 +173,12 @@ sentry_dsn: "" | |
# # TODO: For LRC, use the substring 'MyLRC'. | ||
# email_subject_prefix: '[MyBRC-User-Portal]' | ||
|
||
# # A list of admin email addresses to be notified about new requests and other | ||
# # events. | ||
# # TODO: Set these addresses to yours. | ||
# email_admin_list: [] | ||
# # A list of email addresses to CC when certain requests are processed. | ||
# # TODO: Set this address to yours. | ||
# # TODO: Set these addresses to yours. | ||
# request_approval_cc_list: [] | ||
|
||
############################################################################### | ||
|
@@ -224,9 +228,13 @@ sentry_dsn: "" | |
# # TODO: For LRC, use the substring 'MyLRC'. | ||
# email_subject_prefix: '[MyBRC-User-Portal]' | ||
|
||
# # A list of admin email addresses to be notified about new requests and other | ||
# # events. | ||
# # TODO: Set these addresses to yours. | ||
# email_admin_list: [] | ||
# # A list of email addresses to CC when certain requests are processed. | ||
# # TODO: Set this address to yours. | ||
# request_approval_cc_list: ['[email protected]'] | ||
# # TODO: Set these addresses to yours. | ||
# request_approval_cc_list: [] | ||
|
||
############################################################################### | ||
# dev_settings | ||
|
@@ -272,6 +280,10 @@ sentry_dsn: "" | |
# # TODO: For LRC, use the substring 'MyLRC'. | ||
# email_subject_prefix: '[MyBRC-User-Portal]' | ||
|
||
# # A list of admin email addresses to be notified about new requests and other | ||
# # events. | ||
# # TODO: Set these addresses to yours. | ||
# email_admin_list: ['[email protected]'] | ||
# # A list of email addresses to CC when certain requests are processed. | ||
# # TODO: Set this address to yours. | ||
# # TODO: Set these addresses to yours. | ||
# request_approval_cc_list: ['[email protected]'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ CENTER_PROJECT_RENEWAL_HELP_URL = CENTER_BASE_URL + '/help' | |
|
||
EMAIL_PORT = 1025 | ||
EMAIL_SUBJECT_PREFIX = '[MyBRC-User-Portal]' | ||
# A list of admin email addresses to be notified about new requests and other | ||
# events. | ||
EMAIL_ADMIN_LIST = ['admin@localhost'] | ||
EMAIL_SENDER = '[email protected]' | ||
EMAIL_TICKET_SYSTEM_ADDRESS = 'help@localhost' | ||
|