From 86742b2fa4094ee2d34b37041a01e4808cae0edf Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 29 May 2014 17:26:57 +0200 Subject: [PATCH] Drop the email notifications on stg --- roles/pkgdb2/templates/pkgdb2.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/pkgdb2/templates/pkgdb2.cfg b/roles/pkgdb2/templates/pkgdb2.cfg index 16cc66f653..dce47bec4f 100644 --- a/roles/pkgdb2/templates/pkgdb2.cfg +++ b/roles/pkgdb2/templates/pkgdb2.cfg @@ -50,10 +50,14 @@ PKGDB2_FAS_URL = 'https://admin.stg.fedoraproject.org/accounts' PKGDB2_FAS_INSECURE = True SITE_ROOT = 'https://admin.stg.fedoraproject.org' SITE_URL = '%s/pkgdb' % SITE_ROOT +## Pkgdb sends its notifications by email +PKGDB2_EMAIL_NOTIFICATION = False {% else %} PKGDB2_FAS_URL = 'https://admin.fedoraproject.org/accounts' SITE_ROOT = 'https://admin.fedoraproject.org' SITE_URL = '%s/pkgdb' % SITE_ROOT +## Pkgdb sends its notifications by email +PKGDB2_EMAIL_NOTIFICATION = True {% endif %} ## name of the user the pkgdb application can log in to FAS with PKGDB2_FAS_USER = '{{ fedorathirdpartyUser }}' @@ -65,8 +69,6 @@ PKGDB2_FAS_PASSWORD = '{{ fedorathirdpartyPassword }}' ## Pkgdb broadcasts its notifications via fedmsg PKGDB2_FEDMSG_NOTIFICATION = True -## Pkgdb sends its notifications by email -PKGDB2_EMAIL_NOTIFICATION = True ## Template to build the email address pkgdb sends its notifications to PKGDB2_EMAIL_TO = '{pkg_name}-owner@fedoraproject.org' ## The From address email notifications are sent with