From e2b8a5b3291232c7bd3d5fce6dfb1ee008f6b062 Mon Sep 17 00:00:00 2001
From: jmontoya <jmontoya@ispconfig3>
Date: Thu, 05 Aug 2010 06:14:54 -0400
Subject: [PATCH] Adding new remoting functions to the remote_user.tform.php page
---
interface/web/mail/form/mail_user.tform.php | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/interface/web/mail/form/mail_user.tform.php b/interface/web/mail/form/mail_user.tform.php
index 5214b62..06fa18a 100644
--- a/interface/web/mail/form/mail_user.tform.php
+++ b/interface/web/mail/form/mail_user.tform.php
@@ -110,6 +110,18 @@
'width' => '30',
'maxlength' => '255'
),
+ 'cc' => array (
+ 'datatype' => 'VARCHAR',
+ 'formtype' => 'TEXT',
+ 'validators' => array ( 0 => array ( 'type' => 'REGEX',
+ 'regex' => '/^(\w+[\w\.\-\+]*\w{0,}@\w+[\w.-]*\w+\.[a-z]{2,10}){0,1}$/i',
+ 'errmsg'=> 'cc_error_isemail'),
+ ),
+ 'default' => '',
+ 'value' => '',
+ 'width' => '30',
+ 'maxlength' => '255'
+ ),
'maildir' => array (
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
--
Gitblit v1.9.1