diff --git a/roles/distgit/pagure/templates/pagure.cfg b/roles/distgit/pagure/templates/pagure.cfg index 1f92de2267..3b5cd4f1fb 100644 --- a/roles/distgit/pagure/templates/pagure.cfg +++ b/roles/distgit/pagure/templates/pagure.cfg @@ -49,7 +49,7 @@ ADMIN_GROUP = ['cvsadmin', 'sysadmin-main'] ADMIN_EMAIL = 'admin@fedoraproject.org' ### The email address to which the flask.log will send the errors (tracebacks) -EMAIL_ERROR = 'pingou@pingoured.fr' +EMAIL_ERROR = 'admin@fedoraproject.org' ### Default SMTP server to use for sending emails SMTP_SERVER = 'bastion' @@ -212,7 +212,7 @@ LOGGING = { 'class': 'logging.handlers.SMTPHandler', 'mailhost': 'bastion', 'fromaddr': 'pagure@src.fedoraproject.org', - 'toaddrs': 'pingou@pingoured.fr', + 'toaddrs': 'admin@fedoraproject.org', 'subject': 'ERROR on pagure - dist-git', 'filters': ['myfilter'], }, diff --git a/roles/kerneltest/templates/kerneltest.cfg b/roles/kerneltest/templates/kerneltest.cfg index ad44b1ac40..1bb2e54f6d 100644 --- a/roles/kerneltest/templates/kerneltest.cfg +++ b/roles/kerneltest/templates/kerneltest.cfg @@ -15,7 +15,7 @@ LOG_DIR = '/var/www/logs' API_KEY = '{{ kerneltest_api_key }}' # Email of the admin that should receive the error emails -MAIL_ADMIN = 'pingou@pingoured.fr' +MAIL_ADMIN = 'admin@fedoraproject.org' # FAS group or groups (provided as a list) in which should be the admins # of this application diff --git a/roles/pagure/templates/pagure.cfg b/roles/pagure/templates/pagure.cfg index 0124fe1708..8073ee64f3 100644 --- a/roles/pagure/templates/pagure.cfg +++ b/roles/pagure/templates/pagure.cfg @@ -41,13 +41,13 @@ DB_URL = 'postgresql://{{ pagure_db_user }}:{{ pagure_db_pass }}@{{ pagure_db_ho ### The FAS group in which the admin of pagure are ADMIN_GROUP = None -PAGURE_ADMIN_USERS = ["pingou", "kevin", "mobrien", "nb", "zlopez", "ryanlerch"] +PAGURE_ADMIN_USERS = ["pingou", "kevin", "nb", "zlopez", "ryanlerch"] # The publicly visible admin email address ADMIN_EMAIL = 'admin@fedoraproject.org' ### The email address to which the flask.log will send the errors (tracebacks) -EMAIL_ERROR = 'pingou@pingoured.fr' +EMAIL_ERROR = 'admin@fedoraproject.org' ### Default SMTP server to use for sending emails SMTP_SERVER = 'localhost'