From 98fea044acc8e00277d7bdf904843e75b9cb5539 Mon Sep 17 00:00:00 2001 From: mszulecki Date: Wed, 23 Dec 2009 13:23:01 +0000 Subject: Also forbid whitespaces in mailbox names git-svn-id: http://svn.sukimashita.com/repos/mailadmin/trunk@7 4281df72-ff29-0410-8fee-2d9ac0c5f5a7 --- apps/admin/modules/mailbox/validate/create.yml | 4 ++-- apps/admin/modules/mailbox/validate/edit.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/admin/modules/mailbox/validate/create.yml b/apps/admin/modules/mailbox/validate/create.yml index 20163c8..2148f51 100644 --- a/apps/admin/modules/mailbox/validate/create.yml +++ b/apps/admin/modules/mailbox/validate/create.yml @@ -26,8 +26,8 @@ fields: myStringValidator: sfRegexValidator: match:..........Yes - match_error: 'The characters ".,;@/" are not allowed' - pattern: '/^[^\.,;@\/]+$/i' + match_error: 'The characters ".,;@/" and whitespaces are not allowed' + pattern: '/^[^\.\s,;@\/]+$/i' myDenyStringValidator: values: [] values_error: This Username is not allowed diff --git a/apps/admin/modules/mailbox/validate/edit.yml b/apps/admin/modules/mailbox/validate/edit.yml index 0802e39..fe94818 100644 --- a/apps/admin/modules/mailbox/validate/edit.yml +++ b/apps/admin/modules/mailbox/validate/edit.yml @@ -26,8 +26,8 @@ fields: myStringValidator: sfRegexValidator: match:..........Yes - match_error: 'The characters ".,;@/" are not allowed' - pattern: '/^[^\.,;@\/]+$/i' + match_error: 'The characters ".,;@/" and whitespaces are not allowed' + pattern: '/^[^\.\s,;@\/]+$/i' myDenyStringValidator: values: [] values_error: This Username is not allowed -- cgit v1.1-32-gdbae