Don't enable SMTP by default

This commit is contained in:
Xavier Guimard 2017-04-13 20:08:54 +00:00
parent 7db5ab077e
commit 6e38097176
4 changed files with 3 additions and 4 deletions

View File

@ -160,7 +160,6 @@ sub defaultValues {
'portalDisplayLoginHistory' => 1, 'portalDisplayLoginHistory' => 1,
'portalDisplayLogout' => 1, 'portalDisplayLogout' => 1,
'portalDisplayRegister' => 1, 'portalDisplayRegister' => 1,
'portalDisplayResetPassword' => 1,
'portalForceAuthnInterval' => 5, 'portalForceAuthnInterval' => 5,
'portalPingInterval' => 60000, 'portalPingInterval' => 60000,
'portalRequireOldPassword' => 1, 'portalRequireOldPassword' => 1,

View File

@ -2066,7 +2066,7 @@ qr/^(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.])*(?:[a-zA-Z][-a-zA-Z0-
'type' => 'bool' 'type' => 'bool'
}, },
'portalDisplayResetPassword' => { 'portalDisplayResetPassword' => {
'default' => 1, 'default' => 0,
'type' => 'bool' 'type' => 'bool'
}, },
'portalForceAuthnInterval' => { 'portalForceAuthnInterval' => {

View File

@ -620,7 +620,7 @@ sub attributes {
documentation => 'Display register button in portal', documentation => 'Display register button in portal',
}, },
portalDisplayResetPassword => { portalDisplayResetPassword => {
default => 1, default => 0,
type => 'bool', type => 'bool',
documentation => 'Display reset password button in portal', documentation => 'Display reset password button in portal',
}, },

File diff suppressed because one or more lines are too long