7beb88a81310f1f886f169621b0a2c4da88a8e0a
[freeside.git] / httemplate / view / svc_acct / basics.html
1 <% &ntable("#cccccc") %><TR><TD><% &ntable("#cccccc",2) %>
2
3 <% include('/view/elements/tr.html', label=>'Service',  value=>$part_svc->svc) %>
4 <% include('/view/elements/tr.html', label=>'Username', value=>$svc_acct->username) %>
5 <% include('/view/elements/tr.html', label=>'Domain',   value=>$domain) %>
6
7 % if ( $opt{'communigate'} ) {
8   <% include('/view/elements/tr.html', label=>'Aliases', value=>$svc_acct->cgp_aliases) %>
9 %}
10
11 % if ( $svc_acct->pbxsvc ) {
12   <% include('/view/elements/tr.html', label=>'PBX', value=>$svc_acct->pbx_title) %>
13 %}
14
15 % my $show_pw = '';
16 % my $password = $svc_acct->get_cleartext_password; 
17 % if ( $password =~ /^\*\w+\* (.*)$/ ) {
18 %   $password = $1;
19 %   $show_pw .= '<I>(login disabled)</I> ';
20 % } 
21 % if ( ! $password
22 %      && $svc_acct->_password_encryption ne 'plain'
23 %      && $svc_acct->_password
24 %    )
25 % {
26 %   $show_pw .= '<I>('. uc($svc_acct->_password_encryption). ' encrypted)</I>';
27 % } elsif ( $conf->exists('showpasswords') ) { 
28 %   $show_pw .= '<PRE>'. encode_entities($password). '</PRE>';
29 % } else { 
30 %   $show_pw .= '<I>(hidden)</I>';
31 % } 
32 % $password = ''; 
33 <% include('/view/elements/tr.html', label=>'Password', value=>$show_pw) %>
34
35
36 % if ( $conf->exists('security_phrase') ) {
37   <%include('/view/elements/tr.html', label=>'Security phrase', value=>$svc_acct->sec_phrase)%>
38 % } 
39
40 % if ( $svc_acct->popnum ) {
41 %   my $svc_acct_pop = qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum});
42     <% include('/view/elements/tr.html', label=>'Access number', value=>$svc_acct_pop->text) %>
43 % } 
44
45 % if ($svc_acct->uid ne '') { 
46   <% include('/view/elements/tr.html', label=>'UID', value=>$svc_acct->uid) %>
47 % } 
48
49 % if ($svc_acct->gid ne '') { 
50   <% include('/view/elements/tr.html', label=>'GID', value=>$svc_acct->gid) %>
51 % } 
52
53 % if ($svc_acct->finger ne '') { 
54   <% include('/view/elements/tr.html', label=>'Real Name', value=>$svc_acct->finger) %>
55 % } 
56
57 % if ($svc_acct->dir ne '') { 
58   <% include('/view/elements/tr.html', label=>'Home directory', value=>$svc_acct->dir) %>
59 % } 
60
61 % if ($svc_acct->shell ne '') { 
62   <% include('/view/elements/tr.html', label=>'Shell', value=>$svc_acct->shell) %>
63 % } 
64
65 % if ($svc_acct->quota ne '' && ! $opt{'communigate'} ) { 
66
67   <% include('/view/elements/tr.html', label=>'Quota', value=>$svc_acct->quota) %>
68
69 % } elsif ( $opt{'communigate'} ) {
70
71 %# settings
72
73   <% include('/view/elements/tr.html', label=>'Mailbox type', value=>$svc_acct->cgp_type) %>
74
75   <% include('/view/elements/tr.html', label=>'Enabled services',
76                         value=>$svc_acct->cgp_accessmodes ) %>
77
78   <% include('/view/elements/tr.html', label=>'Mail storage limit',
79                         value=>$svc_acct->quota ) %>
80
81   <% include('/view/elements/tr.html', label=>'File storage limit',
82                         value=>$svc_acct->file_quota ) %>
83
84   <% include('/view/elements/tr.html', label=>'Number of files limit',
85                         value=>$svc_acct->file_maxnum ) %>
86
87   <% include('/view/elements/tr.html', label=>'File size limit',
88                         value=>$svc_acct->file_maxsize ) %>
89
90   <% include('/view/elements/tr.html', label=>'Password recovery',
91                value=>$svc_acct->password_recover ? 'YES' : 'NO' ) %>
92
93   <% include('/view/elements/tr.html', label=>'Allowed mail rules',
94                         value=>$svc_acct->cgp_rulesallowed || 'default (No)') %>
95
96   <% include('/view/elements/tr.html', label=>'RPOP modifications',
97                         value=>$svc_acct->cgp_rpopallowed ? 'YES' : 'NO' ) %>
98
99   <% include('/view/elements/tr.html', label=>'Accepts mail to "all"',
100                         value=>$svc_acct->cgp_mailtoall ? 'YES' : 'NO' ) %>
101
102   <% include('/view/elements/tr.html', label=>'Add trailer to sent mail',
103                         value=>$svc_acct->cgp_addmailtrailer ? 'YES' : 'NO' ) %>
104
105 %# preferences
106
107   <% include('/view/elements/tr.html', label=>'Message delete method',
108                         value=>$svc_acct->cgp_deletemode ) %>
109
110   <% include('/view/elements/tr.html', label=>'On logout remove trash',
111                         value=>$svc_acct->cgp_emptytrash ) %>
112
113   <% include('/view/elements/tr.html', label=>'Language',
114                         value=>$svc_acct->cgp_language || 'default (English)' ) %>
115   <% include('/view/elements/tr.html', label=>'Time zone',
116                         value=>$svc_acct->cgp_timezone || 'default (HostOS)' ) %>
117   <% include('/view/elements/tr.html', label=>'Layout',
118                         value=>$svc_acct->cgp_skinname || 'default (***)' ) %>
119
120   <% include('/view/elements/tr.html', label=>'Pronto style',
121                         value=>$svc_acct->cgp_prontoskinname ) %>
122
123   <% include('/view/elements/tr.html', label=>'Send read receipts',
124                         value=>$svc_acct->cgp_sendmdnmode ) %>
125
126 %#XXX vacation message, redirect all mail, mail rules
127
128 % }
129
130 % if ($svc_acct->slipip) { 
131   <% include('/view/elements/tr.html',
132        label=>'IP address',
133        value=> ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' )
134                  ? "<I>(Dynamic)</I>"
135                  : $svc_acct->slipip
136      )
137   %>
138 % } 
139
140 <% include('usage.html',
141              'svc_acct' => $svc_acct,
142           )
143 %>
144
145 % foreach my $attribute ( grep /^radius_/, $svc_acct->fields ) {
146 %   $attribute =~ /^radius_(.*)$/;
147 %   my $pattribute = $FS::raddb::attrib{$1};
148     <% include('/view/elements/tr.html', label=>"Radius (reply) $pattribute",
149                           value=>$svc_acct->getfield($attribute)
150               )
151     %>
152 % } 
153
154 % foreach my $attribute ( grep /^rc_/, $svc_acct->fields ) {
155 %   $attribute =~ /^rc_(.*)$/;
156 %   my $pattribute = $FS::raddb::attrib{$1};
157     <% include('/view/elements/tr.html', label=>"Radius (check) $pattribute",
158                           value=>$svc_acct->getfield($attribute)
159               )
160     %>
161 % } 
162
163 <% include('/view/elements/tr.html', label=>'RADIUS groups',
164                       value=>join('<BR>', $svc_acct->radius_groups) ) %>
165
166 %# Can this be abstracted further?  Maybe a library function like
167 %# widget('HTML', 'view', $svc_acct) ?  It would definitely make UI 
168 %# style management easier.
169 % foreach (sort { $a cmp $b } $svc_acct->virtual_fields) { 
170   <% $svc_acct->pvf($_)->widget('HTML', 'view', $svc_acct->getfield($_)) %>
171 % } 
172
173 </TABLE></TD></TR></TABLE>
174 <%init>
175
176 my %opt = @_;
177
178 my $conf = new FS::Conf;
179
180 my $svc_acct = $opt{'svc_acct'};
181 my $part_svc = $opt{'part_svc'};
182
183 die 'Empty domsvc for svc_acct.svcnum '. $svc_acct->svcnum
184   unless $svc_acct->domsvc;
185 my $svc_domain = qsearchs('svc_domain', { 'svcnum' => $svc_acct->domsvc } );
186 die 'Unknown domain (domsvc '. $svc_acct->domsvc.
187     ' for svc_acct.svcnum '. $svc_acct->svcnum. ')'
188   unless $svc_domain;
189 my $domain = $svc_domain->domain;
190
191 </%init>