Add mailSessionKey in Manager (#332)

This commit is contained in:
Clément Oudot 2011-06-22 16:27:27 +00:00
parent 93d92e5577
commit 877dd337d3
2 changed files with 9 additions and 3 deletions

View File

@ -810,11 +810,13 @@ sub struct {
mailConfirmBody => 'textarea:/mailConfirmBody',
},
mailOther => {
_nodes =>
[qw(mailUrl randomPasswordRegexp mailTimeout)],
_nodes => [
qw(mailUrl randomPasswordRegexp mailTimeout mailSessionKey)
],
mailUrl => 'text:/mailUrl',
randomPasswordRegexp => 'text:/randomPasswordRegexp',
mailTimeout => 'int:/mailTimeout',
mailSessionKey => 'text:/mailSessionKey',
},
},
@ -1240,6 +1242,7 @@ sub testStruct {
notificationStorage => $testNotDefined,
mailUrl => $testNotDefined,
mailTimeout => $integer,
mailSessionKey => $testNotDefined,
mailConfirmSubject => $testNotDefined,
mailConfirmBody => $testNotDefined,
authentication => {
@ -1802,6 +1805,7 @@ sub defaultConf {
ldapVersion => '3',
mailCharset => 'utf-8',
mailTimeout => '0',
mailSessionKey => 'mail',
managerDn => '',
managerPassword => '',
notification => '0',

View File

@ -193,6 +193,7 @@ sub en {
mailLDAPFilter => 'Mail filter',
mailOther => 'Other',
mailReplyTo => 'Reply address',
mailSessionKey => 'Session key containing mail address',
mailSubject => 'Success mail subject',
mailTimeout => 'Validity time of a password reset request',
mailUrl => 'Page URL',
@ -609,7 +610,8 @@ sub fr {
mailLDAPFilter => 'Filtre mail',
mailOther => 'Autres',
mailReplyTo => 'Adresse de réponse',
mailSubject => 'Sujet du message de succès',
mailSessionKey => 'Clé de session contenant l\'adresse email',
mailSubject => 'Sujet du message de succès',
mailTimeout => "Durée de validité d'une demande de réinitialisation",
mailUrl => 'URL de la page',
managerDn => 'Compte de connexion LDAP',