communigate provisioning phase 2: add svc_domain.trailer -> communigate TrailerText...
[freeside.git] / FS / FS / Conf_compat17.pm
1 package FS::Conf_compat17;
2
3 use vars qw($default_dir $base_dir @config_items @card_types $DEBUG );
4 use IO::File;
5 use File::Basename;
6 use FS::ConfItem;
7 use FS::ConfDefaults;
8
9 $base_dir = '%%%FREESIDE_CONF%%%';
10 $default_dir = '%%%FREESIDE_CONF%%%';
11
12
13 $DEBUG = 0;
14
15 =head1 NAME
16
17 FS::Conf - Freeside configuration values
18
19 =head1 SYNOPSIS
20
21   use FS::Conf;
22
23   $conf = new FS::Conf "/config/directory";
24
25   $FS::Conf::default_dir = "/config/directory";
26   $conf = new FS::Conf;
27
28   $dir = $conf->dir;
29
30   $value = $conf->config('key');
31   @list  = $conf->config('key');
32   $bool  = $conf->exists('key');
33
34   $conf->touch('key');
35   $conf->set('key' => 'value');
36   $conf->delete('key');
37
38   @config_items = $conf->config_items;
39
40 =head1 DESCRIPTION
41
42 Read and write Freeside configuration values.  Keys currently map to filenames,
43 but this may change in the future.
44
45 =head1 METHODS
46
47 =over 4
48
49 =item new [ DIRECTORY ]
50
51 Create a new configuration object.  A directory arguement is required if
52 $FS::Conf::default_dir has not been set.
53
54 =cut
55
56 sub new {
57   my($proto,$dir) = @_;
58   my($class) = ref($proto) || $proto;
59   my($self) = { 'dir'      => $dir || $default_dir,
60                 'base_dir' => $base_dir,
61               };
62   bless ($self, $class);
63 }
64
65 =item dir
66
67 Returns the conf directory.
68
69 =cut
70
71 sub dir {
72   my($self) = @_;
73   my $dir = $self->{dir};
74   -e $dir or die "FATAL: $dir doesn't exist!";
75   -d $dir or die "FATAL: $dir isn't a directory!";
76   -r $dir or die "FATAL: Can't read $dir!";
77   -x $dir or die "FATAL: $dir not searchable (executable)!";
78   $dir =~ /^(.*)$/;
79   $1;
80 }
81
82 =item base_dir
83
84 Returns the base directory.  By default this is /usr/local/etc/freeside.
85
86 =cut
87
88 sub base_dir {
89   my($self) = @_;
90   my $base_dir = $self->{base_dir};
91   -e $base_dir or die "FATAL: $base_dir doesn't exist!";
92   -d $base_dir or die "FATAL: $base_dir isn't a directory!";
93   -r $base_dir or die "FATAL: Can't read $base_dir!";
94   -x $base_dir or die "FATAL: $base_dir not searchable (executable)!";
95   $base_dir =~ /^(.*)$/;
96   $1;
97 }
98
99 =item config KEY
100
101 Returns the configuration value or values (depending on context) for key.
102
103 =cut
104
105 sub config {
106   my($self,$file)=@_;
107   my($dir)=$self->dir;
108   my $fh = new IO::File "<$dir/$file" or return;
109   if ( wantarray ) {
110     map {
111       /^(.*)$/
112         or die "Illegal line (array context) in $dir/$file:\n$_\n";
113       $1;
114     } <$fh>;
115   } else {
116     <$fh> =~ /^(.*)$/
117       or die "Illegal line (scalar context) in $dir/$file:\n$_\n";
118     $1;
119   }
120 }
121
122 =item config_binary KEY
123
124 Returns the exact scalar value for key.
125
126 =cut
127
128 sub config_binary {
129   my($self,$file)=@_;
130   my($dir)=$self->dir;
131   my $fh = new IO::File "<$dir/$file" or return;
132   local $/;
133   my $content = <$fh>;
134   $content;
135 }
136
137 =item exists KEY
138
139 Returns true if the specified key exists, even if the corresponding value
140 is undefined.
141
142 =cut
143
144 sub exists {
145   my($self,$file)=@_;
146   my($dir) = $self->dir;
147   -e "$dir/$file";
148 }
149
150 =item config_orbase KEY SUFFIX
151
152 Returns the configuration value or values (depending on context) for 
153 KEY_SUFFIX, if it exists, otherwise for KEY
154
155 =cut
156
157 sub config_orbase {
158   my( $self, $file, $suffix ) = @_;
159   if ( $self->exists("${file}_$suffix") ) {
160     $self->config("${file}_$suffix");
161   } else {
162     $self->config($file);
163   }
164 }
165
166 =item touch KEY
167
168 Creates the specified configuration key if it does not exist.
169
170 =cut
171
172 sub touch {
173   my($self, $file) = @_;
174   my $dir = $self->dir;
175   unless ( $self->exists($file) ) {
176     warn "[FS::Conf] TOUCH $file\n" if $DEBUG;
177     system('touch', "$dir/$file");
178   }
179 }
180
181 =item set KEY VALUE
182
183 Sets the specified configuration key to the given value.
184
185 =cut
186
187 sub set {
188   my($self, $file, $value) = @_;
189   my $dir = $self->dir;
190   $value =~ /^(.*)$/s;
191   $value = $1;
192   unless ( join("\n", @{[ $self->config($file) ]}) eq $value ) {
193     warn "[FS::Conf] SET $file\n" if $DEBUG;
194 #    warn "$dir" if is_tainted($dir);
195 #    warn "$dir" if is_tainted($file);
196     chmod 0644, "$dir/$file";
197     my $fh = new IO::File ">$dir/$file" or return;
198     chmod 0644, "$dir/$file";
199     print $fh "$value\n";
200   }
201 }
202 #sub is_tainted {
203 #             return ! eval { join('',@_), kill 0; 1; };
204 #         }
205
206 =item delete KEY
207
208 Deletes the specified configuration key.
209
210 =cut
211
212 sub delete {
213   my($self, $file) = @_;
214   my $dir = $self->dir;
215   if ( $self->exists($file) ) {
216     warn "[FS::Conf] DELETE $file\n";
217     unlink "$dir/$file";
218   }
219 }
220
221 =item config_items
222
223 Returns all of the possible configuration items as FS::ConfItem objects.  See
224 L<FS::ConfItem>.
225
226 =cut
227
228 sub config_items {
229   my $self = shift; 
230   #quelle kludge
231   @config_items,
232   ( map { 
233         my $basename = basename($_);
234         $basename =~ /^(.*)$/;
235         $basename = $1;
236         new FS::ConfItem {
237                            'key'         => $basename,
238                            'section'     => 'billing',
239                            'description' => 'Alternate template file for invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
240                            'type'        => 'textarea',
241                          }
242       } glob($self->dir. '/invoice_template_*')
243   ),
244   ( map { 
245         my $basename = basename($_);
246         $basename =~ /^(.*)$/;
247         $basename = $1;
248         new FS::ConfItem {
249                            'key'         => $basename,
250                            'section'     => 'billing',
251                            'description' => 'Alternate HTML template for invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
252                            'type'        => 'textarea',
253                          }
254       } glob($self->dir. '/invoice_html_*')
255   ),
256   ( map { 
257         my $basename = basename($_);
258         $basename =~ /^(.*)$/;
259         $basename = $1;
260         ($latexname = $basename ) =~ s/latex/html/;
261         new FS::ConfItem {
262                            'key'         => $basename,
263                            'section'     => 'billing',
264                            'description' => "Alternate Notes section for HTML invoices.  Defaults to the same data in $latexname if not specified.",
265                            'type'        => 'textarea',
266                          }
267       } glob($self->dir. '/invoice_htmlnotes_*')
268   ),
269   ( map { 
270         my $basename = basename($_);
271         $basename =~ /^(.*)$/;
272         $basename = $1;
273         new FS::ConfItem {
274                            'key'         => $basename,
275                            'section'     => 'billing',
276                            'description' => 'Alternate LaTeX template for invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
277                            'type'        => 'textarea',
278                          }
279       } glob($self->dir. '/invoice_latex_*')
280   ),
281   ( map { 
282         my $basename = basename($_);
283         $basename =~ /^(.*)$/;
284         $basename = $1;
285         new FS::ConfItem {
286                            'key'         => $basename,
287                            'section'     => 'billing',
288                            'description' => 'Alternate Notes section for LaTeX typeset PostScript invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
289                            'type'        => 'textarea',
290                          }
291       } glob($self->dir. '/invoice_latexnotes_*')
292   );
293 }
294
295 =back
296
297 =head1 BUGS
298
299 If this was more than just crud that will never be useful outside Freeside I'd
300 worry that config_items is freeside-specific and icky.
301
302 =head1 SEE ALSO
303
304 "Configuration" in the web interface (config/config.cgi).
305
306 httemplate/docs/config.html
307
308 =cut
309
310 #Business::CreditCard
311 @card_types = (
312   "VISA card",
313   "MasterCard",
314   "Discover card",
315   "American Express card",
316   "Diner's Club/Carte Blanche",
317   "enRoute",
318   "JCB",
319   "BankCard",
320   "Switch",
321   "Solo",
322 );
323
324 @config_items = map { new FS::ConfItem $_ } (
325
326   {
327     'key'         => 'address',
328     'section'     => 'deprecated',
329     'description' => 'This configuration option is no longer used.  See <a href="#invoice_template">invoice_template</a> instead.',
330     'type'        => 'text',
331   },
332
333   {
334     'key'         => 'alerter_template',
335     'section'     => 'billing',
336     'description' => 'Template file for billing method expiration alerts.  See the <a href="../docs/billing.html#invoice_template">billing documentation</a> for details.',
337     'type'        => 'textarea',
338   },
339
340   {
341     'key'         => 'apacheroot',
342     'section'     => 'deprecated',
343     'description' => '<b>DEPRECATED</b>, add a <i>www_shellcommands</i> <a href="../browse/part_export.cgi">export</a> instead.  The directory containing Apache virtual hosts',
344     'type'        => 'text',
345   },
346
347   {
348     'key'         => 'apacheip',
349     'section'     => 'deprecated',
350     'description' => '<b>DEPRECATED</b>, add an <i>apache</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to be the current IP address to assign to new virtual hosts',
351     'type'        => 'text',
352   },
353
354   {
355     'key'         => 'apachemachine',
356     'section'     => 'deprecated',
357     'description' => '<b>DEPRECATED</b>, add a <i>www_shellcommands</i> <a href="../browse/part_export.cgi">export</a> instead.  A machine with the apacheroot directory and user home directories.  The existance of this file enables setup of virtual host directories, and, in conjunction with the `home\' configuration file, symlinks into user home directories.',
358     'type'        => 'text',
359   },
360
361   {
362     'key'         => 'apachemachines',
363     'section'     => 'deprecated',
364     'description' => '<b>DEPRECATED</b>, add an <i>apache</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to be Apache machines, one per line.  This enables export of `/etc/apache/vhosts.conf\', which can be included in your Apache configuration via the <a href="http://www.apache.org/docs/mod/core.html#include">Include</a> directive.',
365     'type'        => 'textarea',
366   },
367
368   {
369     'key'         => 'bindprimary',
370     'section'     => 'deprecated',
371     'description' => '<b>DEPRECATED</b>, add a <i>bind</i> <a href="../browse/part_export.cgi">export</a> instead.  Your BIND primary nameserver.  This enables export of /var/named/named.conf and zone files into /var/named',
372     'type'        => 'text',
373   },
374
375   {
376     'key'         => 'bindsecondaries',
377     'section'     => 'deprecated',
378     'description' => '<b>DEPRECATED</b>, add a <i>bind_slave</i> <a href="../browse/part_export.cgi">export</a> instead.  Your BIND secondary nameservers, one per line.  This enables export of /var/named/named.conf',
379     'type'        => 'textarea',
380   },
381
382   {
383     'key'         => 'encryption',
384     'section'     => 'billing',
385     'description' => 'Enable encryption of credit cards.',
386     'type'        => 'checkbox',
387   },
388
389   {
390     'key'         => 'encryptionmodule',
391     'section'     => 'billing',
392     'description' => 'Use which module for encryption?',
393     'type'        => 'text',
394   },
395
396   {
397     'key'         => 'encryptionpublickey',
398     'section'     => 'billing',
399     'description' => 'Your RSA Public Key - Required if Encryption is turned on.',
400     'type'        => 'textarea',
401   },
402
403   {
404     'key'         => 'encryptionprivatekey',
405     'section'     => 'billing',
406     'description' => 'Your RSA Private Key - Including this will enable the "Bill Now" feature.  However if the system is compromised, a hacker can use this key to decode the stored credit card information.  This is generally not a good idea.',
407     'type'        => 'textarea',
408   },
409
410   {
411     'key'         => 'business-onlinepayment',
412     'section'     => 'billing',
413     'description' => '<a href="http://search.cpan.org/search?mode=module&query=Business%3A%3AOnlinePayment">Business::OnlinePayment</a> support, at least three lines: processor, login, and password.  An optional fourth line specifies the action or actions (multiple actions are separated with `,\': for example: `Authorization Only, Post Authorization\').    Optional additional lines are passed to Business::OnlinePayment as %processor_options.',
414     'type'        => 'textarea',
415   },
416
417   {
418     'key'         => 'business-onlinepayment-ach',
419     'section'     => 'billing',
420     'description' => 'Alternate <a href="http://search.cpan.org/search?mode=module&query=Business%3A%3AOnlinePayment">Business::OnlinePayment</a> support for ACH transactions (defaults to regular <b>business-onlinepayment</b>).  At least three lines: processor, login, and password.  An optional fourth line specifies the action or actions (multiple actions are separated with `,\': for example: `Authorization Only, Post Authorization\').    Optional additional lines are passed to Business::OnlinePayment as %processor_options.',
421     'type'        => 'textarea',
422   },
423
424   {
425     'key'         => 'business-onlinepayment-description',
426     'section'     => 'billing',
427     'description' => 'String passed as the description field to <a href="http://search.cpan.org/search?mode=module&query=Business%3A%3AOnlinePayment">Business::OnlinePayment</a>.  Evaluated as a double-quoted perl string, with the following variables available: <code>$agent</code> (the agent name), and <code>$pkgs</code> (a comma-separated list of packages for which these charges apply)',
428     'type'        => 'text',
429   },
430
431   {
432     'key'         => 'business-onlinepayment-email-override',
433     'section'     => 'billing',
434     'description' => 'Email address used instead of customer email address when submitting a BOP transaction.',
435     'type'        => 'text',
436   },
437
438   {
439     'key'         => 'bsdshellmachines',
440     'section'     => 'deprecated',
441     'description' => '<b>DEPRECATED</b>, add a <i>bsdshell</i> <a href="../browse/part_export.cgi">export</a> instead.  Your BSD flavored shell (and mail) machines, one per line.  This enables export of `/etc/passwd\' and `/etc/master.passwd\'.',
442     'type'        => 'textarea',
443   },
444
445   {
446     'key'         => 'business-onlinepayment-email_customer',
447     'section'     => 'billing',
448     'description' => 'Controls the "email_customer" flag used by some Business::OnlinePayment processors to enable customer receipts.',
449     'type'        => 'checkbox',
450   },
451
452   {
453     'key'         => 'countrydefault',
454     'section'     => 'UI',
455     'description' => 'Default two-letter country code (if not supplied, the default is `US\')',
456     'type'        => 'text',
457   },
458
459   {
460     'key'         => 'date_format',
461     'section'     => 'UI',
462     'description' => 'Format for displaying dates',
463     'type'        => 'select',
464     'select_hash' => [
465                        '%m/%d/%Y' => 'MM/DD/YYYY',
466                        '%Y/%m/%d' => 'YYYY/MM/DD',
467                      ],
468   },
469
470   {
471     'key'         => 'cyrus',
472     'section'     => 'deprecated',
473     'description' => '<b>DEPRECATED</b>, add a <i>cyrus</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to integrate with <a href="http://asg.web.cmu.edu/cyrus/imapd/">Cyrus IMAP Server</a>, three lines: IMAP server, admin username, and admin password.  Cyrus::IMAP::Admin should be installed locally and the connection to the server secured.',
474     'type'        => 'textarea',
475   },
476
477   {
478     'key'         => 'cp_app',
479     'section'     => 'deprecated',
480     'description' => '<b>DEPRECATED</b>, add a <i>cp</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to integrate with <a href="http://www.cp.net/">Critial Path Account Provisioning Protocol</a>, four lines: "host:port", username, password, and workgroup (for new users).',
481     'type'        => 'textarea',
482   },
483
484   {
485     'key'         => 'deletecustomers',
486     'section'     => 'UI',
487     'description' => 'Enable customer deletions.  Be very careful!  Deleting a customer will remove all traces that the customer ever existed!  It should probably only be used when auditing a legacy database.  Normally, you cancel all of a customers\' packages if they cancel service.',
488     'type'        => 'checkbox',
489   },
490
491   {
492     'key'         => 'deleteinvoices',
493     'section'     => 'UI',
494     'description' => 'Enable invoices deletions.  Be very careful!  Deleting an invoice will remove all traces that the invoice ever existed!  Normally, you would apply a credit against the invoice instead.',  #invoice voiding?
495     'type'        => 'checkbox',
496   },
497
498   {
499     'key'         => 'deletepayments',
500     'section'     => 'billing',
501     'description' => 'Enable deletion of unclosed payments.  Really, with voids this is pretty much not recommended in any situation anymore.  Be very careful!  Only delete payments that were data-entry errors, not adjustments.  Optionally specify one or more comma-separated email addresses to be notified when a payment is deleted.',
502     'type'        => [qw( checkbox text )],
503   },
504
505   {
506     'key'         => 'deletecredits',
507     'section'     => 'deprecated',
508     'description' => '<B>DEPRECATED</B>, now controlled by ACLs.  Used to enable deletion of unclosed credits.  Be very careful!  Only delete credits that were data-entry errors, not adjustments.  Optionally specify one or more comma-separated email addresses to be notified when a credit is deleted.',
509     'type'        => [qw( checkbox text )],
510   },
511
512   {
513     'key'         => 'deleterefunds',
514     'section'     => 'billing',
515     'description' => 'Enable deletion of unclosed refunds.  Be very careful!  Only delete refunds that were data-entry errors, not adjustments.',
516     'type'        => 'checkbox',
517   },
518
519   {
520     'key'         => 'unapplypayments',
521     'section'     => 'deprecated',
522     'description' => '<B>DEPRECATED</B>, now controlled by ACLs.  Used to enable "unapplication" of unclosed payments.',
523     'type'        => 'checkbox',
524   },
525
526   {
527     'key'         => 'unapplycredits',
528     'section'     => 'deprecated',
529     'description' => '<B>DEPRECATED</B>, now controlled by ACLs.  Used to nable "unapplication" of unclosed credits.',
530     'type'        => 'checkbox',
531   },
532
533   {
534     'key'         => 'dirhash',
535     'section'     => 'shell',
536     'description' => 'Optional numeric value to control directory hashing.  If positive, hashes directories for the specified number of levels from the front of the username.  If negative, hashes directories for the specified number of levels from the end of the username.  Some examples: <ul><li>1: user -> <a href="#home">/home</a>/u/user<li>2: user -> <a href="#home">/home</a>/u/s/user<li>-1: user -> <a href="#home">/home</a>/r/user<li>-2: user -> <a href="#home">home</a>/r/e/user</ul>',
537     'type'        => 'text',
538   },
539
540   {
541     'key'         => 'disable_customer_referrals',
542     'section'     => 'UI',
543     'description' => 'Disable new customer-to-customer referrals in the web interface',
544     'type'        => 'checkbox',
545   },
546
547   {
548     'key'         => 'editreferrals',
549     'section'     => 'UI',
550     'description' => 'Enable advertising source modification for existing customers',
551     'type'       => 'checkbox',
552   },
553
554   {
555     'key'         => 'emailinvoiceonly',
556     'section'     => 'billing',
557     'description' => 'Disables postal mail invoices',
558     'type'       => 'checkbox',
559   },
560
561   {
562     'key'         => 'disablepostalinvoicedefault',
563     'section'     => 'billing',
564     'description' => 'Disables postal mail invoices as the default option in the UI.  Be careful not to setup customers which are not sent invoices.  See <a href ="#emailinvoiceauto">emailinvoiceauto</a>.',
565     'type'       => 'checkbox',
566   },
567
568   {
569     'key'         => 'emailinvoiceauto',
570     'section'     => 'billing',
571     'description' => 'Automatically adds new accounts to the email invoice list',
572     'type'       => 'checkbox',
573   },
574
575   {
576     'key'         => 'emailinvoiceautoalways',
577     'section'     => 'billing',
578     'description' => 'Automatically adds new accounts to the email invoice list even when the list contains email addresses',
579     'type'       => 'checkbox',
580   },
581
582   {
583     'key'         => 'exclude_ip_addr',
584     'section'     => '',
585     'description' => 'Exclude these from the list of available broadband service IP addresses. (One per line)',
586     'type'        => 'textarea',
587   },
588   
589   {
590     'key'         => 'erpcdmachines',
591     'section'     => 'deprecated',
592     'description' => '<b>DEPRECATED</b>, ERPCD is no longer supported.  Used to be ERPCD authentication machines, one per line.  This enables export of `/usr/annex/acp_passwd\' and `/usr/annex/acp_dialup\'',
593     'type'        => 'textarea',
594   },
595
596   {
597     'key'         => 'hidecancelledpackages',
598     'section'     => 'UI',
599     'description' => 'Prevent cancelled packages from showing up in listings (though they will still be in the database)',
600     'type'        => 'checkbox',
601   },
602
603   {
604     'key'         => 'hidecancelledcustomers',
605     'section'     => 'UI',
606     'description' => 'Prevent customers with only cancelled packages from showing up in listings (though they will still be in the database)',
607     'type'        => 'checkbox',
608   },
609
610   {
611     'key'         => 'home',
612     'section'     => 'required',
613     'description' => 'For new users, prefixed to username to create a directory name.  Should have a leading but not a trailing slash.',
614     'type'        => 'text',
615   },
616
617   {
618     'key'         => 'icradiusmachines',
619     'section'     => 'deprecated',
620     'description' => '<b>DEPRECATED</b>, add an <i>sqlradius</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to enable radcheck and radreply table population - by default in the Freeside database, or in the database specified by the <a href="http://rootwood.haze.st/aspside/config/config-view.cgi#icradius_secrets">icradius_secrets</a> config option (the radcheck and radreply tables needs to be created manually).  You do not need to use MySQL for your Freeside database to export to an ICRADIUS/FreeRADIUS MySQL database with this option.  <blockquote><b>ADDITIONAL DEPRECATED FUNCTIONALITY</b> (instead use <a href="http://www.mysql.com/documentation/mysql/bychapter/manual_MySQL_Database_Administration.html#Replication">MySQL replication</a> or point icradius_secrets to the external database) - your <a href="ftp://ftp.cheapnet.net/pub/icradius">ICRADIUS</a> machines or <a href="http://www.freeradius.org/">FreeRADIUS</a> (with MySQL authentication) machines, one per line.  Machines listed in this file will have the radcheck table exported to them.  Each line should contain four items, separted by whitespace: machine name, MySQL database name, MySQL username, and MySQL password.  For example: <CODE>"radius.isp.tld&nbsp;radius_db&nbsp;radius_user&nbsp;passw0rd"</CODE></blockquote>',
621     'type'        => [qw( checkbox textarea )],
622   },
623
624   {
625     'key'         => 'icradius_mysqldest',
626     'section'     => 'deprecated',
627     'description' => '<b>DEPRECATED</b>, add an <i>sqlradius</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to be the destination directory for the MySQL databases, on the ICRADIUS/FreeRADIUS machines.  Defaults to "/usr/local/var/".',
628     'type'        => 'text',
629   },
630
631   {
632     'key'         => 'icradius_mysqlsource',
633     'section'     => 'deprecated',
634     'description' => '<b>DEPRECATED</b>, add an <i>sqlradius</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to be the source directory for for the MySQL radcheck table files, on the Freeside machine.  Defaults to "/usr/local/var/freeside".',
635     'type'        => 'text',
636   },
637
638   {
639     'key'         => 'icradius_secrets',
640     'section'     => 'deprecated',
641     'description' => '<b>DEPRECATED</b>, add an <i>sqlradius</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to specify a database for ICRADIUS/FreeRADIUS export.  Three lines: DBI data source, username and password.',
642     'type'        => 'textarea',
643   },
644
645   {
646     'key'         => 'invoice_from',
647     'section'     => 'required',
648     'description' => 'Return address on email invoices',
649     'type'        => 'text',
650   },
651
652   {
653     'key'         => 'invoice_subject',
654     'section'     => 'billing',
655     'description' => 'Subject: header on email invoices.  Defaults to "Invoice".  The following substitutions are available: $name, $name_short, $invoice_number, and $invoice_date.',
656     'type'        => 'text',
657   },
658
659   {
660     'key'         => 'invoice_template',
661     'section'     => 'required',
662     'description' => 'Required template file for invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
663     'type'        => 'textarea',
664   },
665
666   {
667     'key'         => 'invoice_html',
668     'section'     => 'billing',
669     'description' => 'Optional HTML template for invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
670
671     'type'        => 'textarea',
672   },
673
674   {
675     'key'         => 'invoice_htmlnotes',
676     'section'     => 'billing',
677     'description' => 'Notes section for HTML invoices.  Defaults to the same data in invoice_latexnotes if not specified.',
678     'type'        => 'textarea',
679   },
680
681   {
682     'key'         => 'invoice_htmlfooter',
683     'section'     => 'billing',
684     'description' => 'Footer for HTML invoices.  Defaults to the same data in invoice_latexfooter if not specified.',
685     'type'        => 'textarea',
686   },
687
688   {
689     'key'         => 'invoice_htmlreturnaddress',
690     'section'     => 'billing',
691     'description' => 'Return address for HTML invoices.  Defaults to the same data in invoice_latexreturnaddress if not specified.',
692     'type'        => 'textarea',
693   },
694
695   {
696     'key'         => 'invoice_latex',
697     'section'     => 'billing',
698     'description' => 'Optional LaTeX template for typeset PostScript invoices.  See the <a href="../docs/billing.html">billing documentation</a> for details.',
699     'type'        => 'textarea',
700   },
701
702   {
703     'key'         => 'invoice_latexnotes',
704     'section'     => 'billing',
705     'description' => 'Notes section for LaTeX typeset PostScript invoices.',
706     'type'        => 'textarea',
707   },
708
709   {
710     'key'         => 'invoice_latexfooter',
711     'section'     => 'billing',
712     'description' => 'Footer for LaTeX typeset PostScript invoices.',
713     'type'        => 'textarea',
714   },
715
716   {
717     'key'         => 'invoice_latexcoupon',
718     'section'     => 'billing',
719     'description' => 'Remittance coupon for LaTeX typeset PostScript invoices.',
720     'type'        => 'textarea',
721   },
722
723   {
724     'key'         => 'invoice_latexreturnaddress',
725     'section'     => 'billing',
726     'description' => 'Return address for LaTeX typeset PostScript invoices.',
727     'type'        => 'textarea',
728   },
729
730   {
731     'key'         => 'invoice_latexsmallfooter',
732     'section'     => 'billing',
733     'description' => 'Optional small footer for multi-page LaTeX typeset PostScript invoices.',
734     'type'        => 'textarea',
735   },
736
737   {
738     'key'         => 'invoice_email_pdf',
739     'section'     => 'billing',
740     'description' => 'Send PDF invoice as an attachment to emailed invoices.  By default, includes the plain text invoice as the email body, unless invoice_email_pdf_note is set.',
741     'type'        => 'checkbox'
742   },
743
744   {
745     'key'         => 'invoice_email_pdf_note',
746     'section'     => 'billing',
747     'description' => 'If defined, this text will replace the default plain text invoice as the body of emailed PDF invoices.',
748     'type'        => 'textarea'
749   },
750
751
752   { 
753     'key'         => 'invoice_default_terms',
754     'section'     => 'billing',
755     'description' => 'Optional default invoice term, used to calculate a due date printed on invoices.',
756     'type'        => 'select',
757     'select_enum' => [ '', 'Payable upon receipt', 'Net 0', 'Net 10', 'Net 15', 'Net 30', 'Net 45', 'Net 60' ],
758   },
759
760   {
761     'key'         => 'invoice_send_receipts',
762     'section'     => 'deprecated',
763     'description' => '<b>DEPRECATED</b>, this used to send an invoice copy on payments and credits.  See the payment_receipt_email and XXXX instead.',
764     'type'        => 'checkbox',
765   },
766
767   {
768     'key'         => 'payment_receipt_email',
769     'section'     => 'billing',
770     'description' => 'Template file for payment receipts.  Payment receipts are sent to the customer email invoice destination(s) when a payment is received.  See the <a href="http://search.cpan.org/~mjd/Text-Template/lib/Text/Template.pm">Text::Template</a> documentation for details on the template substitution language.  The following variables are available: <ul><li><code>$date</code> <li><code>$name</code> <li><code>$paynum</code> - Freeside payment number <li><code>$paid</code> - Amount of payment <li><code>$payby</code> - Payment type (Card, Check, Electronic check, etc.) <li><code>$payinfo</code> - Masked credit card number or check number <li><code>$balance</code> - New balance</ul>',
771     'type'        => [qw( checkbox textarea )],
772   },
773
774   {
775     'key'         => 'lpr',
776     'section'     => 'required',
777     'description' => 'Print command for paper invoices, for example `lpr -h\'',
778     'type'        => 'text',
779   },
780
781   {
782     'key'         => 'maildisablecatchall',
783     'section'     => 'deprecated',
784     'description' => '<b>DEPRECATED</b>, now the default.  Turning this option on used to disable the requirement that each virtual domain have a catch-all mailbox.',
785     'type'        => 'checkbox',
786   },
787
788   {
789     'key'         => 'lpr-postscript_prefix',
790     'section'     => 'billing',
791     'description' => 'Raw printer commands prepended to the beginning of postscript print jobs (evaluated as a double-quoted perl string - backslash escapes are available)',
792     'type'        => 'text',
793   },
794
795   {
796     'key'         => 'lpr-postscript_suffix',
797     'section'     => 'billing',
798     'description' => 'Raw printer commands added to the end of postscript print jobs (evaluated as a double-quoted perl string - backslash escapes are available)',
799     'type'        => 'text',
800   },
801
802   {
803     'key'         => 'money_char',
804     'section'     => '',
805     'description' => 'Currency symbol - defaults to `$\'',
806     'type'        => 'text',
807   },
808
809   {
810     'key'         => 'mxmachines',
811     'section'     => 'deprecated',
812     'description' => 'MX entries for new domains, weight and machine, one per line, with trailing `.\'',
813     'type'        => 'textarea',
814   },
815
816   {
817     'key'         => 'nsmachines',
818     'section'     => 'deprecated',
819     'description' => 'NS nameservers for new domains, one per line, with trailing `.\'',
820     'type'        => 'textarea',
821   },
822
823   {
824     'key'         => 'defaultrecords',
825     'section'     => 'BIND',
826     'description' => 'DNS entries to add automatically when creating a domain',
827     'type'        => 'editlist',
828     'editlist_parts' => [ { type=>'text' },
829                           { type=>'immutable', value=>'IN' },
830                           { type=>'select',
831                             select_enum=>{ map { $_=>$_ } qw(A CNAME MX NS TXT)} },
832                           { type=> 'text' }, ],
833   },
834
835   {
836     'key'         => 'arecords',
837     'section'     => 'deprecated',
838     'description' => 'A list of tab seperated CNAME records to add automatically when creating a domain',
839     'type'        => 'textarea',
840   },
841
842   {
843     'key'         => 'cnamerecords',
844     'section'     => 'deprecated',
845     'description' => 'A list of tab seperated CNAME records to add automatically when creating a domain',
846     'type'        => 'textarea',
847   },
848
849   {
850     'key'         => 'nismachines',
851     'section'     => 'deprecated',
852     'description' => '<b>DEPRECATED</b>.  Your NIS master (not slave master) machines, one per line.  This enables export of `/etc/global/passwd\' and `/etc/global/shadow\'.',
853     'type'        => 'textarea',
854   },
855
856   {
857     'key'         => 'passwordmin',
858     'section'     => 'password',
859     'description' => 'Minimum password length (default 6)',
860     'type'        => 'text',
861   },
862
863   {
864     'key'         => 'passwordmax',
865     'section'     => 'password',
866     'description' => 'Maximum password length (default 8) (don\'t set this over 12 if you need to import or export crypt() passwords)',
867     'type'        => 'text',
868   },
869
870   {
871     'key' => 'password-noampersand',
872     'section' => 'password',
873     'description' => 'Disallow ampersands in passwords',
874     'type' => 'checkbox',
875   },
876
877   {
878     'key' => 'password-noexclamation',
879     'section' => 'password',
880     'description' => 'Disallow exclamations in passwords (Not setting this could break old text Livingston or Cistron Radius servers)',
881     'type' => 'checkbox',
882   },
883
884   {
885     'key'         => 'qmailmachines',
886     'section'     => 'deprecated',
887     'description' => '<b>DEPRECATED</b>, add <i>qmail</i> and <i>shellcommands</i> <a href="../browse/part_export.cgi">exports</a> instead.  This option used to export `/var/qmail/control/virtualdomains\', `/var/qmail/control/recipientmap\', and `/var/qmail/control/rcpthosts\'.  Setting this option (even if empty) also turns on user `.qmail-extension\' file maintenance in conjunction with the <b>shellmachine</b> option.',
888     'type'        => [qw( checkbox textarea )],
889   },
890
891   {
892     'key'         => 'radiusmachines',
893     'section'     => 'deprecated',
894     'description' => '<b>DEPRECATED</b>, add an <i>sqlradius</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to export to be: your RADIUS authentication machines, one per line.  This enables export of `/etc/raddb/users\'.',
895     'type'        => 'textarea',
896   },
897
898   {
899     'key'         => 'referraldefault',
900     'section'     => 'UI',
901     'description' => 'Default referral, specified by refnum',
902     'type'        => 'text',
903   },
904
905 #  {
906 #    'key'         => 'registries',
907 #    'section'     => 'required',
908 #    'description' => 'Directory which contains domain registry information.  Each registry is a directory.',
909 #  },
910
911   {
912     'key'         => 'report_template',
913     'section'     => 'deprecated',
914     'description' => 'Deprecated template file for reports.',
915     'type'        => 'textarea',
916   },
917
918
919   {
920     'key'         => 'maxsearchrecordsperpage',
921     'section'     => 'UI',
922     'description' => 'If set, number of search records to return per page.',
923     'type'        => 'text',
924   },
925
926   {
927     'key'         => 'sendmailconfigpath',
928     'section'     => 'deprecated',
929     'description' => '<b>DEPRECATED</b>, add a <i>sendmail</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to be sendmail configuration file path.  Defaults to `/etc\'.  Many newer distributions use `/etc/mail\'.',
930     'type'        => 'text',
931   },
932
933   {
934     'key'         => 'sendmailmachines',
935     'section'     => 'deprecated',
936     'description' => '<b>DEPRECATED</b>, add a <i>sendmail</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to be sendmail machines, one per line.  This enables export of `/etc/virtusertable\' and `/etc/sendmail.cw\'.',
937     'type'        => 'textarea',
938   },
939
940   {
941     'key'         => 'sendmailrestart',
942     'section'     => 'deprecated',
943     'description' => '<b>DEPRECATED</b>, add a <i>sendmail</i> <a href="../browse/part_export.cgi">export</a> instead.  Used to define the command which is run on sendmail machines after files are copied.',
944     'type'        => 'text',
945   },
946
947   {
948     'key'         => 'session-start',
949     'section'     => 'session',
950     'description' => 'If defined, the command which is executed on the Freeside machine when a session begins.  The contents of the file are treated as a double-quoted perl string, with the following variables available: <code>$ip</code>, <code>$nasip</code> and <code>$nasfqdn</code>, which are the IP address of the starting session, and the IP address and fully-qualified domain name of the NAS this session is on.',
951     'type'        => 'text',
952   },
953
954   {
955     'key'         => 'session-stop',
956     'section'     => 'session',
957     'description' => 'If defined, the command which is executed on the Freeside machine when a session ends.  The contents of the file are treated as a double-quoted perl string, with the following variables available: <code>$ip</code>, <code>$nasip</code> and <code>$nasfqdn</code>, which are the IP address of the starting session, and the IP address and fully-qualified domain name of the NAS this session is on.',
958     'type'        => 'text',
959   },
960
961   {
962     'key'         => 'shellmachine',
963     'section'     => 'deprecated',
964     'description' => '<b>DEPRECATED</b>, add a <i>shellcommands</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to contain a single machine with user home directories mounted.  This enables home directory creation, renaming and archiving/deletion.  In conjunction with `qmailmachines\', it also enables `.qmail-extension\' file maintenance.',
965     'type'        => 'text',
966   },
967
968   {
969     'key'         => 'shellmachine-useradd',
970     'section'     => 'deprecated',
971     'description' => '<b>DEPRECATED</b>, add a <i>shellcommands</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to contain command(s) to run on shellmachine when an account is created.  If the <b>shellmachine</b> option is set but this option is not, <code>useradd -d $dir -m -s $shell -u $uid $username</code> is the default.  If this option is set but empty, <code>cp -pr /etc/skel $dir; chown -R $uid.$gid $dir</code> is the default instead.  Otherwise the value is evaluated as a double-quoted perl string, with the following variables available: <code>$username</code>, <code>$uid</code>, <code>$gid</code>, <code>$dir</code>, and <code>$shell</code>.',
972     'type'        => [qw( checkbox text )],
973   },
974
975   {
976     'key'         => 'shellmachine-userdel',
977     'section'     => 'deprecated',
978     'description' => '<b>DEPRECATED</b>, add a <i>shellcommands</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to contain command(s) to run on shellmachine when an account is deleted.  If the <b>shellmachine</b> option is set but this option is not, <code>userdel $username</code> is the default.  If this option is set but empty, <code>rm -rf $dir</code> is the default instead.  Otherwise the value is evaluated as a double-quoted perl string, with the following variables available: <code>$username</code> and <code>$dir</code>.',
979     'type'        => [qw( checkbox text )],
980   },
981
982   {
983     'key'         => 'shellmachine-usermod',
984     'section'     => 'deprecated',
985     'description' => '<b>DEPRECATED</b>, add a <i>shellcommands</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to contain command(s) to run on shellmachine when an account is modified.  If the <b>shellmachine</b> option is set but this option is empty, <code>[ -d $old_dir ] &amp;&amp; mv $old_dir $new_dir || ( chmod u+t $old_dir; mkdir $new_dir; cd $old_dir; find . -depth -print | cpio -pdm $new_dir; chmod u-t $new_dir; chown -R $uid.$gid $new_dir; rm -rf $old_dir )</code> is the default.  Otherwise the contents of the file are treated as a double-quoted perl string, with the following variables available: <code>$old_dir</code>, <code>$new_dir</code>, <code>$uid</code> and <code>$gid</code>.',
986     #'type'        => [qw( checkbox text )],
987     'type'        => 'text',
988   },
989
990   {
991     'key'         => 'shellmachines',
992     'section'     => 'deprecated',
993     'description' => '<b>DEPRECATED</b>, add a <i>sysvshell</i> <a href="../browse/part_export.cgi">export</a> instead.  Your Linux and System V flavored shell (and mail) machines, one per line.  This enables export of `/etc/passwd\' and `/etc/shadow\' files.',
994      'type'        => 'textarea',
995  },
996
997   {
998     'key'         => 'shells',
999     'section'     => 'required',
1000     'description' => 'Legal shells (think /etc/shells).  You probably want to `cut -d: -f7 /etc/passwd | sort | uniq\' initially so that importing doesn\'t fail with `Illegal shell\' errors, then remove any special entries afterwords.  A blank line specifies that an empty shell is permitted.',
1001     'type'        => 'textarea',
1002   },
1003
1004   {
1005     'key'         => 'showpasswords',
1006     'section'     => 'UI',
1007     'description' => 'Display unencrypted user passwords in the backend (employee) web interface',
1008     'type'        => 'checkbox',
1009   },
1010
1011   {
1012     'key'         => 'signupurl',
1013     'section'     => 'UI',
1014     'description' => 'if you are using customer-to-customer referrals, and you enter the URL of your <a href="../docs/signup.html">signup server CGI</a>, the customer view screen will display a customized link to the signup server with the appropriate customer as referral',
1015     'type'        => 'text',
1016   },
1017
1018   {
1019     'key'         => 'smtpmachine',
1020     'section'     => 'required',
1021     'description' => 'SMTP relay for Freeside\'s outgoing mail',
1022     'type'        => 'text',
1023   },
1024
1025   {
1026     'key'         => 'soadefaultttl',
1027     'section'     => 'BIND',
1028     'description' => 'SOA default TTL for new domains.',
1029     'type'        => 'text',
1030   },
1031
1032   {
1033     'key'         => 'soaemail',
1034     'section'     => 'BIND',
1035     'description' => 'SOA email for new domains, in BIND form (`.\' instead of `@\'), with trailing `.\'',
1036     'type'        => 'text',
1037   },
1038
1039   {
1040     'key'         => 'soaexpire',
1041     'section'     => 'BIND',
1042     'description' => 'SOA expire for new domains',
1043     'type'        => 'text',
1044   },
1045
1046   {
1047     'key'         => 'soamachine',
1048     'section'     => 'BIND',
1049     'description' => 'SOA machine for new domains, with trailing `.\'',
1050     'type'        => 'text',
1051   },
1052
1053   {
1054     'key'         => 'soarefresh',
1055     'section'     => 'BIND',
1056     'description' => 'SOA refresh for new domains',
1057     'type'        => 'text',
1058   },
1059
1060   {
1061     'key'         => 'soaretry',
1062     'section'     => 'BIND',
1063     'description' => 'SOA retry for new domains',
1064     'type'        => 'text',
1065   },
1066
1067   {
1068     'key'         => 'statedefault',
1069     'section'     => 'UI',
1070     'description' => 'Default state or province (if not supplied, the default is `CA\')',
1071     'type'        => 'text',
1072   },
1073
1074   {
1075     'key'         => 'radiusprepend',
1076     'section'     => 'deprecated',
1077     'description' => '<b>DEPRECATED</b>, real-time text radius now edits an existing file in place - just (turn off freeside-queued and) edit your RADIUS users file directly.  The contents used to be be prepended to the top of the RADIUS users file (text exports only).',
1078     'type'        => 'textarea',
1079   },
1080
1081   {
1082     'key'         => 'textradiusprepend',
1083     'section'     => 'deprecated',
1084     'description' => '<b>DEPRECATED</b>, use RADIUS check attributes instead.  The contents used to be prepended to the first line of a user\'s RADIUS entry in text exports.',
1085     'type'        => 'text',
1086   },
1087
1088   {
1089     'key'         => 'unsuspendauto',
1090     'section'     => 'billing',
1091     'description' => 'Enables the automatic unsuspension of suspended packages when a customer\'s balance due changes from positive to zero or negative as the result of a payment or credit',
1092     'type'        => 'checkbox',
1093   },
1094
1095   {
1096     'key'         => 'unsuspend-always_adjust_next_bill_date',
1097     'section'     => 'billing',
1098     'description' => 'Global override that causes unsuspensions to always adjust the next bill date under any circumstances.  This is now controlled on a per-package bases - probably best not to use this option unless you are a legacy installation that requires this behaviour.',
1099     'type'        => 'checkbox',
1100   },
1101
1102   {
1103     'key'         => 'usernamemin',
1104     'section'     => 'username',
1105     'description' => 'Minimum username length (default 2)',
1106     'type'        => 'text',
1107   },
1108
1109   {
1110     'key'         => 'usernamemax',
1111     'section'     => 'username',
1112     'description' => 'Maximum username length',
1113     'type'        => 'text',
1114   },
1115
1116   {
1117     'key'         => 'username-ampersand',
1118     'section'     => 'username',
1119     'description' => 'Allow the ampersand character (&amp;) in usernames.  Be careful when using this option in conjunction with <a href="../browse/part_export.cgi">exports</a> which execute shell commands, as the ampersand will be interpreted by the shell if not quoted.',
1120     'type'        => 'checkbox',
1121   },
1122
1123   {
1124     'key'         => 'username-letter',
1125     'section'     => 'username',
1126     'description' => 'Usernames must contain at least one letter',
1127     'type'        => 'checkbox',
1128   },
1129
1130   {
1131     'key'         => 'username-letterfirst',
1132     'section'     => 'username',
1133     'description' => 'Usernames must start with a letter',
1134     'type'        => 'checkbox',
1135   },
1136
1137   {
1138     'key'         => 'username-noperiod',
1139     'section'     => 'username',
1140     'description' => 'Disallow periods in usernames',
1141     'type'        => 'checkbox',
1142   },
1143
1144   {
1145     'key'         => 'username-nounderscore',
1146     'section'     => 'username',
1147     'description' => 'Disallow underscores in usernames',
1148     'type'        => 'checkbox',
1149   },
1150
1151   {
1152     'key'         => 'username-nodash',
1153     'section'     => 'username',
1154     'description' => 'Disallow dashes in usernames',
1155     'type'        => 'checkbox',
1156   },
1157
1158   {
1159     'key'         => 'username-uppercase',
1160     'section'     => 'username',
1161     'description' => 'Allow uppercase characters in usernames',
1162     'type'        => 'checkbox',
1163   },
1164
1165   { 
1166     'key'         => 'username-percent',
1167     'section'     => 'username',
1168     'description' => 'Allow the percent character (%) in usernames.',
1169     'type'        => 'checkbox',
1170   },
1171
1172   {
1173     'key'         => 'username_policy',
1174     'section'     => 'deprecated',
1175     'description' => 'This file controls the mechanism for preventing duplicate usernames in passwd/radius files exported from svc_accts.  This should be one of \'prepend domsvc\' \'append domsvc\' \'append domain\' or \'append @domain\'',
1176     'type'        => 'select',
1177     'select_enum' => [ 'prepend domsvc', 'append domsvc', 'append domain', 'append @domain' ],
1178     #'type'        => 'text',
1179   },
1180
1181   {
1182     'key'         => 'vpopmailmachines',
1183     'section'     => 'deprecated',
1184     'description' => '<b>DEPRECATED</b>, add a <i>vpopmail</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to contain your vpopmail pop toasters, one per line.  Each line is of the form "machinename vpopdir vpopuid vpopgid".  For example: <code>poptoaster.domain.tld /home/vpopmail 508 508</code>  Note: vpopuid and vpopgid are values taken from the vpopmail machine\'s /etc/passwd',
1185     'type'        => 'textarea',
1186   },
1187
1188   {
1189     'key'         => 'vpopmailrestart',
1190     'section'     => 'deprecated',
1191     'description' => '<b>DEPRECATED</b>, add a <i>vpopmail</i> <a href="../browse/part_export.cgi">export</a> instead.  This option used to define the shell commands to run on vpopmail machines after files are copied.  An example can be found in eg/vpopmailrestart of the source distribution.',
1192     'type'        => 'textarea',
1193   },
1194
1195   {
1196     'key'         => 'safe-part_pkg',
1197     'section'     => 'deprecated',
1198     'description' => '<b>DEPRECATED</b>, obsolete.  Used to validate package definition setup and recur expressions against a preset list.  Useful for webdemos, annoying to powerusers.',
1199     'type'        => 'checkbox',
1200   },
1201
1202   { 
1203     'key'         => 'username-colon',
1204     'section'     => 'username',
1205     'description' => 'Allow the colon character (:) in usernames.',
1206     'type'        => 'checkbox',
1207   },
1208
1209   {
1210     'key'         => 'safe-part_bill_event',
1211     'section'     => 'UI',
1212     'description' => 'Validates invoice event expressions against a preset list.  Useful for webdemos, annoying to powerusers.',
1213     'type'        => 'checkbox',
1214   },
1215
1216   {
1217     'key'         => 'show_ss',
1218     'section'     => 'UI',
1219     'description' => 'Turns on display/collection of SS# in the web interface.',
1220     'type'        => 'checkbox',
1221   },
1222
1223   { 
1224     'key'         => 'show_stateid',
1225     'section'     => 'UI',
1226     'description' => "Turns on display/collection of driver's license/state issued id numbers in the web interface.  Sometimes required by electronic check (ACH) processors.",
1227     'type'        => 'checkbox',
1228   },
1229
1230   {
1231     'key'         => 'show_bankstate',
1232     'section'     => 'UI',
1233     'description' => "Turns on display/collection of state for bank accounts in the web interface.  Sometimes required by electronic check (ACH) processors.",
1234     'type'        => 'checkbox',
1235   },
1236
1237   { 
1238     'key'         => 'agent_defaultpkg',
1239     'section'     => 'UI',
1240     'description' => 'Setting this option will cause new packages to be available to all agent types by default.',
1241     'type'        => 'checkbox',
1242   },
1243
1244   {
1245     'key'         => 'legacy_link',
1246     'section'     => 'UI',
1247     'description' => 'Display options in the web interface to link legacy pre-Freeside services.',
1248     'type'        => 'checkbox',
1249   },
1250
1251   {
1252     'key'         => 'legacy_link-steal',
1253     'section'     => 'UI',
1254     'description' => 'Allow "stealing" an already-audited service from one customer (or package) to another using the link function.',
1255     'type'        => 'checkbox',
1256   },
1257
1258   {
1259     'key'         => 'queue_dangerous_controls',
1260     'section'     => 'UI',
1261     'description' => 'Enable queue modification controls on account pages and for new jobs.  Unless you are a developer working on new export code, you should probably leave this off to avoid causing provisioning problems.',
1262     'type'        => 'checkbox',
1263   },
1264
1265   {
1266     'key'         => 'security_phrase',
1267     'section'     => 'password',
1268     'description' => 'Enable the tracking of a "security phrase" with each account.  Not recommended, as it is vulnerable to social engineering.',
1269     'type'        => 'checkbox',
1270   },
1271
1272   {
1273     'key'         => 'locale',
1274     'section'     => 'UI',
1275     'description' => 'Message locale',
1276     'type'        => 'select',
1277     'select_enum' => [ qw(en_US) ],
1278   },
1279
1280   {
1281     'key'         => 'selfservice_server-quiet',
1282     'section'     => 'deprecated',
1283     'description' => '<b>DEPRECATED</b>, the self-service server no longer sends superfluous decline and cancel emails.  Used to disable decline and cancel emails generated by transactions initiated by the selfservice server.',
1284     'type'        => 'checkbox',
1285   },
1286
1287   {
1288     'key'         => 'signup_server-quiet',
1289     'section'     => 'deprecated',
1290     'description' => '<b>DEPRECATED</b>, the signup server is now part of the self-service server and no longer sends superfluous decline and cancel emails.  Used to disable decline and cancel emails generated by transactions initiated by the signup server.  Does not disable welcome emails.',
1291     'type'        => 'checkbox',
1292   },
1293
1294   {
1295     'key'         => 'signup_server-payby',
1296     'section'     => '',
1297     'description' => 'Acceptable payment types for the signup server',
1298     'type'        => 'selectmultiple',
1299     'select_enum' => [ qw(CARD DCRD CHEK DCHK LECB PREPAY BILL COMP) ],
1300   },
1301
1302   {
1303     'key'         => 'signup_server-email',
1304     'section'     => 'deprecated',
1305     'description' => '<b>DEPRECATED</b>, this feature is no longer available.  See the ***fill me in*** report instead.  Used to contain a comma-separated list of email addresses to receive notification of signups via the signup server.',
1306     'type'        => 'text',
1307   },
1308
1309   {
1310     'key'         => 'signup_server-default_agentnum',
1311     'section'     => '',
1312     'description' => 'Default agent for the signup server',
1313     'type'        => 'select-sub',
1314     'options_sub' => sub { require FS::Record;
1315                            require FS::agent;
1316                            map { $_->agentnum => $_->agent }
1317                                FS::Record::qsearch('agent', { disabled=>'' } );
1318                          },
1319     'option_sub'  => sub { require FS::Record;
1320                            require FS::agent;
1321                            my $agent = FS::Record::qsearchs(
1322                              'agent', { 'agentnum'=>shift }
1323                            );
1324                            $agent ? $agent->agent : '';
1325                          },
1326   },
1327
1328   {
1329     'key'         => 'signup_server-default_refnum',
1330     'section'     => '',
1331     'description' => 'Default advertising source for the signup server',
1332     'type'        => 'select-sub',
1333     'options_sub' => sub { require FS::Record;
1334                            require FS::part_referral;
1335                            map { $_->refnum => $_->referral }
1336                                FS::Record::qsearch( 'part_referral', 
1337                                                     { 'disabled' => '' }
1338                                                   );
1339                          },
1340     'option_sub'  => sub { require FS::Record;
1341                            require FS::part_referral;
1342                            my $part_referral = FS::Record::qsearchs(
1343                              'part_referral', { 'refnum'=>shift } );
1344                            $part_referral ? $part_referral->referral : '';
1345                          },
1346   },
1347
1348   {
1349     'key'         => 'signup_server-default_pkgpart',
1350     'section'     => '',
1351     'description' => 'Default pakcage for the signup server',
1352     'type'        => 'select-sub',
1353     'options_sub' => sub { require FS::Record;
1354                            require FS::part_pkg;
1355                            map { $_->pkgpart => $_->pkg.' - '.$_->comment }
1356                                FS::Record::qsearch( 'part_pkg',
1357                                                     { 'disabled' => ''}
1358                                                   );
1359                          },
1360     'option_sub'  => sub { require FS::Record;
1361                            require FS::part_pkg;
1362                            my $part_pkg = FS::Record::qsearchs(
1363                              'part_pkg', { 'pkgpart'=>shift }
1364                            );
1365                            $part_pkg
1366                              ? $part_pkg->pkg.' - '.$part_pkg->comment
1367                              : '';
1368                          },
1369   },
1370
1371   {
1372     'key'         => 'show-msgcat-codes',
1373     'section'     => 'UI',
1374     'description' => 'Show msgcat codes in error messages.  Turn this option on before reporting errors to the mailing list.',
1375     'type'        => 'checkbox',
1376   },
1377
1378   {
1379     'key'         => 'signup_server-realtime',
1380     'section'     => '',
1381     'description' => 'Run billing for signup server signups immediately, and do not provision accounts which subsequently have a balance.',
1382     'type'        => 'checkbox',
1383   },
1384   {
1385     'key'         => 'signup_server-classnum2',
1386     'section'     => '',
1387     'description' => 'Package Class for first optional purchase',
1388     'type'        => 'select-sub',
1389     'options_sub' => sub { require FS::Record;
1390                            require FS::pkg_class;
1391                            map { $_->classnum => $_->classname }
1392                                FS::Record::qsearch('pkg_class', {} );
1393                          },
1394     'option_sub'  => sub { require FS::Record;
1395                            require FS::pkg_class;
1396                            my $pkg_class = FS::Record::qsearchs(
1397                              'pkg_class', { 'classnum'=>shift }
1398                            );
1399                            $pkg_class ? $pkg_class->classname : '';
1400                          },
1401   },
1402
1403   {
1404     'key'         => 'signup_server-classnum3',
1405     'section'     => '',
1406     'description' => 'Package Class for second optional purchase',
1407     'type'        => 'select-sub',
1408     'options_sub' => sub { require FS::Record;
1409                            require FS::pkg_class;
1410                            map { $_->classnum => $_->classname }
1411                                FS::Record::qsearch('pkg_class', {} );
1412                          },
1413     'option_sub'  => sub { require FS::Record;
1414                            require FS::pkg_class;
1415                            my $pkg_class = FS::Record::qsearchs(
1416                              'pkg_class', { 'classnum'=>shift }
1417                            );
1418                            $pkg_class ? $pkg_class->classname : '';
1419                          },
1420   },
1421
1422   {
1423     'key'         => 'backend-realtime',
1424     'section'     => '',
1425     'description' => 'Run billing for backend signups immediately.',
1426     'type'        => 'checkbox',
1427   },
1428
1429   {
1430     'key'         => 'declinetemplate',
1431     'section'     => 'billing',
1432     'description' => 'Template file for credit card decline emails.',
1433     'type'        => 'textarea',
1434   },
1435
1436   {
1437     'key'         => 'emaildecline',
1438     'section'     => 'billing',
1439     'description' => 'Enable emailing of credit card decline notices.',
1440     'type'        => 'checkbox',
1441   },
1442
1443   {
1444     'key'         => 'emaildecline-exclude',
1445     'section'     => 'billing',
1446     'description' => 'List of error messages that should not trigger email decline notices, one per line.',
1447     'type'        => 'textarea',
1448   },
1449
1450   {
1451     'key'         => 'cancelmessage',
1452     'section'     => 'billing',
1453     'description' => 'Template file for cancellation emails.',
1454     'type'        => 'textarea',
1455   },
1456
1457   {
1458     'key'         => 'cancelsubject',
1459     'section'     => 'billing',
1460     'description' => 'Subject line for cancellation emails.',
1461     'type'        => 'text',
1462   },
1463
1464   {
1465     'key'         => 'emailcancel',
1466     'section'     => 'billing',
1467     'description' => 'Enable emailing of cancellation notices.',
1468     'type'        => 'checkbox',
1469   },
1470
1471   {
1472     'key'         => 'require_cardname',
1473     'section'     => 'billing',
1474     'description' => 'Require an "Exact name on card" to be entered explicitly; don\'t default to using the first and last name.',
1475     'type'        => 'checkbox',
1476   },
1477
1478   {
1479     'key'         => 'enable_taxclasses',
1480     'section'     => 'billing',
1481     'description' => 'Enable per-package tax classes',
1482     'type'        => 'checkbox',
1483   },
1484
1485   {
1486     'key'         => 'require_taxclasses',
1487     'section'     => 'billing',
1488     'description' => 'Require a taxclass to be entered for every package',
1489     'type'        => 'checkbox',
1490   },
1491
1492   {
1493     'key'         => 'welcome_email',
1494     'section'     => '',
1495     'description' => 'Template file for welcome email.  Welcome emails are sent to the customer email invoice destination(s) each time a svc_acct record is created.  See the <a href="http://search.cpan.org/~mjd/Text-Template/lib/Text/Template.pm">Text::Template</a> documentation for details on the template substitution language.  The following variables are available<ul><li><code>$username</code> <li><code>$password</code> <li><code>$first</code> <li><code>$last</code> <li><code>$pkg</code></ul>',
1496     'type'        => 'textarea',
1497   },
1498
1499   {
1500     'key'         => 'welcome_email-from',
1501     'section'     => '',
1502     'description' => 'From: address header for welcome email',
1503     'type'        => 'text',
1504   },
1505
1506   {
1507     'key'         => 'welcome_email-subject',
1508     'section'     => '',
1509     'description' => 'Subject: header for welcome email',
1510     'type'        => 'text',
1511   },
1512   
1513   {
1514     'key'         => 'welcome_email-mimetype',
1515     'section'     => '',
1516     'description' => 'MIME type for welcome email',
1517     'type'        => 'select',
1518     'select_enum' => [ 'text/plain', 'text/html' ],
1519   },
1520
1521   {
1522     'key'         => 'welcome_letter',
1523     'section'     => '',
1524     'description' => 'Optional LaTex template file for a printed welcome letter.  A welcome letter is printed the first time a cust_pkg record is created.  See the <a href="http://search.cpan.org/~mjd/Text-Template/lib/Text/Template.pm">Text::Template</a> documentation and the billing documentation for details on the template substitution language.  A variable exists for each fieldname in the customer record (<code>$first, $last, etc</code>).  The following additional variables are available<ul><li><code>$payby</code> - a friendler represenation of the field<li><code>$payinfo</code> - the masked payment information<li><code>$expdate</code> - the time at which the payment method expires (a UNIX timestamp)<li><code>$returnaddress</code> - the invoice return address for this customer\'s agent</ul>',
1525     'type'        => 'textarea',
1526   },
1527
1528   {
1529     'key'         => 'warning_email',
1530     'section'     => '',
1531     'description' => 'Template file for warning email.  Warning emails are sent to the customer email invoice destination(s) each time a svc_acct record has its usage drop below a threshold or 0.  See the <a href="http://search.cpan.org/~mjd/Text-Template/lib/Text/Template.pm">Text::Template</a> documentation for details on the template substitution language.  The following variables are available<ul><li><code>$username</code> <li><code>$password</code> <li><code>$first</code> <li><code>$last</code> <li><code>$pkg</code> <li><code>$column</code> <li><code>$amount</code> <li><code>$threshold</code></ul>',
1532     'type'        => 'textarea',
1533   },
1534
1535   {
1536     'key'         => 'warning_email-from',
1537     'section'     => '',
1538     'description' => 'From: address header for warning email',
1539     'type'        => 'text',
1540   },
1541
1542   {
1543     'key'         => 'warning_email-cc',
1544     'section'     => '',
1545     'description' => 'Additional recipient(s) (comma separated) for warning email when remaining usage reaches zero.',
1546     'type'        => 'text',
1547   },
1548
1549   {
1550     'key'         => 'warning_email-subject',
1551     'section'     => '',
1552     'description' => 'Subject: header for warning email',
1553     'type'        => 'text',
1554   },
1555   
1556   {
1557     'key'         => 'warning_email-mimetype',
1558     'section'     => '',
1559     'description' => 'MIME type for warning email',
1560     'type'        => 'select',
1561     'select_enum' => [ 'text/plain', 'text/html' ],
1562   },
1563
1564   {
1565     'key'         => 'payby',
1566     'section'     => 'billing',
1567     'description' => 'Available payment types.',
1568     'type'        => 'selectmultiple',
1569     'select_enum' => [ qw(CARD DCRD CHEK DCHK LECB BILL CASH WEST MCRD COMP) ],
1570   },
1571
1572   {
1573     'key'         => 'payby-default',
1574     'section'     => 'UI',
1575     'description' => 'Default payment type.  HIDE disables display of billing information and sets customers to BILL.',
1576     'type'        => 'select',
1577     'select_enum' => [ '', qw(CARD DCRD CHEK DCHK LECB BILL CASH WEST MCRD COMP HIDE) ],
1578   },
1579
1580   {
1581     'key'         => 'paymentforcedtobatch',
1582     'section'     => 'deprecated',
1583     'description' => 'See batch-enable_payby and realtime-disable_payby.  Used to (for CHEK): Cause per customer payment entry to be forced to a batch processor rather than performed realtime.',
1584     'type'        => 'checkbox',
1585   },
1586
1587   {
1588     'key'         => 'svc_acct-notes',
1589     'section'     => 'UI',
1590     'description' => 'Extra HTML to be displayed on the Account View screen.',
1591     'type'        => 'textarea',
1592   },
1593
1594   {
1595     'key'         => 'radius-password',
1596     'section'     => '',
1597     'description' => 'RADIUS attribute for plain-text passwords.',
1598     'type'        => 'select',
1599     'select_enum' => [ 'Password', 'User-Password' ],
1600   },
1601
1602   {
1603     'key'         => 'radius-ip',
1604     'section'     => '',
1605     'description' => 'RADIUS attribute for IP addresses.',
1606     'type'        => 'select',
1607     'select_enum' => [ 'Framed-IP-Address', 'Framed-Address' ],
1608   },
1609
1610   #http://dev.coova.org/svn/coova-chilli/doc/dictionary.chillispot
1611   {
1612     'key'         => 'radius-chillispot-max',
1613     'section'     => '',
1614     'description' => 'Enable ChilliSpot (and CoovaChilli) Max attributes, specifically ChilliSpot-Max-{Input,Output,Total}-{Octets,Gigawords}.',
1615     'type'        => 'checkbox',
1616   },
1617
1618   {
1619     'key'         => 'svc_acct-alldomains',
1620     'section'     => '',
1621     'description' => 'Allow accounts to select any domain in the database.  Normally accounts can only select from the domain set in the service definition and those purchased by the customer.',
1622     'type'        => 'checkbox',
1623   },
1624
1625   {
1626     'key'         => 'dump-scpdest',
1627     'section'     => '',
1628     'description' => 'destination for scp database dumps: user@host:/path',
1629     'type'        => 'text',
1630   },
1631
1632   {
1633     'key'         => 'dump-pgpid',
1634     'section'     => '',
1635     'description' => "Optional PGP public key user or key id for database dumps.  The public key should exist on the freeside user's public keyring, and the gpg binary and GnuPG perl module should be installed.",
1636     'type'        => 'text',
1637   },
1638
1639   {
1640     'key'         => 'users-allow_comp',
1641     'section'     => 'deprecated',
1642     'description' => '<b>DEPRECATED</b>, enable the <i>Complimentary customer</i> access right instead.  Was: Usernames (Freeside users, created with <a href="../docs/man/bin/freeside-adduser.html">freeside-adduser</a>) which can create complimentary customers, one per line.  If no usernames are entered, all users can create complimentary accounts.',
1643     'type'        => 'textarea',
1644   },
1645
1646   {
1647     'key'         => 'credit_card-recurring_billing_flag',
1648     'section'     => 'billing',
1649     'description' => 'This controls when the system passes the "recurring_billing" flag on credit card transactions.  If supported by your processor (and the Business::OnlinePayment processor module), passing the flag indicates this is a recurring transaction and may turn off the CVV requirement. ',
1650     'type'        => 'select',
1651     'select_hash' => [
1652                        'actual_oncard' => 'Default/classic behavior: set the flag if a customer has actual previous charges on the card.',
1653                        'transaction_is_recur' => 'Set the flag if the transaction itself is recurring, irregardless of previous charges on the card.',
1654                      ],
1655   },
1656
1657   {
1658     'key'         => 'credit_card-recurring_billing_acct_code',
1659     'section'     => 'billing',
1660     'description' => 'When the "recurring billing" flag is set, also set the "acct_code" to "rebill".  Useful for reporting purposes with supported gateways (PlugNPay, others?)',
1661     'type'        => 'checkbox',
1662   },
1663
1664   {
1665     'key'         => 'cvv-save',
1666     'section'     => 'billing',
1667     'description' => 'Save CVV2 information after the initial transaction for the selected credit card types.  Enabling this option may be in violation of your merchant agreement(s), so please check them carefully before enabling this option for any credit card types.',
1668     'type'        => 'selectmultiple',
1669     'select_enum' => \@card_types,
1670   },
1671
1672   {
1673     'key'         => 'allow_negative_charges',
1674     'section'     => 'billing',
1675     'description' => 'Allow negative charges.  Normally not used unless importing data from a legacy system that requires this.',
1676     'type'        => 'checkbox',
1677   },
1678   {
1679       'key'         => 'auto_unset_catchall',
1680       'section'     => '',
1681       'description' => 'When canceling a svc_acct that is the email catchall for one or more svc_domains, automatically set their catchall fields to null.  If this option is not set, the attempt will simply fail.',
1682       'type'        => 'checkbox',
1683   },
1684
1685   {
1686     'key'         => 'system_usernames',
1687     'section'     => 'username',
1688     'description' => 'A list of system usernames that cannot be edited or removed, one per line.  Use a bare username to prohibit modification/deletion of the username in any domain, or username@domain to prohibit modification/deletetion of a specific username and domain.',
1689     'type'        => 'textarea',
1690   },
1691
1692   {
1693     'key'         => 'cust_pkg-change_svcpart',
1694     'section'     => '',
1695     'description' => "When changing packages, move services even if svcparts don't match between old and new pacakge definitions.",
1696     'type'        => 'checkbox',
1697   },
1698
1699   {
1700     'key'         => 'disable_autoreverse',
1701     'section'     => 'BIND',
1702     'description' => 'Disable automatic synchronization of reverse-ARPA entries.',
1703     'type'        => 'checkbox',
1704   },
1705
1706   {
1707     'key'         => 'svc_www-enable_subdomains',
1708     'section'     => '',
1709     'description' => 'Enable selection of specific subdomains for virtual host creation.',
1710     'type'        => 'checkbox',
1711   },
1712
1713   {
1714     'key'         => 'svc_www-usersvc_svcpart',
1715     'section'     => '',
1716     'description' => 'Allowable service definition svcparts for virtual hosts, one per line.',
1717     'type'        => 'textarea',
1718   },
1719
1720   {
1721     'key'         => 'selfservice_server-primary_only',
1722     'section'     => '',
1723     'description' => 'Only allow primary accounts to access self-service functionality.',
1724     'type'        => 'checkbox',
1725   },
1726
1727   {
1728     'key'         => 'card_refund-days',
1729     'section'     => 'billing',
1730     'description' => 'After a payment, the number of days a refund link will be available for that payment.  Defaults to 120.',
1731     'type'        => 'text',
1732   },
1733
1734   {
1735     'key'         => 'agent-showpasswords',
1736     'section'     => '',
1737     'description' => 'Display unencrypted user passwords in the agent (reseller) interface',
1738     'type'        => 'checkbox',
1739   },
1740
1741   {
1742     'key'         => 'global_unique-username',
1743     'section'     => 'username',
1744     'description' => 'Global username uniqueness control: none (usual setting - check uniqueness per exports), username (all usernames are globally unique, regardless of domain or exports), or username@domain (all username@domain pairs are globally unique, regardless of exports).  disabled turns off duplicate checking completely and is STRONGLY NOT RECOMMENDED unless you REALLY need to turn this off.',
1745     'type'        => 'select',
1746     'select_enum' => [ 'none', 'username', 'username@domain', 'disabled' ],
1747   },
1748
1749   {
1750     'key'         => 'svc_external-skip_manual',
1751     'section'     => 'UI',
1752     'description' => 'When provisioning svc_external services, skip manual entry of id and title fields in the UI.  Usually used in conjunction with an export that populates these fields (i.e. artera_turbo).',
1753     'type'        => 'checkbox',
1754   },
1755
1756   {
1757     'key'         => 'svc_external-display_type',
1758     'section'     => 'UI',
1759     'description' => 'Select a specific svc_external type to enable some UI changes specific to that type (i.e. artera_turbo).',
1760     'type'        => 'select',
1761     'select_enum' => [ 'generic', 'artera_turbo', ],
1762   },
1763
1764   {
1765     'key'         => 'ticket_system',
1766     'section'     => '',
1767     'description' => 'Ticketing system integration.  <b>RT_Internal</b> uses the built-in RT ticketing system (see the <a href="../docs/install-rt">integrated ticketing installation instructions</a>).   <b>RT_External</b> accesses an external RT installation in a separate database (local or remote).',
1768     'type'        => 'select',
1769     #'select_enum' => [ '', qw(RT_Internal RT_Libs RT_External) ],
1770     'select_enum' => [ '', qw(RT_Internal RT_External) ],
1771   },
1772
1773   {
1774     'key'         => 'ticket_system-default_queueid',
1775     'section'     => '',
1776     'description' => 'Default queue used when creating new customer tickets.',
1777     'type'        => 'select-sub',
1778     'options_sub' => sub {
1779                            my $conf = new FS::Conf;
1780                            if ( $conf->config('ticket_system') ) {
1781                              eval "use FS::TicketSystem;";
1782                              die $@ if $@;
1783                              FS::TicketSystem->queues();
1784                            } else {
1785                              ();
1786                            }
1787                          },
1788     'option_sub'  => sub { 
1789                            my $conf = new FS::Conf;
1790                            if ( $conf->config('ticket_system') ) {
1791                              eval "use FS::TicketSystem;";
1792                              die $@ if $@;
1793                              FS::TicketSystem->queue(shift);
1794                            } else {
1795                              '';
1796                            }
1797                          },
1798   },
1799
1800   {
1801     'key'         => 'ticket_system-custom_priority_field',
1802     'section'     => '',
1803     'description' => 'Custom field from the ticketing system to use as a custom priority classification.',
1804     'type'        => 'text',
1805   },
1806
1807   {
1808     'key'         => 'ticket_system-custom_priority_field-values',
1809     'section'     => '',
1810     'description' => 'Values for the custom field from the ticketing system to break down and sort customer ticket lists.',
1811     'type'        => 'textarea',
1812   },
1813
1814   {
1815     'key'         => 'ticket_system-custom_priority_field_queue',
1816     'section'     => '',
1817     'description' => 'Ticketing system queue in which the custom field specified in ticket_system-custom_priority_field is located.',
1818     'type'        => 'text',
1819   },
1820
1821   {
1822     'key'         => 'ticket_system-rt_external_datasrc',
1823     'section'     => '',
1824     'description' => 'With external RT integration, the DBI data source for the external RT installation, for example, <code>DBI:Pg:user=rt_user;password=rt_word;host=rt.example.com;dbname=rt</code>',
1825     'type'        => 'text',
1826
1827   },
1828
1829   {
1830     'key'         => 'ticket_system-rt_external_url',
1831     'section'     => '',
1832     'description' => 'With external RT integration, the URL for the external RT installation, for example, <code>https://rt.example.com/rt</code>',
1833     'type'        => 'text',
1834   },
1835
1836   {
1837     'key'         => 'company_name',
1838     'section'     => 'required',
1839     'description' => 'Your company name',
1840     'type'        => 'text',
1841   },
1842
1843   {
1844     'key'         => 'echeck-void',
1845     'section'     => 'deprecated',
1846     'description' => '<B>DEPRECATED</B>, now controlled by ACLs.  Used to enable local-only voiding of echeck payments in addition to refunds against the payment gateway',
1847     'type'        => 'checkbox',
1848   },
1849
1850   {
1851     'key'         => 'cc-void',
1852     'section'     => 'deprecated',
1853     'description' => '<B>DEPRECATED</B>, now controlled by ACLs.  Used to enable local-only voiding of credit card payments in addition to refunds against the payment gateway',
1854     'type'        => 'checkbox',
1855   },
1856
1857   {
1858     'key'         => 'unvoid',
1859     'section'     => 'deprecated',
1860     'description' => '<B>DEPRECATED</B>, now controlled by ACLs.  Used to enable unvoiding of voided payments',
1861     'type'        => 'checkbox',
1862   },
1863
1864   {
1865     'key'         => 'address2-search',
1866     'section'     => 'UI',
1867     'description' => 'Enable a "Unit" search box which searches the second address field',
1868     'type'        => 'checkbox',
1869   },
1870
1871   {
1872     'key'         => 'cust_main-require_address2',
1873     'section'     => 'UI',
1874     'description' => 'Second address field is required (on service address only, if billing and service addresses differ).  Also enables "Unit" labeling of address2 on customer view and edit pages.  Useful for multi-tenant applications.  See also: address2-search',
1875     'type'        => 'checkbox',
1876   },
1877
1878   { 'key'         => 'referral_credit',
1879     'section'     => 'billing',
1880     'description' => "Enables one-time referral credits in the amount of one month <i>referred</i> customer's recurring fee (irregardless of frequency).",
1881     'type'        => 'checkbox',
1882   },
1883
1884   { 'key'         => 'selfservice_server-cache_module',
1885     'section'     => '',
1886     'description' => 'Module used to store self-service session information.  All modules handle any number of self-service servers.  Cache::SharedMemoryCache is appropriate for a single database / single Freeside server.  Cache::FileCache is useful for multiple databases on a single server, or when IPC::ShareLite is not available (i.e. FreeBSD).', #  _Database stores session information in the database and is appropriate for multiple Freeside servers, but may be slower.',
1887     'type'        => 'select',
1888     'select_enum' => [ 'Cache::SharedMemoryCache', 'Cache::FileCache', ], # '_Database' ],
1889   },
1890
1891   {
1892     'key'         => 'hylafax',
1893     'section'     => 'billing',
1894     'description' => 'Options for a HylaFAX server to enable the FAX invoice destination.  They should be in the form of a space separated list of arguments to the Fax::Hylafax::Client::sendfax subroutine.  You probably shouldn\'t override things like \'docfile\'.  *Note* Only supported when using typeset invoices (see the invoice_latex configuration option).',
1895     'type'        => [qw( checkbox textarea )],
1896   },
1897
1898   {
1899     'key'         => 'cust_bill-ftpformat',
1900     'section'     => 'billing',
1901     'description' => 'Enable FTP of raw invoice data - format.',
1902     'type'        => 'select',
1903     'select_enum' => [ '', 'default', 'billco', ],
1904   },
1905
1906   {
1907     'key'         => 'cust_bill-ftpserver',
1908     'section'     => 'billing',
1909     'description' => 'Enable FTP of raw invoice data - server.',
1910     'type'        => 'text',
1911   },
1912
1913   {
1914     'key'         => 'cust_bill-ftpusername',
1915     'section'     => 'billing',
1916     'description' => 'Enable FTP of raw invoice data - server.',
1917     'type'        => 'text',
1918   },
1919
1920   {
1921     'key'         => 'cust_bill-ftppassword',
1922     'section'     => 'billing',
1923     'description' => 'Enable FTP of raw invoice data - server.',
1924     'type'        => 'text',
1925   },
1926
1927   {
1928     'key'         => 'cust_bill-ftpdir',
1929     'section'     => 'billing',
1930     'description' => 'Enable FTP of raw invoice data - server.',
1931     'type'        => 'text',
1932   },
1933
1934   {
1935     'key'         => 'cust_bill-spoolformat',
1936     'section'     => 'billing',
1937     'description' => 'Enable spooling of raw invoice data - format.',
1938     'type'        => 'select',
1939     'select_enum' => [ '', 'default', 'billco', ],
1940   },
1941
1942   {
1943     'key'         => 'cust_bill-spoolagent',
1944     'section'     => 'billing',
1945     'description' => 'Enable per-agent spooling of raw invoice data.',
1946     'type'        => 'checkbox',
1947   },
1948
1949   {
1950     'key'         => 'svc_acct-usage_suspend',
1951     'section'     => 'billing',
1952     'description' => 'Suspends the package an account belongs to when svc_acct.seconds or a bytecount is decremented to 0 or below (accounts with an empty seconds and up|down|totalbytes value are ignored).  Typically used in conjunction with prepaid packages and freeside-sqlradius-radacctd.',
1953     'type'        => 'checkbox',
1954   },
1955
1956   {
1957     'key'         => 'svc_acct-usage_unsuspend',
1958     'section'     => 'billing',
1959     'description' => 'Unuspends the package an account belongs to when svc_acct.seconds or a bytecount is incremented from 0 or below to a positive value (accounts with an empty seconds and up|down|totalbytes value are ignored).  Typically used in conjunction with prepaid packages and freeside-sqlradius-radacctd.',
1960     'type'        => 'checkbox',
1961   },
1962
1963   {
1964     'key'         => 'svc_acct-usage_threshold',
1965     'section'     => 'billing',
1966     'description' => 'The threshold (expressed as percentage) of acct.seconds or acct.up|down|totalbytes at which a warning message is sent to a service holder.  Typically used in conjunction with prepaid packages and freeside-sqlradius-radacctd.  Defaults to 80.',
1967     'type'        => 'text',
1968   },
1969
1970   {
1971     'key'         => 'cust-fields',
1972     'section'     => 'UI',
1973     'description' => 'Which customer fields to display on reports by default',
1974     'type'        => 'select',
1975     'select_hash' => [ FS::ConfDefaults->cust_fields_avail() ],
1976   },
1977
1978   {
1979     'key'         => 'cust_pkg-display_times',
1980     'section'     => 'UI',
1981     'description' => 'Display full timestamps (not just dates) for customer packages.  Useful if you are doing real-time things like hourly prepaid.',
1982     'type'        => 'checkbox',
1983   },
1984
1985   {
1986     'key'         => 'svc_acct-edit_uid',
1987     'section'     => 'shell',
1988     'description' => 'Allow UID editing.',
1989     'type'        => 'checkbox',
1990   },
1991
1992   {
1993     'key'         => 'svc_acct-edit_gid',
1994     'section'     => 'shell',
1995     'description' => 'Allow GID editing.',
1996     'type'        => 'checkbox',
1997   },
1998
1999   {
2000     'key'         => 'zone-underscore',
2001     'section'     => 'BIND',
2002     'description' => 'Allow underscores in zone names.  As underscores are illegal characters in zone names, this option is not recommended.',
2003     'type'        => 'checkbox',
2004   },
2005
2006   #these should become per-user...
2007   {
2008     'key'         => 'vonage-username',
2009     'section'     => '',
2010     'description' => 'Vonage Click2Call username (see <a href="https://secure.click2callu.com/">https://secure.click2callu.com/</a>)',
2011     'type'        => 'text',
2012   },
2013   {
2014     'key'         => 'vonage-password',
2015     'section'     => '',
2016     'description' => 'Vonage Click2Call username (see <a href="https://secure.click2callu.com/">https://secure.click2callu.com/</a>)',
2017     'type'        => 'text',
2018   },
2019   {
2020     'key'         => 'vonage-fromnumber',
2021     'section'     => '',
2022     'description' => 'Vonage Click2Call number (see <a href="https://secure.click2callu.com/">https://secure.click2callu.com/</a>)',
2023     'type'        => 'text',
2024   },
2025
2026   {
2027     'key'         => 'echeck-nonus',
2028     'section'     => 'billing',
2029     'description' => 'Disable ABA-format account checking for Electronic Check payment info',
2030     'type'        => 'checkbox',
2031   },
2032
2033   {
2034     'key'         => 'voip-cust_cdr_spools',
2035     'section'     => '',
2036     'description' => 'Enable the per-customer option for individual CDR spools.',
2037     'type'        => 'checkbox',
2038   },
2039
2040   {
2041     'key'         => 'svc_forward-arbitrary_dst',
2042     'section'     => '',
2043     'description' => "Allow forwards to point to arbitrary strings that don't necessarily look like email addresses.  Only used when using forwards for weird, non-email things.",
2044     'type'        => 'checkbox',
2045   },
2046
2047   {
2048     'key'         => 'tax-ship_address',
2049     'section'     => 'billing',
2050     'description' => 'By default, tax calculations are done based on the billing address.  Enable this switch to calculate tax based on the shipping address instead.  Note: Tax reports can take a long time when enabled.',
2051     'type'        => 'checkbox',
2052   },
2053
2054   {
2055     'key'         => 'invoice-ship_address',
2056     'section'     => 'billing',
2057     'description' => 'Enable this switch to include the ship address on the invoice.',
2058     'type'        => 'checkbox',
2059   },
2060
2061   {
2062     'key'         => 'invoice-unitprice',
2063     'section'     => 'billing',
2064     'description' => 'This switch enables unit pricing on the invoice.',
2065     'type'        => 'checkbox',
2066   },
2067
2068   {
2069     'key'         => 'postal_invoice-fee_pkgpart',
2070     'section'     => 'billing',
2071     'description' => 'This allows selection of a package to insert on invoices for customers with postal invoices selected.',
2072     'type'        => 'select-sub',
2073     'options_sub' => sub { require FS::Record;
2074                            require FS::part_pkg;
2075                            map { $_->pkgpart => $_->pkg }
2076                                FS::Record::qsearch('part_pkg', { disabled=>'' } );
2077                          },
2078     'option_sub'  => sub { require FS::Record;
2079                            require FS::part_pkg;
2080                            my $part_pkg = FS::Record::qsearchs(
2081                              'part_pkg', { 'pkgpart'=>shift }
2082                            );
2083                            $part_pkg ? $part_pkg->pkg : '';
2084                          },
2085   },
2086
2087   {
2088     'key'         => 'postal_invoice-recurring_only',
2089     'section'     => 'billing',
2090     'description' => 'The postal invoice fee is omitted on invoices without recurring charges when this is set',
2091     'type'        => 'checkbox',
2092   },
2093
2094   {
2095     'key'         => 'batch-enable',
2096     'section'     => 'deprecated', #make sure batch-enable_payby is set for
2097                                    #everyone before removing
2098     'description' => 'Enable credit card and/or ACH batching - leave disabled for real-time installations.',
2099     'type'        => 'checkbox',
2100   },
2101
2102   {
2103     'key'         => 'batch-enable_payby',
2104     'section'     => 'billing',
2105     'description' => 'Enable batch processing for the specified payment types.',
2106     'type'        => 'selectmultiple',
2107     'select_enum' => [qw( CARD CHEK )],
2108   },
2109
2110   {
2111     'key'         => 'realtime-disable_payby',
2112     'section'     => 'billing',
2113     'description' => 'Disable realtime processing for the specified payment types.',
2114     'type'        => 'selectmultiple',
2115     'select_enum' => [qw( CARD CHEK )],
2116   },
2117
2118   {
2119     'key'         => 'batch-default_format',
2120     'section'     => 'billing',
2121     'description' => 'Default format for batches.',
2122     'type'        => 'select',
2123     'select_enum' => [ 'csv-td_canada_trust-merchant_pc_batch',
2124                        'csv-chase_canada-E-xactBatch', 'BoM', 'PAP',
2125                        'ach-spiritone',
2126                     ]
2127   },
2128
2129   {
2130     'key'         => 'batch-fixed_format-CARD',
2131     'section'     => 'billing',
2132     'description' => 'Fixed (unchangeable) format for credit card batches.',
2133     'type'        => 'select',
2134     'select_enum' => [ 'csv-td_canada_trust-merchant_pc_batch', 'BoM', 'PAP' ,
2135                        'csv-chase_canada-E-xactBatch', 'BoM', 'PAP' ]
2136   },
2137
2138   {
2139     'key'         => 'batch-fixed_format-CHEK',
2140     'section'     => 'billing',
2141     'description' => 'Fixed (unchangeable) format for electronic check batches.',
2142     'type'        => 'select',
2143     'select_enum' => [ 'csv-td_canada_trust-merchant_pc_batch', 'BoM', 'PAP',
2144                        'ach-spiritone',
2145                      ]
2146   },
2147
2148   {
2149     'key'         => 'batch-increment_expiration',
2150     'section'     => 'billing',
2151     'description' => 'Increment expiration date years in batches until cards are current.  Make sure this is acceptable to your batching provider before enabling.',
2152     'type'        => 'checkbox'
2153   },
2154
2155   {
2156     'key'         => 'batchconfig-BoM',
2157     'section'     => 'billing',
2158     'description' => 'Configuration for Bank of Montreal batching, seven lines: 1. Origin ID, 2. Datacenter, 3. Typecode, 4. Short name, 5. Long name, 6. Bank, 7. Bank account',
2159     'type'        => 'textarea',
2160   },
2161
2162   {
2163     'key'         => 'batchconfig-PAP',
2164     'section'     => 'billing',
2165     'description' => 'Configuration for PAP batching, seven lines: 1. Origin ID, 2. Datacenter, 3. Typecode, 4. Short name, 5. Long name, 6. Bank, 7. Bank account',
2166     'type'        => 'textarea',
2167   },
2168
2169   {
2170     'key'         => 'batchconfig-csv-chase_canada-E-xactBatch',
2171     'section'     => 'billing',
2172     'description' => 'Gateway ID for Chase Canada E-xact batching',
2173     'type'        => 'text',
2174   },
2175
2176   {
2177     'key'         => 'payment_history-years',
2178     'section'     => 'UI',
2179     'description' => 'Number of years of payment history to show by default.  Currently defaults to 2.',
2180     'type'        => 'text',
2181   },
2182
2183   {
2184     'key'         => 'cust_main-use_comments',
2185     'section'     => 'UI',
2186     'description' => 'Display free form comments on the customer edit screen.  Useful as a scratch pad.',
2187     'type'        => 'checkbox',
2188   },
2189
2190   {
2191     'key'         => 'cust_main-disable_notes',
2192     'section'     => 'UI',
2193     'description' => 'Disable new style customer notes - timestamped and user identified customer notes.  Useful in tracking who did what.',
2194     'type'        => 'checkbox',
2195   },
2196
2197   {
2198     'key'         => 'cust_main_note-display_times',
2199     'section'     => 'UI',
2200     'description' => 'Display full timestamps (not just dates) for customer notes.',
2201     'type'        => 'checkbox',
2202   },
2203
2204   {
2205     'key'         => 'cust_main-ticket_statuses',
2206     'section'     => 'UI',
2207     'description' => 'Show tickets with these statuses on the customer view page.',
2208     'type'        => 'selectmultiple',
2209     'select_enum' => [qw( new open stalled resolved rejected deleted )],
2210   },
2211
2212   {
2213     'key'         => 'cust_main-max_tickets',
2214     'section'     => 'UI',
2215     'description' => 'Maximum number of tickets to show on the customer view page.',
2216     'type'        => 'text',
2217   },
2218
2219   {
2220     'key'         => 'cust_main-skeleton_tables',
2221     'section'     => '',
2222     'description' => 'Tables which will have skeleton records inserted into them for each customer.  Syntax for specifying tables is unfortunately a tricky perl data structure for now.',
2223     'type'        => 'textarea',
2224   },
2225
2226   {
2227     'key'         => 'cust_main-skeleton_custnum',
2228     'section'     => '',
2229     'description' => 'Customer number specifying the source data to copy into skeleton tables for new customers.',
2230     'type'        => 'text',
2231   },
2232
2233   {
2234     'key'         => 'cust_main-enable_birthdate',
2235     'section'     => 'UI',
2236     'descritpion' => 'Enable tracking of a birth date with each customer record',
2237     'type'        => 'checkbox',
2238   },
2239
2240   {
2241     'key'         => 'support-key',
2242     'section'     => '',
2243     'description' => 'A support key enables access to commercial services delivered over the network, such as the payroll module, access to the internal ticket system, priority support and optional backups.',
2244     'type'        => 'text',
2245   },
2246
2247   {
2248     'key'         => 'card-types',
2249     'section'     => 'billing',
2250     'description' => 'Select one or more card types to enable only those card types.  If no card types are selected, all card types are available.',
2251     'type'        => 'selectmultiple',
2252     'select_enum' => \@card_types,
2253   },
2254
2255   {
2256     'key'         => 'dashboard-toplist',
2257     'section'     => 'UI',
2258     'description' => 'List of items to display on the top of the front page',
2259     'type'        => 'textarea',
2260   },
2261
2262   {
2263     'key'         => 'impending_recur_template',
2264     'section'     => 'billing',
2265     'description' => 'Template file for alerts about looming first time recurrant billing.  See the <a href="http://search.cpan.org/~mjd/Text-Template.pm">Text::Template</a> documentation for details on the template substitition language.  Also see packages with a <a href="../browse/part_pkg.cgi">flat price plan</a>  The following variables are available<ul><li><code>$packages</code> allowing <code>$packages->[0]</code> thru <code>$packages->[n]</code> <li><code>$package</code> the first package, same as <code>$packages->[0]</code> <li><code>$recurdates</code> allowing <code>$recurdates->[0]</code> thru <code>$recurdates->[n]</code> <li><code>$recurdate</code> the first recurdate, same as <code>$recurdate->[0]</code> <li><code>$first</code> <li><code>$last</code></ul>',
2266 # <li><code>$payby</code> <li><code>$expdate</code> most likely only confuse
2267     'type'        => 'textarea',
2268   },
2269
2270   {
2271     'key'         => 'selfservice-session_timeout',
2272     'section'     => '',
2273     'description' => 'Self-service session timeout.  Defaults to 1 hour.',
2274     'type'        => 'select',
2275     'select_enum' => [ '1 hour', '2 hours', '4 hours', '8 hours', '1 day', '1 week', ],
2276   },
2277
2278   {
2279     'key'         => 'disable_setup_suspended_pkgs',
2280     'section'     => 'billing',
2281     'description' => 'Disables charging of setup fees for suspended packages.',
2282     'type'       => 'checkbox',
2283   },
2284
2285   {
2286     'key' => 'password-generated-allcaps',
2287     'section' => 'password',
2288     'description' => 'Causes passwords automatically generated to consist entirely of capital letters',
2289     'type' => 'checkbox',
2290   },
2291
2292   {
2293     'key'         => 'datavolume-forcemegabytes',
2294     'section'     => 'UI',
2295     'description' => 'All data volumes are expressed in megabytes',
2296     'type'        => 'checkbox',
2297   },
2298
2299   {
2300     'key'         => 'datavolume-significantdigits',
2301     'section'     => 'UI',
2302     'description' => 'number of significant digits to use to represent data volumes',
2303     'type'        => 'text',
2304   },
2305
2306   {
2307     'key'         => 'disable_void_after',
2308     'section'     => 'billing',
2309     'description' => 'Number of seconds after which freeside won\'t attempt to VOID a payment first when performing a refund.',
2310     'type'        => 'text',
2311   },
2312
2313   {
2314     'key'         => 'disable_line_item_date_ranges',
2315     'section'     => 'billing',
2316     'description' => 'Prevent freeside from automatically generating date ranges on invoice line items.',
2317     'type'        => 'checkbox',
2318   },
2319
2320   {
2321     'key'         => 'cust_main-require_phone',
2322     'section'     => '',
2323     'description' => 'Require daytime or night for all customer records.',
2324     'type'        => 'checkbox',
2325   },
2326
2327   {
2328     'key'         => 'cust_main-require_invoicing_list_email',
2329     'section'     => '',
2330     'description' => 'Email address field is required: require at least one invoicing email address for all customer records.',
2331     'type'        => 'checkbox',
2332   },
2333
2334   {
2335     'key'         => 'cancel_credit_type',
2336     'section'     => 'billing',
2337     'description' => 'The group to use for new, automatically generated credit reasons resulting from cancellation.',
2338     'type'        => 'select-sub',
2339     'options_sub' => sub { require FS::Record;
2340                            require FS::reason_type;
2341                            map { $_->typenum => $_->type }
2342                                FS::Record::qsearch('reason_type', { class=>'R' } );
2343                          },
2344     'option_sub'  => sub { require FS::Record;
2345                            require FS::reason_type;
2346                            my $reason_type = FS::Record::qsearchs(
2347                              'reason_type', { 'typenum' => shift }
2348                            );
2349                            $reason_type ? $reason_type->type : '';
2350                          },
2351   },
2352
2353   {
2354     'key'         => 'referral_credit_type',
2355     'section'     => 'billing',
2356     'description' => 'The group to use for new, automatically generated credit reasons resulting from referrals.',
2357     'type'        => 'select-sub',
2358     'options_sub' => sub { require FS::Record;
2359                            require FS::reason_type;
2360                            map { $_->typenum => $_->type }
2361                                FS::Record::qsearch('reason_type', { class=>'R' } );
2362                          },
2363     'option_sub'  => sub { require FS::Record;
2364                            require FS::reason_type;
2365                            my $reason_type = FS::Record::qsearchs(
2366                              'reason_type', { 'typenum' => shift }
2367                            );
2368                            $reason_type ? $reason_type->type : '';
2369                          },
2370   },
2371
2372   {
2373     'key'         => 'signup_credit_type',
2374     'section'     => 'billing',
2375     'description' => 'The group to use for new, automatically generated credit reasons resulting from signup and self-service declines.',
2376     'type'        => 'select-sub',
2377     'options_sub' => sub { require FS::Record;
2378                            require FS::reason_type;
2379                            map { $_->typenum => $_->type }
2380                                FS::Record::qsearch('reason_type', { class=>'R' } );
2381                          },
2382     'option_sub'  => sub { require FS::Record;
2383                            require FS::reason_type;
2384                            my $reason_type = FS::Record::qsearchs(
2385                              'reason_type', { 'typenum' => shift }
2386                            );
2387                            $reason_type ? $reason_type->type : '';
2388                          },
2389   },
2390
2391   {
2392     'key'         => 'cust_main-agent_custid-format',
2393     'section'     => '',
2394     'description' => 'Enables searching of various formatted values in cust_main.agent_custid',
2395     'type'        => 'select',
2396     'select_hash' => [
2397                        ''      => 'Numeric only',
2398                        'ww?d+' => 'Numeric with one or two letter prefix',
2399                      ],
2400   },
2401
2402   {
2403     'key'         => 'card_masking_method',
2404     'section'     => 'UI',
2405     'description' => 'Digits to display when masking credit cards.  Note that the first six digits are necessary to canonically identify the credit card type (Visa/MC, Amex, Discover, Maestro, etc.) in all cases.  The first four digits can identify the most common credit card types in most cases (Visa/MC, Amex, and Discover).  The first two digits can distinguish between Visa/MC and Amex.',
2406     'type'        => 'select',
2407     'select_hash' => [
2408                        ''            => '123456xxxxxx1234',
2409                        'first6last2' => '123456xxxxxxxx12',
2410                        'first4last4' => '1234xxxxxxxx1234',
2411                        'first4last2' => '1234xxxxxxxxxx12',
2412                        'first2last4' => '12xxxxxxxxxx1234',
2413                        'first2last2' => '12xxxxxxxxxxxx12',
2414                        'first0last4' => 'xxxxxxxxxxxx1234',
2415                        'first0last2' => 'xxxxxxxxxxxxxx12',
2416                      ],
2417   },
2418
2419   {
2420     'key'         => 'disable_previous_balance',
2421     'section'     => 'billing',
2422     'description' => 'Disable inclusion of previous balance lines on invoices',
2423     'type'        => 'checkbox',
2424   },
2425
2426   {
2427     'key'         => 'disable_acl_changes',
2428     'section'     => '',
2429     'description' => 'Disable all ACL changes, for demos.',
2430     'type'        => 'checkbox',
2431   },
2432
2433   {
2434     'key'         => 'cust_main-edit_agent_custid',
2435     'section'     => 'UI',
2436     'description' => 'Enable editing of the agent_custid field.',
2437     'type'        => 'checkbox',
2438   },
2439
2440   {
2441     'key'         => 'cust_main-default_areacode',
2442     'section'     => 'UI',
2443     'description' => 'Default area code for customers.',
2444     'type'        => 'text',
2445   },
2446
2447   {
2448     'key'         => 'cust_bill-max_same_services',
2449     'section'     => 'billing',
2450     'description' => 'Maximum number of the same service to list individually on invoices before condensing to a single line listing the number of services.  Defaults to 5.',
2451     'type'        => 'text',
2452   },
2453
2454   {
2455     'key'         => 'suspend_email_admin',
2456     'section'     => '',
2457     'description' => 'Destination admin email address to enable suspension notices',
2458     'type'        => 'text',
2459   },
2460
2461   {
2462     'key'         => 'email_report-subject',
2463     'section'     => '',
2464     'description' => 'Subject for reports emailed by freeside-fetch.  Defaults to "Freeside report".',
2465     'type'        => 'text',
2466   },
2467
2468   {
2469     'key'         => 'sg-multicustomer_hack',
2470     'section'     => '',
2471     'description' => "Don't use this.",
2472     'type'        => 'checkbox',
2473   },
2474
2475   {
2476     'key'         => 'sg-ping_username',
2477     'section'     => '',
2478     'description' => "Don't use this.",
2479     'type'        => 'text',
2480   },
2481
2482   {
2483     'key'         => 'sg-ping_password',
2484     'section'     => '',
2485     'description' => "Don't use this.",
2486     'type'        => 'text',
2487   },
2488
2489   {
2490     'key'         => 'sg-login_username',
2491     'section'     => '',
2492     'description' => "Don't use this.",
2493     'type'        => 'text',
2494   },
2495
2496   {
2497     'key'         => 'queued-max_kids',
2498     'section'     => '',
2499     'description' => 'Maximum number of queued processes.  Defaults to 10.',
2500     'type'        => 'text',
2501   },
2502
2503   {
2504     'key'         => 'cancelled_cust-noevents',
2505     'section'     => 'billing',
2506     'description' => "Don't run events for cancelled customers",
2507     'type'        => 'checkbox',
2508   },
2509
2510   {
2511     'key'         => 'svc_broadband-manage_link',
2512     'section'     => 'UI',
2513     'description' => 'URL for svc_broadband "Manage Device" link.  The following substitutions are available: $ip_addr.',
2514     'type'        => 'text',
2515   },
2516
2517 );
2518
2519 1;
2520