[freeside-commits] freeside/FS/FS Schema.pm, 1.193, 1.194 svc_acct.pm, 1.284, 1.285
Ivan,,,
ivan at wavetail.420.am
Sun Feb 21 01:19:07 PST 2010
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv25319/FS/FS
Modified Files:
Schema.pm svc_acct.pm
Log Message:
communigate, RT#7083
Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -d -r1.193 -r1.194
--- Schema.pm 21 Feb 2010 07:28:11 -0000 1.193
+++ Schema.pm 21 Feb 2010 09:19:04 -0000 1.194
@@ -1641,7 +1641,9 @@
'password_selfchange','char', 'NULL', 1, '', '',
'password_recover', 'char', 'NULL', 1, '', '',
'cgp_type', 'varchar', 'NULL', $char_d, '', '', #AccountType
- 'cgp_aliases', 'varchar', 'NULL', 255, '', '', #AccountType
+ 'cgp_aliases', 'varchar', 'NULL', 255, '', '',
+ 'cgp_deletemode', 'varchar', 'NULL', $char_d, '', '', #DeleteMode
+ 'cgp_emptytrash', 'varchar', 'NULL', $char_d, '', '', #EmptyTrash
],
'primary_key' => 'svcnum',
#'unique' => [ [ 'username', 'domsvc' ] ],
Index: svc_acct.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/svc_acct.pm,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -d -r1.284 -r1.285
--- svc_acct.pm 21 Feb 2010 07:28:11 -0000 1.284
+++ svc_acct.pm 21 Feb 2010 09:19:04 -0000 1.285
@@ -274,7 +274,7 @@
'cgp_type'=> {
label => 'Communigate account type',
type => 'select',
- select_list => [ ],
+ select_list => [qw( MultiMailbox TextMailbox MailDirMailbox AGrade BGrade CGrade )],
disable_inventory => 1,
disable_select => 1,
},
@@ -284,6 +284,19 @@
disable_inventory => 1,
disable_select => 1,
},
+ 'cgp_deletemode' => {
+ label => 'Communigate message delete method',
+ type => 'select',
+ select_list => [ 'Move To Trash', 'Immediately', 'Mark' ],
+ disable_inventory => 1,
+ disable_select => 1,
+ },
+ 'cgp_emptytrash' => {
+ label => 'Communigate on logout remove trash',
+ type => 'text',
+ disable_inventory => 1,
+ disable_select => 1,
+ },
'quota' => {
label => 'Quota', #Mail storage limit
type => 'text',
@@ -1101,6 +1114,8 @@
|| $self->ut_textn( 'cgp_accessmodes' )
|| $self->ut_alphan( 'cgp_type' )
|| $self->ut_textn( 'cgp_aliases' ) #well
+ || $self->ut_alphasn( 'cgp_deletemode' )
+ || $self->ut_alphan( 'cgp_emptytrash' )
;
return $error if $error;
More information about the freeside-commits
mailing list