Add sender email for storyboard.openstack.org
This patch updates the sender email from the default no-reply@storyboard.openstack.org to storyboard@storyboard.openstack.org , as the former user is not recognised. By doing it here, we avoid changing the global defaults, as per the comments in this patch: https://review.openstack.org/#/c/293080/ Change-Id: Ic4d12ab42687aaf4d0157aa5155ad7d81b94bacb
This commit is contained in:
parent
e05ef9a447
commit
31b043c3fb
@ -614,6 +614,7 @@ node 'storyboard.openstack.org' {
|
||||
"https://${::fqdn}",
|
||||
'http://docs-draft.openstack.org',
|
||||
],
|
||||
sender_email_address => 'storyboard@storyboard.openstack.org',
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,6 +15,7 @@ class openstack_project::storyboard(
|
||||
$hostname = $::fqdn,
|
||||
$valid_oauth_clients = [$::fqdn],
|
||||
$cors_allowed_origins = ["https://${::fqdn}"],
|
||||
$sender_email_address = undef,
|
||||
) {
|
||||
|
||||
class { 'project_config':
|
||||
@ -94,6 +95,7 @@ class openstack_project::storyboard(
|
||||
rabbitmq_vhost => '/',
|
||||
rabbitmq_user => $rabbitmq_user,
|
||||
rabbitmq_user_password => $rabbitmq_password,
|
||||
sender_email_address => $sender_email_address,
|
||||
}
|
||||
|
||||
class { '::storyboard::rabbit':
|
||||
|
Loading…
Reference in New Issue
Block a user