
This is the openstack governance goal that the config files should be merged into one folder to make the code to be better understood and managed. Change-Id: I33dd85145d9f5b0384323ffa51b4d68de0aeb5b7
94 lines
3.4 KiB
Python
94 lines
3.4 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from oslo_config import cfg
|
|
|
|
|
|
smtp_command = cfg.StrOpt(
|
|
'smtp_command', default='/usr/sbin/sendmail -t -oi',
|
|
help=(
|
|
'The command of smtp to send email. The format is '
|
|
'"command_name arg1 arg2".'))
|
|
|
|
|
|
max_notifier_workers = cfg.IntOpt(
|
|
'max_notifier_workers', default=10,
|
|
help='The max amount of the notification workers.')
|
|
|
|
|
|
require_confirmation = cfg.BoolOpt(
|
|
'require_confirmation', default=False,
|
|
help='Whether the http/https/email subscription need to be confirmed '
|
|
'before notification.')
|
|
|
|
|
|
external_confirmation_url = cfg.StrOpt(
|
|
'external_confirmation_url',
|
|
help='The confirmation page url that will be used in email subscription '
|
|
'confirmation before notification.')
|
|
|
|
|
|
subscription_confirmation_email_template = cfg.DictOpt(
|
|
"subscription_confirmation_email_template",
|
|
default={'topic': 'Zaqar Notification - Subscription '
|
|
'Confirmation',
|
|
'body': 'You have chosen to subscribe to the '
|
|
'queue: {0}. This queue belongs to '
|
|
'project: {1}. '
|
|
'To confirm this subscription, '
|
|
'click or visit this link below: {2}',
|
|
'sender': 'Zaqar Notifications '
|
|
'<no-reply@openstack.org>'},
|
|
help="Defines the set of subscription confirmation email content, "
|
|
"including topic, body and sender. There is a mapping is "
|
|
"{0} -> queue name, {1} ->project id, {2}-> confirm url in body "
|
|
"string. User can use any of the three values. But they can't use "
|
|
"more than three.")
|
|
|
|
|
|
unsubscribe_confirmation_email_template = cfg.DictOpt(
|
|
"unsubscribe_confirmation_email_template",
|
|
default={'topic': 'Zaqar Notification - '
|
|
'Unsubscribe Confirmation',
|
|
'body': 'You have unsubscribed successfully to the '
|
|
'queue: {0}. This queue belongs to '
|
|
'project: {1}. '
|
|
'To resubscribe this subscription, '
|
|
'click or visit this link below: {2}',
|
|
'sender': 'Zaqar Notifications '
|
|
'<no-reply@openstack.org>'},
|
|
help="Defines the set of unsubscribe confirmation email content, "
|
|
"including topic, body and sender. There is a mapping is "
|
|
"{0} -> queue name, {1} ->project id, {2}-> confirm url in body "
|
|
"string. User can use any of the three values. But they can't use "
|
|
"more than three.")
|
|
|
|
|
|
GROUP_NAME = 'notification'
|
|
ALL_OPTS = [
|
|
smtp_command,
|
|
max_notifier_workers,
|
|
require_confirmation,
|
|
external_confirmation_url,
|
|
subscription_confirmation_email_template,
|
|
unsubscribe_confirmation_email_template
|
|
]
|
|
|
|
|
|
def register_opts(conf):
|
|
conf.register_opts(ALL_OPTS, group=GROUP_NAME)
|
|
|
|
|
|
def list_opts():
|
|
return {GROUP_NAME: ALL_OPTS}
|