X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fsvc_domain.pm;fp=FS%2FFS%2Fsvc_domain.pm;h=b01d67310733d528d7096c8b298a83ce8defd36a;hp=9466b337cb4b7c986b9a0f51fcb50bcbe2a6f407;hb=d8950e63d6c3f6fb910c28077e3a3e054ad12388;hpb=051101dc91e9d6164cda897495880c8f2f7705be diff --git a/FS/FS/svc_domain.pm b/FS/FS/svc_domain.pm index 9466b337c..b01d67310 100644 --- a/FS/FS/svc_domain.pm +++ b/FS/FS/svc_domain.pm @@ -67,25 +67,43 @@ FS::svc_Common. The following fields are currently supported: =over 4 -=item svcnum - primary key (assigned automatically for new accounts) +=item svcnum + +primary key (assigned automatically for new accounts) =item domain -=item catchall - optional svcnum of an svc_acct record, designating an email catchall account. +=item catchall + +optional svcnum of an svc_acct record, designating an email catchall account. + +=item suffix + +=item parent_svcnum + +=item quota + +Storage limit -=item suffix - +=item registrarnum -=item parent_svcnum - +Registrar (see L) -=item registrarnum - Registrar (see L) +=item registrarkey -=item registrarkey - Registrar key or password for this domain +Registrar key or password for this domain -=item setup_date - UNIX timestamp +=item setup_date -=item renewal_interval - Number of days before expiration date to start renewal +UNIX timestamp -=item expiration_date - UNIX timestamp +=item renewal_interval + +Number of days before expiration date to start renewal + +=item expiration_date + +UNIX timestamp =item max_accounts @@ -139,6 +157,11 @@ sub table_info { 'max_accounts' => { label => 'Maximum number of accounts', 'disable_inventory' => 1, }, + 'quota' => { + label => 'Quota', #storage limit + type => 'text', + disable_inventory => 1, + }, 'cgp_aliases' => { label => 'Communigate aliases', type => 'text', @@ -580,6 +603,7 @@ sub check { || $self->ut_textn('au_registrant_name') || $self->ut_numbern('catchall') || $self->ut_numbern('max_accounts') + || $self->ut_alphan('quota') || $self->ut_anything('trailer') #well || $self->ut_textn('cgp_aliases') #well || $self->ut_enum('acct_def_password_selfchange', [ '', 'Y' ])