Allow 128 character in e-mail address

Signed-off-by: Christian Dresel <fff@chrisi01.de>
Reviewed-by: Tim Niemeyer <tim@tn-x.org>

	modified:   src/packages/fff/fff-web/files/www/ssl/settings.js
This commit is contained in:
Christian Dresel 2016-02-14 15:51:59 +01:00 committed by Tim Niemeyer
parent 2809a82bb9
commit 94399d3b49
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ function appendSetting(p, path, value, mode)
case "contact":
b = append_input(p, "Kontaktdaten", id, value);
b.lastChild.placeholder = "info@example.com";
addInputCheck(b.lastChild, /^$|^[\-\^'\w\.\:\[\]\(\)\/ &@\+\u0080-\u00FF]{0,32}$/, "Ung\xfcltige Eingabe.");
addInputCheck(b.lastChild, /^$|^[\-\^'\w\.\:\[\]\(\)\/ &@\+\u0080-\u00FF]{0,128}$/, "Ung\xfcltige Eingabe.");
addHelpText(b, "Kontaktdaten f\xfcr die \xf6ffentliche Freifunk-Karte und Statusseite. Falls ihr euch von anderen Leuten kontaktieren lassen wollt (z.B. \"info@example.com\").");
break;
case "enabled":