From 9e55b6cb44d93dfdfe429ab277077809aeac8067 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 2 Apr 2015 21:33:38 +0200 Subject: [PATCH] Use stg instead of dev and set the FROM_EMAIL where it needs to be --- roles/pagure/templates/pagure.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/pagure/templates/pagure.cfg b/roles/pagure/templates/pagure.cfg index 6c4d8b80e4..fd0e663f3d 100644 --- a/roles/pagure/templates/pagure.cfg +++ b/roles/pagure/templates/pagure.cfg @@ -26,14 +26,14 @@ SMTP_SERVER = 'localhost' ### Email used to sent emails {% if env == 'staging' %} -APP_URL = 'https://dev.pagure.io/' +FROM_EMAIL = 'pagure@stg.pagure.io' {% else %} -FROM_EMAIL = 'pagure@dev.pagure.io' +FROM_EMAIL = 'pagure@pagure.io' {% endif %} ### The URL at which the project is available. {% if env == 'staging' %} -APP_URL = 'https://dev.pagure.io/' +APP_URL = 'https://stg.pagure.io/' {% else %} APP_URL = 'https://pagure.io/' {% endif %}