diff options
author | byron jones <byron@glob.com.au> | 2018-02-27 23:45:15 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-02-27 23:45:15 +0100 |
commit | 2ac3574928f3bf8b68e881f49f854b61aa023d63 (patch) | |
tree | 2fb01fb9a8bf951d215a9b7e20fd609ced75ee31 /Bugzilla/Install | |
parent | 7e047746fc38dee9e9330d3da81e87585aac92e6 (diff) | |
download | bugzilla-2ac3574928f3bf8b68e881f49f854b61aa023d63.tar.gz bugzilla-2ac3574928f3bf8b68e881f49f854b61aa023d63.tar.xz |
Bug 1438206 - Process SES email bounces properly
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Localconfig.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index f877829c5..646dbc1a7 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -163,7 +163,15 @@ use constant LOCALCONFIG_VARS => ( { name => 'attachment_base', default => _migrate_param( "attachment_base", '' ), - } + }, + { + name => 'ses_username', + default => '', + }, + { + name => 'ses_password', + default => '', + }, ); |