Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / FS / FS / Conf.pm
1 package FS::Conf;
2
3 use strict;
4 use vars qw( $base_dir @config_items @base_items @card_types $DEBUG
5              $conf_cache $conf_cache_enabled
6            );
7 use Carp;
8 use IO::File;
9 use File::Basename;
10 use MIME::Base64;
11 use Locale::Currency;
12 use FS::ConfItem;
13 use FS::ConfDefaults;
14 use FS::Locales;
15 use FS::payby;
16 use FS::conf;
17 use FS::Record qw(qsearch qsearchs);
18 use FS::UID qw(dbh datasrc);
19 use FS::Misc::Invoicing qw( spool_formats );
20
21 $base_dir = '%%%FREESIDE_CONF%%%';
22
23 $DEBUG = 0;
24
25 $conf_cache_enabled = 0;
26
27 =head1 NAME
28
29 FS::Conf - Freeside configuration values
30
31 =head1 SYNOPSIS
32
33   use FS::Conf;
34
35   $conf = new FS::Conf;
36
37   $value = $conf->config('key');
38   @list  = $conf->config('key');
39   $bool  = $conf->exists('key');
40
41   $conf->touch('key');
42   $conf->set('key' => 'value');
43   $conf->delete('key');
44
45   @config_items = $conf->config_items;
46
47 =head1 DESCRIPTION
48
49 Read and write Freeside configuration values.  Keys currently map to filenames,
50 but this may change in the future.
51
52 =head1 METHODS
53
54 =over 4
55
56 =item new [ HASHREF ]
57
58 Create a new configuration object.
59
60 HASHREF may contain options to set the configuration context.  Currently 
61 accepts C<locale>, and C<localeonly> to disable fallback to the null locale.
62
63 =cut
64
65 sub new {
66   my($proto) = shift;
67   my $opts = shift || {};
68   my($class) = ref($proto) || $proto;
69   my $self = {
70     'base_dir'    => $base_dir,
71     'locale'      => $opts->{locale},
72     'localeonly'  => $opts->{localeonly}, # for config-view.cgi ONLY
73   };
74   warn "FS::Conf created with no locale fallback.\n" if $self->{localeonly};
75   bless ($self, $class);
76 }
77
78 =item base_dir
79
80 Returns the base directory.  By default this is /usr/local/etc/freeside.
81
82 =cut
83
84 sub base_dir {
85   my($self) = @_;
86   my $base_dir = $self->{base_dir};
87   -e $base_dir or die "FATAL: $base_dir doesn't exist!";
88   -d $base_dir or die "FATAL: $base_dir isn't a directory!";
89   -r $base_dir or die "FATAL: Can't read $base_dir!";
90   -x $base_dir or die "FATAL: $base_dir not searchable (executable)!";
91   $base_dir =~ /^(.*)$/;
92   $1;
93 }
94
95 =item conf KEY [ AGENTNUM [ NODEFAULT ] ]
96
97 Returns the L<FS::conf> record for the key and agent.
98
99 =cut
100
101 sub conf {
102   my $self = shift;
103   $self->_config(@_);
104 }
105
106 =item config KEY [ AGENTNUM [ NODEFAULT ] ]
107
108 Returns the configuration value or values (depending on context) for key.
109 The optional agent number selects an agent specific value instead of the
110 global default if one is present.  If NODEFAULT is true only the agent
111 specific value(s) is returned.
112
113 =cut
114
115 sub _config {
116   my($self,$name,$agentnum,$agentonly)=@_;
117   my $hashref = { 'name' => $name };
118   local $FS::Record::conf = undef;  # XXX evil hack prevents recursion
119   $conf_cache = undef unless $conf_cache_enabled; # use cache only when it is
120                                                   # safe to do so
121   my $cv;
122   my @a = (
123     ($agentnum || ()),
124     ($agentonly && $agentnum ? () : '')
125   );
126   my @l = (
127     ($self->{locale} || ()),
128     ($self->{localeonly} && $self->{locale} ? () : '')
129   );
130   # try with the agentnum first, then fall back to no agentnum if allowed
131   foreach my $a (@a) {
132     $hashref->{agentnum} = $a;
133     foreach my $l (@l) {
134       my $key = join(':',$name, $a, $l);
135       if (! exists $conf_cache->{$key}){
136         $hashref->{locale} = $l;
137         # $conf_cache is reset in FS::UID during myconnect, so the cache is
138         # reset per connection
139         $conf_cache->{$key} = FS::Record::qsearchs('conf', $hashref);
140       }
141       return $conf_cache->{$key} if $conf_cache->{$key};
142     }
143   }
144   return undef;
145 }
146
147 sub config {
148   my $self = shift;
149
150   carp "FS::Conf->config(". join(', ', @_). ") called"
151     if $DEBUG > 1;
152
153   my $cv = $self->_config(@_) or return;
154
155   if ( wantarray ) {
156     my $v = $cv->value;
157     chomp $v;
158     (split "\n", $v, -1);
159   } else {
160     (split("\n", $cv->value))[0];
161   }
162 }
163
164 =item config_binary KEY [ AGENTNUM [ NODEFAULT ] ]
165
166 Returns the exact scalar value for key.
167
168 =cut
169
170 sub config_binary {
171   my $self = shift;
172
173   my $cv = $self->_config(@_) or return;
174   length($cv->value) ? decode_base64($cv->value) : '';
175 }
176
177 =item exists KEY [ AGENTNUM [ NODEFAULT ] ]
178
179 Returns true if the specified key exists, even if the corresponding value
180 is undefined.
181
182 =cut
183
184 sub exists {
185   my $self = shift;
186
187   #my($name, $agentnum)=@_;
188
189   carp "FS::Conf->exists(". join(', ', @_). ") called"
190     if $DEBUG > 1;
191
192   defined($self->_config(@_));
193 }
194
195 #maybe this should just be the new exists instead of getting a method of its
196 #own, but i wanted to avoid possible fallout
197
198 sub config_bool {
199   my $self = shift;
200
201   my($name,$agentnum,$agentonly) = @_;
202
203   carp "FS::Conf->config_bool(". join(', ', @_). ") called"
204     if $DEBUG > 1;
205
206   #defined($self->_config(@_));
207
208   #false laziness w/_config
209   my $hashref = { 'name' => $name };
210   local $FS::Record::conf = undef;  # XXX evil hack prevents recursion
211   my $cv;
212   my @a = (
213     ($agentnum || ()),
214     ($agentonly && $agentnum ? () : '')
215   );
216   my @l = (
217     ($self->{locale} || ()),
218     ($self->{localeonly} && $self->{locale} ? () : '')
219   );
220   # try with the agentnum first, then fall back to no agentnum if allowed
221   foreach my $a (@a) {
222     $hashref->{agentnum} = $a;
223     foreach my $l (@l) {
224       $hashref->{locale} = $l;
225       $cv = FS::Record::qsearchs('conf', $hashref);
226       if ( $cv ) {
227         if ( $cv->value eq '0'
228                && ($hashref->{agentnum} || $hashref->{locale} )
229            ) 
230         {
231           return 0; #an explicit false override, don't continue looking
232         } else {
233           return 1;
234         }
235       }
236     }
237   }
238   return 0;
239
240 }
241
242 =item config_orbase KEY SUFFIX
243
244 Returns the configuration value or values (depending on context) for 
245 KEY_SUFFIX, if it exists, otherwise for KEY
246
247 =cut
248
249 # outmoded as soon as we shift to agentnum based config values
250 # well, mostly.  still useful for e.g. late notices, etc. in that we want
251 # these to fall back to standard values
252 sub config_orbase {
253   my $self = shift;
254
255   my( $name, $suffix ) = @_;
256   if ( $self->exists("${name}_$suffix") ) {
257     $self->config("${name}_$suffix");
258   } else {
259     $self->config($name);
260   }
261 }
262
263 =item key_orbase KEY SUFFIX
264
265 If the config value KEY_SUFFIX exists, returns KEY_SUFFIX, otherwise returns
266 KEY.  Useful for determining which exact configuration option is returned by
267 config_orbase.
268
269 =cut
270
271 sub key_orbase {
272   my $self = shift;
273
274   my( $name, $suffix ) = @_;
275   if ( $self->exists("${name}_$suffix") ) {
276     "${name}_$suffix";
277   } else {
278     $name;
279   }
280 }
281
282 =item invoice_templatenames
283
284 Returns all possible invoice template names.
285
286 =cut
287
288 sub invoice_templatenames {
289   my( $self ) = @_;
290
291   my %templatenames = ();
292   foreach my $item ( $self->config_items ) {
293     foreach my $base ( @base_items ) {
294       my( $main, $ext) = split(/\./, $base);
295       $ext = ".$ext" if $ext;
296       if ( $item->key =~ /^${main}_(.+)$ext$/ ) {
297       $templatenames{$1}++;
298       }
299     }
300   }
301   
302   map { $_ } #handle scalar context
303   sort keys %templatenames;
304
305 }
306
307 =item touch KEY [ AGENT ];
308
309 Creates the specified configuration key if it does not exist.
310
311 =cut
312
313 sub touch {
314   my $self = shift;
315
316   my($name, $agentnum) = @_;
317   #unless ( $self->exists($name, $agentnum) ) {
318   unless ( $self->config_bool($name, $agentnum) ) {
319     if ( $agentnum && $self->exists($name) && $self->config($name,$agentnum) eq '0' ) {
320       $self->delete($name, $agentnum);
321     } else {
322       $self->set($name, '', $agentnum);
323     }
324   }
325 }
326
327 =item set KEY VALUE [ AGENTNUM ];
328
329 Sets the specified configuration key to the given value.
330
331 =cut
332
333 sub set {
334   my $self = shift;
335
336   my($name, $value, $agentnum) = @_;
337   $value =~ /^(.*)$/s;
338   $value = $1;
339
340   warn "[FS::Conf] SET $name\n" if $DEBUG;
341
342   my $hashref = {
343     name => $name,
344     agentnum => $agentnum,
345     locale => $self->{locale}
346   };
347
348   my $old = FS::Record::qsearchs('conf', $hashref);
349   my $new = new FS::conf { $old ? $old->hash : %$hashref };
350   $new->value($value);
351
352   my $error;
353   if ($old) {
354     $error = $new->replace($old);
355   } else {
356     $error = $new->insert;
357   }
358
359   if (! $error) {
360     # clean the object cache
361     my $key = join(':',$name, $agentnum, $self->{locale});
362     $conf_cache->{ $key } = $new;
363   }
364
365   die "error setting configuration value: $error \n"
366     if $error;
367
368 }
369
370 =item set_binary KEY VALUE [ AGENTNUM ]
371
372 Sets the specified configuration key to an exact scalar value which
373 can be retrieved with config_binary.
374
375 =cut
376
377 sub set_binary {
378   my $self  = shift;
379
380   my($name, $value, $agentnum)=@_;
381   $self->set($name, encode_base64($value), $agentnum);
382 }
383
384 =item delete KEY [ AGENTNUM ];
385
386 Deletes the specified configuration key.
387
388 =cut
389
390 sub delete {
391   my $self = shift;
392
393   my($name, $agentnum) = @_;
394   if ( my $cv = FS::Record::qsearchs('conf', {name => $name, agentnum => $agentnum, locale => $self->{locale}}) ) {
395     warn "[FS::Conf] DELETE $name\n" if $DEBUG;
396
397     my $oldAutoCommit = $FS::UID::AutoCommit;
398     local $FS::UID::AutoCommit = 0;
399     my $dbh = dbh;
400
401     my $error = $cv->delete;
402
403     if ( $error ) {
404       $dbh->rollback if $oldAutoCommit;
405       die "error setting configuration value: $error \n"
406     }
407
408     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
409
410   }
411 }
412
413 #maybe this should just be the new delete instead of getting a method of its
414 #own, but i wanted to avoid possible fallout
415
416 sub delete_bool {
417   my $self = shift;
418
419   my($name, $agentnum) = @_;
420
421   warn "[FS::Conf] DELETE $name\n" if $DEBUG;
422
423   my $cv = FS::Record::qsearchs('conf', { name     => $name,
424                                           agentnum => $agentnum,
425                                           locale   => $self->{locale},
426                                         });
427
428   if ( $cv ) {
429     my $error = $cv->delete;
430     die $error if $error;
431   } elsif ( $agentnum ) {
432     $self->set($name, '0', $agentnum);
433   }
434
435 }
436
437 =item import_config_item CONFITEM DIR 
438
439   Imports the item specified by the CONFITEM (see L<FS::ConfItem>) into
440 the database as a conf record (see L<FS::conf>).  Imports from the file
441 in the directory DIR.
442
443 =cut
444
445 sub import_config_item { 
446   my ($self,$item,$dir) = @_;
447   my $key = $item->key;
448   if ( -e "$dir/$key" ) {
449     warn "Inserting $key\n" if $DEBUG;
450     local $/;
451     my $value = readline(new IO::File "$dir/$key");
452     if ($item->type =~ /^(binary|image)$/ ) {
453       $self->set_binary($key, $value);
454     }else{
455       $self->set($key, $value);
456     }
457   } else {
458     warn "Not inserting $key\n" if $DEBUG;
459   }
460 }
461
462 #item _orbase_items OPTIONS
463 #
464 #Returns all of the possible extensible config items as FS::ConfItem objects.
465 #See #L<FS::ConfItem>.  OPTIONS consists of name value pairs.  Possible
466 #options include
467 #
468 # dir - the directory to search for configuration option files instead
469 #       of using the conf records in the database
470 #
471 #cut
472
473 #quelle kludge
474 sub _orbase_items {
475   my ($self, %opt) = @_; 
476
477   my $listmaker = sub { my $v = shift;
478                         $v =~ s/_/!_/g;
479                         if ( $v =~ /\.(png|eps)$/ ) {
480                           $v =~ s/\./!_%./;
481                         }else{
482                           $v .= '!_%';
483                         }
484                         map { $_->name }
485                           FS::Record::qsearch( 'conf',
486                                                {},
487                                                '',
488                                                "WHERE name LIKE '$v' ESCAPE '!'"
489                                              );
490                       };
491
492   if (exists($opt{dir}) && $opt{dir}) {
493     $listmaker = sub { my $v = shift;
494                        if ( $v =~ /\.(png|eps)$/ ) {
495                          $v =~ s/\./_*./;
496                        }else{
497                          $v .= '_*';
498                        }
499                        map { basename $_ } glob($opt{dir}. "/$v" );
500                      };
501   }
502
503   ( map { 
504           my $proto;
505           my $base = $_;
506           for ( @config_items ) { $proto = $_; last if $proto->key eq $base;  }
507           die "don't know about $base items" unless $proto->key eq $base;
508
509           map { new FS::ConfItem { 
510                   'key'         => $_,
511                   'base_key'    => $proto->key,
512                   'section'     => $proto->section,
513                   'description' => 'Alternate ' . $proto->description . '  See the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:2.1:Documentation:Administration#Invoice_templates">billing documentation</a> for details.',
514                   'type'        => $proto->type,
515                 };
516               } &$listmaker($base);
517         } @base_items,
518   );
519 }
520
521 =item config_items
522
523 Returns all of the possible global/default configuration items as
524 FS::ConfItem objects.  See L<FS::ConfItem>.
525
526 =cut
527
528 sub config_items {
529   my $self = shift; 
530
531   ( @config_items, $self->_orbase_items(@_) );
532 }
533
534 =item invoice_from_full [ AGENTNUM ]
535
536 Returns values of invoice_from and invoice_from_name, appropriately combined
537 based on their current values.
538
539 =cut
540
541 sub invoice_from_full {
542   my ($self, $agentnum) = @_;
543   return $self->config('invoice_from_name', $agentnum ) ?
544          $self->config('invoice_from_name', $agentnum ) . ' <' .
545          $self->config('invoice_from', $agentnum ) . '>' :
546          $self->config('invoice_from', $agentnum );
547 }
548
549 =back
550
551 =head1 SUBROUTINES
552
553 =over 4
554
555 =item init-config DIR
556
557 Imports the configuration items from DIR (1.7 compatible)
558 to conf records in the database.
559
560 =cut
561
562 sub init_config {
563   my $dir = shift;
564
565   my $conf = new FS::Conf;
566   foreach my $item ( $conf->config_items(dir => $dir) ) {
567     $conf->import_config_item($item, $dir);
568   }
569
570   '';  #success
571 }
572
573 =back
574
575 =head1 BUGS
576
577 If this was more than just crud that will never be useful outside Freeside I'd
578 worry that config_items is freeside-specific and icky.
579
580 =head1 SEE ALSO
581
582 "Configuration" in the web interface (config/config.cgi).
583
584 =cut
585
586 #Business::CreditCard
587 @card_types = (
588   "VISA card",
589   "MasterCard",
590   "Discover card",
591   "American Express card",
592   "Diner's Club/Carte Blanche",
593   "enRoute",
594   "JCB",
595   "BankCard",
596   "Switch",
597   "Solo",
598 );
599
600 @base_items = qw(
601 invoice_template
602 invoice_latex
603 invoice_latexreturnaddress
604 invoice_latexfooter
605 invoice_latexsmallfooter
606 invoice_latexnotes
607 invoice_latexcoupon
608 invoice_latexwatermark
609 invoice_html
610 invoice_htmlreturnaddress
611 invoice_htmlfooter
612 invoice_htmlnotes
613 invoice_htmlwatermark
614 logo.png
615 logo.eps
616 );
617
618 my %msg_template_options = (
619   'type'        => 'select-sub',
620   'options_sub' => sub { 
621     my @templates = qsearch({
622         'table' => 'msg_template', 
623         'hashref' => { 'disabled' => '' },
624         'extra_sql' => ' AND '. 
625           $FS::CurrentUser::CurrentUser->agentnums_sql(null => 1),
626         });
627     map { $_->msgnum, $_->msgname } @templates;
628   },
629   'option_sub'  => sub { 
630                          my $msg_template = FS::msg_template->by_key(shift);
631                          $msg_template ? $msg_template->msgname : ''
632                        },
633   'per_agent' => 1,
634 );
635
636 my %payment_gateway_options = (
637   'type'        => 'select-sub',
638   'options_sub' => sub {
639     my @gateways = qsearch({
640         'table' => 'payment_gateway',
641         'hashref' => { 'disabled' => '' },
642       });
643     map { $_->gatewaynum, $_->label } @gateways;
644   },
645   'option_sub'  => sub {
646     my $gateway = FS::payment_gateway->by_key(shift);
647     $gateway ? $gateway->label : ''
648   },
649 );
650
651 my %batch_gateway_options = (
652   %payment_gateway_options,
653   'options_sub' => sub {
654     my @gateways = qsearch('payment_gateway',
655       {
656         'disabled'          => '',
657         'gateway_namespace' => 'Business::BatchPayment',
658       }
659     );
660     map { $_->gatewaynum, $_->label } @gateways;
661   },
662 );
663
664 my %invoice_mode_options = (
665   'type'        => 'select-sub',
666   'options_sub' => sub { 
667     my @modes = qsearch({
668         'table' => 'invoice_mode', 
669         'extra_sql' => ' WHERE '.
670           $FS::CurrentUser::CurrentUser->agentnums_sql(null => 1),
671         });
672     map { $_->modenum, $_->modename } @modes;
673   },
674   'option_sub'  => sub { 
675                          my $mode = FS::invoice_mode->by_key(shift);
676                          $mode ? $mode->modename : '',
677                        },
678   'per_agent' => 1,
679 );
680
681 my @cdr_formats = (
682   '' => '',
683   'default' => 'Default',
684   'source_default' => 'Default with source',
685   'accountcode_default' => 'Default plus accountcode',
686   'description_default' => 'Default with description field as destination',
687   'basic' => 'Basic',
688   'simple' => 'Simple',
689   'simple2' => 'Simple with source',
690   'accountcode_simple' => 'Simple with accountcode',
691 );
692
693 # takes the reason class (C, R, S) as an argument
694 sub reason_type_options {
695   my $reason_class = shift;
696
697   'type'        => 'select-sub',
698   'options_sub' => sub {
699     map { $_->typenum => $_->type } 
700       qsearch('reason_type', { class => $reason_class });
701   },
702   'option_sub'  => sub {
703     my $type = FS::reason_type->by_key(shift);
704     $type ? $type->type : '';
705   }
706 }
707
708 my $validate_email = sub { $_[0] =~
709                              /^[^@]+\@[[:alnum:]-]+(\.[[:alnum:]-]+)+$/
710                              ? '' : 'Invalid email address';
711                          };
712
713 #Billing (81 items)
714 #Invoicing (50 items)
715 #UI (69 items)
716 #Self-service (29 items)
717 #...
718 #Unclassified (77 items)
719
720 @config_items = map { new FS::ConfItem $_ } (
721
722   {
723     'key'         => 'event_log_level',
724     'section'     => 'notification',
725     'description' => 'Store events in the internal log if they are at least this severe.  "info" is the default, "debug" is very detailed and noisy.',
726     'type'        => 'select',
727     'select_enum' => [ '', 'debug', 'info', 'notice', 'warning', 'error', ],
728     # don't bother with higher levels
729   },
730
731   {
732     'key'         => 'log_sent_mail',
733     'section'     => 'notification',
734     'description' => 'Enable logging of all sent email.',
735     'type'        => 'checkbox',
736   },
737
738   {
739     'key'         => 'alert_expiration',
740     'section'     => 'deprecated',
741     'description' => 'Enable alerts about credit card expiration.  This is obsolete and no longer works.',
742     'type'        => 'checkbox',
743     'per_agent'   => 1,
744   },
745
746   {
747     'key'         => 'alerter_template',
748     'section'     => 'deprecated',
749     'description' => 'Template file for billing method expiration alerts (i.e. expiring credit cards).',
750     'type'        => 'textarea',
751     'per_agent'   => 1,
752   },
753   
754   {
755     'key'         => 'alerter_msgnum',
756     'section'     => 'deprecated',
757     'description' => 'Template to use for credit card expiration alerts.',
758     %msg_template_options,
759   },
760
761   {
762     'key'         => 'part_pkg-lineage',
763     'section'     => '',
764     'description' => 'When editing a package definition, if setup or recur fees are changed, create a new package rather than changing the existing package.',
765     'type'        => 'checkbox',
766   },
767
768   {
769     'key'         => 'apacheip',
770     #not actually deprecated yet
771     #'section'     => 'deprecated',
772     #'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',
773     'section'     => '',
774     'description' => 'IP address to assign to new virtual hosts',
775     'type'        => 'text',
776   },
777   
778   {
779     'key'         => 'credits-auto-apply-disable',
780     'section'     => 'billing',
781     'description' => 'Disable the "Auto-Apply to invoices" UI option for new credits',
782     'type'        => 'checkbox',
783   },
784   
785   {
786     'key'         => 'credit-card-surcharge-percentage',
787     'section'     => 'billing',
788     'description' => 'Add a credit card surcharge to invoices, as a % of the invoice total.  WARNING: Although recently permitted to US merchants in general, specific consumer protection laws may prohibit or restrict this practice in California, Colorado, Connecticut, Florda, Kansas, Maine, Massachusetts, New York, Oklahome, and Texas.  Surcharging is also generally prohibited in most countries outside the US, AU and UK.  When allowed, typically not permitted to be above 4%.',
789     'type'        => 'text',
790   },
791
792   {
793     'key'         => 'discount-show-always',
794     'section'     => 'billing',
795     'description' => 'Generate a line item on an invoice even when a package is discounted 100%',
796     'type'        => 'checkbox',
797   },
798
799   {
800     'key'         => 'discount-show_available',
801     'section'     => 'billing',
802     'description' => 'Show available prepayment discounts on invoices.',
803     'type'        => 'checkbox',
804   },
805
806   {
807     'key'         => 'invoice-barcode',
808     'section'     => 'billing',
809     'description' => 'Display a barcode on HTML and PDF invoices',
810     'type'        => 'checkbox',
811   },
812   
813   {
814     'key'         => 'cust_main-select-billday',
815     'section'     => 'billing',
816     'description' => 'When used with a specific billing event, allows the selection of the day of month on which to charge credit card / bank account automatically, on a per-customer basis',
817     'type'        => 'checkbox',
818   },
819
820   {
821     'key'         => 'cust_main-select-prorate_day',
822     'section'     => 'billing',
823     'description' => 'When used with prorate or anniversary packages, allows the selection of the prorate day of month, on a per-customer basis',
824     'type'        => 'checkbox',
825   },
826
827   {
828     'key'         => 'anniversary-rollback',
829     'section'     => 'billing',
830     'description' => 'When billing an anniversary package ordered after the 28th, roll the anniversary date back to the 28th instead of forward into the following month.',
831     'type'        => 'checkbox',
832   },
833
834   {
835     'key'         => 'encryption',
836     'section'     => 'billing',
837     'description' => 'Enable encryption of credit cards and echeck numbers',
838     'type'        => 'checkbox',
839   },
840
841   {
842     'key'         => 'encryptionmodule',
843     'section'     => 'billing',
844     'description' => 'Use which module for encryption?',
845     'type'        => 'select',
846     'select_enum' => [ '', 'Crypt::OpenSSL::RSA', ],
847   },
848
849   {
850     'key'         => 'encryptionpublickey',
851     'section'     => 'billing',
852     'description' => 'Encryption public key',
853     'type'        => 'textarea',
854   },
855
856   {
857     'key'         => 'encryptionprivatekey',
858     'section'     => 'billing',
859     'description' => 'Encryption private key',
860     'type'        => 'textarea',
861   },
862
863   {
864     'key'         => 'billco-url',
865     'section'     => 'billing',
866     'description' => 'The url to use for performing uploads to the invoice mailing service.',
867     'type'        => 'text',
868     'per_agent'   => 1,
869   },
870
871   {
872     'key'         => 'billco-username',
873     'section'     => 'billing',
874     'description' => 'The login name to use for uploads to the invoice mailing service.',
875     'type'        => 'text',
876     'per_agent'   => 1,
877     'agentonly'   => 1,
878   },
879
880   {
881     'key'         => 'billco-password',
882     'section'     => 'billing',
883     'description' => 'The password to use for uploads to the invoice mailing service.',
884     'type'        => 'text',
885     'per_agent'   => 1,
886     'agentonly'   => 1,
887   },
888
889   {
890     'key'         => 'billco-clicode',
891     'section'     => 'billing',
892     'description' => 'The clicode to use for uploads to the invoice mailing service.',
893     'type'        => 'text',
894     'per_agent'   => 1,
895   },
896
897   {
898     'key'         => 'billco-account_num',
899     'section'     => 'billing',
900     'description' => 'The data to place in the "Transaction Account No" / "TRACCTNUM" field.',
901     'type'        => 'select',
902     'select_hash' => [
903                        'invnum-date' => 'Invoice number - Date (default)',
904                        'display_custnum'  => 'Customer number',
905                      ],
906     'per_agent'   => 1,
907   },
908
909   {
910     'key'         => 'next-bill-ignore-time',
911     'section'     => 'billing',
912     'description' => 'Ignore the time portion of next bill dates when billing, matching anything from 00:00:00 to 23:59:59 on the billing day.',
913     'type'        => 'checkbox',
914   },
915   
916   {
917     'key'         => 'business-onlinepayment',
918     'section'     => 'billing',
919     '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.  For more detailed information and examples see the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:3:Documentation:Administration:Real-time_Processing">real-time credit card processing documentation</a>.',
920     'type'        => 'textarea',
921   },
922
923   {
924     'key'         => 'business-onlinepayment-ach',
925     'section'     => 'billing',
926     '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.',
927     'type'        => 'textarea',
928   },
929
930   {
931     'key'         => 'business-onlinepayment-namespace',
932     'section'     => 'billing',
933     'description' => 'Specifies which perl module namespace (which group of collection routines) is used by default.',
934     'type'        => 'select',
935     'select_hash' => [
936                        'Business::OnlinePayment' => 'Direct API (Business::OnlinePayment)',
937                        'Business::OnlineThirdPartyPayment' => 'Web API (Business::ThirdPartyPayment)',
938                      ],
939   },
940
941   {
942     'key'         => 'business-onlinepayment-description',
943     'section'     => 'billing',
944     '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 - not available in all situations)',
945     'type'        => 'text',
946   },
947
948   {
949     'key'         => 'business-onlinepayment-email-override',
950     'section'     => 'billing',
951     'description' => 'Email address used instead of customer email address when submitting a BOP transaction.',
952     'type'        => 'text',
953   },
954
955   {
956     'key'         => 'business-onlinepayment-email_customer',
957     'section'     => 'billing',
958     'description' => 'Controls the "email_customer" flag used by some Business::OnlinePayment processors to enable customer receipts.',
959     'type'        => 'checkbox',
960   },
961
962   {
963     'key'         => 'business-onlinepayment-test_transaction',
964     'section'     => 'billing',
965     'description' => 'Turns on the Business::OnlinePayment test_transaction flag.  Note that not all gateway modules support this flag; if yours does not, transactions will still be sent live.',
966     'type'        => 'checkbox',
967   },
968
969   {
970     'key'         => 'business-onlinepayment-currency',
971     'section'     => 'billing',
972     'description' => 'Currency parameter for Business::OnlinePayment transactions.',
973     'type'        => 'select',
974     'select_enum' => [ '', qw( USD AUD CAD DKK EUR GBP ILS JPY NZD ) ],
975   },
976
977   {
978     'key'         => 'currency',
979     'section'     => 'billing',
980     'description' => 'Main accounting currency',
981     'type'        => 'select',
982     'select_enum' => [ '', qw( USD AUD CAD DKK EUR GBP ILS JPY NZD XAF ) ],
983   },
984
985   {
986     'key'         => 'currencies',
987     'section'     => 'billing',
988     'description' => 'Additional accepted currencies',
989     'type'        => 'select-sub',
990     'multiple'    => 1,
991     'options_sub' => sub { 
992                            map { $_ => code2currency($_) } all_currency_codes();
993                          },
994     'sort_sub'    => sub ($$) { $_[0] cmp $_[1]; },
995     'option_sub'  => sub { code2currency(shift); },
996   },
997
998   {
999     'key'         => 'business-batchpayment-test_transaction',
1000     'section'     => 'billing',
1001     'description' => 'Turns on the Business::BatchPayment test_mode flag.  Note that not all gateway modules support this flag; if yours does not, using the batch gateway will fail.',
1002     'type'        => 'checkbox',
1003   },
1004
1005   {
1006     'key'         => 'countrydefault',
1007     'section'     => 'UI',
1008     'description' => 'Default two-letter country code (if not supplied, the default is `US\')',
1009     'type'        => 'text',
1010   },
1011
1012   {
1013     'key'         => 'date_format',
1014     'section'     => 'UI',
1015     'description' => 'Format for displaying dates',
1016     'type'        => 'select',
1017     'select_hash' => [
1018                        '%m/%d/%Y' => 'MM/DD/YYYY',
1019                        '%d/%m/%Y' => 'DD/MM/YYYY',
1020                        '%Y/%m/%d' => 'YYYY/MM/DD',
1021                        '%e %b %Y' => 'DD Mon YYYY',
1022                      ],
1023     'per_locale'  => 1,
1024   },
1025
1026   {
1027     'key'         => 'date_format_long',
1028     'section'     => 'UI',
1029     'description' => 'Verbose format for displaying dates',
1030     'type'        => 'select',
1031     'select_hash' => [
1032                        '%b %o, %Y' => 'Mon DDth, YYYY',
1033                        '%e %b %Y'  => 'DD Mon YYYY',
1034                        '%m/%d/%Y'  => 'MM/DD/YYYY',
1035                        '%d/%m/%Y'  => 'DD/MM/YYYY',
1036                        '%Y/%m/%d'  => 'YYYY/MM/DD',
1037                      ],
1038     'per_locale'  => 1,
1039   },
1040
1041   {
1042     'key'         => 'deleterefunds',
1043     'section'     => 'billing',
1044     'description' => 'Enable deletion of unclosed refunds.  Be very careful!  Only delete refunds that were data-entry errors, not adjustments.',
1045     'type'        => 'checkbox',
1046   },
1047
1048   {
1049     'key'         => 'dirhash',
1050     'section'     => 'shell',
1051     '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>',
1052     'type'        => 'text',
1053   },
1054
1055   {
1056     'key'         => 'disable_cust_attachment',
1057     'section'     => '',
1058     'description' => 'Disable customer file attachments',
1059     'type'        => 'checkbox',
1060   },
1061
1062   {
1063     'key'         => 'max_attachment_size',
1064     'section'     => '',
1065     'description' => 'Maximum size for customer file attachments (leave blank for unlimited)',
1066     'type'        => 'text',
1067   },
1068
1069   {
1070     'key'         => 'disable_customer_referrals',
1071     'section'     => 'UI',
1072     'description' => 'Disable new customer-to-customer referrals in the web interface',
1073     'type'        => 'checkbox',
1074   },
1075
1076   {
1077     'key'         => 'editreferrals',
1078     'section'     => 'UI',
1079     'description' => 'Enable advertising source modification for existing customers',
1080     'type'        => 'checkbox',
1081   },
1082
1083   {
1084     'key'         => 'emailinvoiceonly',
1085     'section'     => 'invoicing',
1086     'description' => 'Disables postal mail invoices',
1087     'type'        => 'checkbox',
1088   },
1089
1090   {
1091     'key'         => 'disablepostalinvoicedefault',
1092     'section'     => 'invoicing',
1093     '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>.',
1094     'type'        => 'checkbox',
1095   },
1096
1097   {
1098     'key'         => 'emailinvoiceauto',
1099     'section'     => 'invoicing',
1100     'description' => 'Automatically adds new accounts to the email invoice list',
1101     'type'        => 'checkbox',
1102   },
1103
1104   {
1105     'key'         => 'emailinvoiceautoalways',
1106     'section'     => 'invoicing',
1107     'description' => 'Automatically adds new accounts to the email invoice list even when the list contains email addresses',
1108     'type'        => 'checkbox',
1109   },
1110
1111   {
1112     'key'         => 'emailinvoice-apostrophe',
1113     'section'     => 'invoicing',
1114     'description' => 'Allows the apostrophe (single quote) character in the email addresses in the email invoice list.',
1115     'type'        => 'checkbox',
1116   },
1117
1118   {
1119     'key'         => 'svc_acct-ip_addr',
1120     'section'     => '',
1121     'description' => 'Enable IP address management on login services like for broadband services.',
1122     'type'        => 'checkbox',
1123   },
1124
1125   {
1126     'key'         => 'exclude_ip_addr',
1127     'section'     => '',
1128     'description' => 'Exclude these from the list of available broadband service IP addresses. (One per line)',
1129     'type'        => 'textarea',
1130   },
1131   
1132   {
1133     'key'         => 'auto_router',
1134     'section'     => '',
1135     'description' => 'Automatically choose the correct router/block based on supplied ip address when possible while provisioning broadband services',
1136     'type'        => 'checkbox',
1137   },
1138   
1139   {
1140     'key'         => 'hidecancelledpackages',
1141     'section'     => 'UI',
1142     'description' => 'Prevent cancelled packages from showing up in listings (though they will still be in the database)',
1143     'type'        => 'checkbox',
1144   },
1145
1146   {
1147     'key'         => 'hidecancelledcustomers',
1148     'section'     => 'UI',
1149     'description' => 'Prevent customers with only cancelled packages from showing up in listings (though they will still be in the database)',
1150     'type'        => 'checkbox',
1151   },
1152
1153   {
1154     'key'         => 'home',
1155     'section'     => 'shell',
1156     'description' => 'For new users, prefixed to username to create a directory name.  Should have a leading but not a trailing slash.',
1157     'type'        => 'text',
1158   },
1159
1160   {
1161     'key'         => 'invoice_from',
1162     'section'     => 'required',
1163     'description' => 'Return address on email invoices (address only, see invoice_from_name)',
1164     'type'        => 'text',
1165     'per_agent'   => 1,
1166     'validate'    => $validate_email,
1167   },
1168
1169   {
1170     'key'         => 'invoice_from_name',
1171     'section'     => 'invoicing',
1172     'description' => 'Return name on email invoices (set address in invoice_from)',
1173     'type'        => 'text',
1174     'per_agent'   => 1,
1175     'validate'    => sub { (($_[0] =~ /[^[:alnum:][:space:]]/) && ($_[0] !~ /^\".*\"$/))
1176                            ? 'Invalid name.  Use quotation marks around names that contain punctuation.'
1177                            : '' }
1178   },
1179
1180   {
1181     'key'         => 'quotation_from',
1182     'section'     => '',
1183     'description' => 'Return address on email quotations',
1184     'type'        => 'text',
1185     'per_agent'   => 1,
1186   },
1187
1188
1189   {
1190     'key'         => 'invoice_subject',
1191     'section'     => 'invoicing',
1192     'description' => 'Subject: header on email invoices.  Defaults to "Invoice".  The following substitutions are available: $name, $name_short, $invoice_number, and $invoice_date.',
1193     'type'        => 'text',
1194     'per_agent'   => 1,
1195     'per_locale'  => 1,
1196   },
1197
1198   {
1199     'key'         => 'quotation_subject',
1200     'section'     => '',
1201     'description' => 'Subject: header on email quotations.  Defaults to "Quotation".', #  The following substitutions are available: $name, $name_short, $invoice_number, and $invoice_date.',
1202     'type'        => 'text',
1203     #'per_agent'   => 1,
1204     'per_locale'  => 1,
1205   },
1206
1207   {
1208     'key'         => 'invoice_usesummary',
1209     'section'     => 'invoicing',
1210     'description' => 'Indicates that html and latex invoices should be in summary style and make use of invoice_latexsummary.',
1211     'type'        => 'checkbox',
1212   },
1213
1214   {
1215     'key'         => 'invoice_template',
1216     'section'     => 'invoicing',
1217     'description' => 'Text template file for invoices.  Used if no invoice_html template is defined, and also seen by users using non-HTML capable mail clients.  See the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:2.1:Documentation:Administration#Plaintext_invoice_templates">billing documentation</a> for details.',
1218     'type'        => 'textarea',
1219   },
1220
1221   {
1222     'key'         => 'invoice_html',
1223     'section'     => 'invoicing',
1224     'description' => 'HTML template for invoices.  See the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:2.1:Documentation:Administration#HTML_invoice_templates">billing documentation</a> for details.',
1225
1226     'type'        => 'textarea',
1227   },
1228
1229   {
1230     'key'         => 'quotation_html',
1231     'section'     => '',
1232     'description' => 'HTML template for quotations.',
1233
1234     'type'        => 'textarea',
1235   },
1236
1237   {
1238     'key'         => 'invoice_htmlnotes',
1239     'section'     => 'invoicing',
1240     'description' => 'Notes section for HTML invoices.  Defaults to the same data in invoice_latexnotes if not specified.',
1241     'type'        => 'textarea',
1242     'per_agent'   => 1,
1243     'per_locale'  => 1,
1244   },
1245
1246   {
1247     'key'         => 'invoice_htmlfooter',
1248     'section'     => 'invoicing',
1249     'description' => 'Footer for HTML invoices.  Defaults to the same data in invoice_latexfooter if not specified.',
1250     'type'        => 'textarea',
1251     'per_agent'   => 1,
1252     'per_locale'  => 1,
1253   },
1254
1255   {
1256     'key'         => 'invoice_htmlsummary',
1257     'section'     => 'invoicing',
1258     'description' => 'Summary initial page for HTML invoices.',
1259     'type'        => 'textarea',
1260     'per_agent'   => 1,
1261     'per_locale'  => 1,
1262   },
1263
1264   {
1265     'key'         => 'invoice_htmlreturnaddress',
1266     'section'     => 'invoicing',
1267     'description' => 'Return address for HTML invoices.  Defaults to the same data in invoice_latexreturnaddress if not specified.',
1268     'type'        => 'textarea',
1269     'per_locale'  => 1,
1270   },
1271
1272   {
1273     'key'         => 'invoice_htmlwatermark',
1274     'section'     => 'invoicing',
1275     'description' => 'Watermark for HTML invoices. Appears in a semitransparent positioned DIV overlaid on the main invoice container.',
1276     'type'        => 'textarea',
1277     'per_agent'   => 1,
1278     'per_locale'  => 1,
1279   },
1280
1281   {
1282     'key'         => 'invoice_latex',
1283     'section'     => 'invoicing',
1284     'description' => 'Optional LaTeX template for typeset PostScript invoices.  See the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:2.1:Documentation:Administration#Typeset_.28LaTeX.29_invoice_templates">billing documentation</a> for details.',
1285     'type'        => 'textarea',
1286   },
1287
1288   {
1289     'key'         => 'quotation_latex',
1290     'section'     => '',
1291     'description' => 'LaTeX template for typeset PostScript quotations.',
1292     'type'        => 'textarea',
1293   },
1294
1295   {
1296     'key'         => 'invoice_latextopmargin',
1297     'section'     => 'invoicing',
1298     'description' => 'Optional LaTeX invoice topmargin setting. Include units.',
1299     'type'        => 'text',
1300     'per_agent'   => 1,
1301     'validate'    => sub { shift =~
1302                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1303                              ? '' : 'Invalid LaTex length';
1304                          },
1305   },
1306
1307   {
1308     'key'         => 'invoice_latexheadsep',
1309     'section'     => 'invoicing',
1310     'description' => 'Optional LaTeX invoice headsep setting. Include units.',
1311     'type'        => 'text',
1312     'per_agent'   => 1,
1313     'validate'    => sub { shift =~
1314                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1315                              ? '' : 'Invalid LaTex length';
1316                          },
1317   },
1318
1319   {
1320     'key'         => 'invoice_latexaddresssep',
1321     'section'     => 'invoicing',
1322     'description' => 'Optional LaTeX invoice separation between invoice header
1323 and customer address. Include units.',
1324     'type'        => 'text',
1325     'per_agent'   => 1,
1326     'validate'    => sub { shift =~
1327                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1328                              ? '' : 'Invalid LaTex length';
1329                          },
1330   },
1331
1332   {
1333     'key'         => 'invoice_latextextheight',
1334     'section'     => 'invoicing',
1335     'description' => 'Optional LaTeX invoice textheight setting. Include units.',
1336     'type'        => 'text',
1337     'per_agent'   => 1,
1338     'validate'    => sub { shift =~
1339                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1340                              ? '' : 'Invalid LaTex length';
1341                          },
1342   },
1343
1344   {
1345     'key'         => 'invoice_latexnotes',
1346     'section'     => 'invoicing',
1347     'description' => 'Notes section for LaTeX typeset PostScript invoices.',
1348     'type'        => 'textarea',
1349     'per_agent'   => 1,
1350     'per_locale'  => 1,
1351   },
1352
1353   {
1354     'key'         => 'quotation_latexnotes',
1355     'section'     => '',
1356     'description' => 'Notes section for LaTeX typeset PostScript quotations.',
1357     'type'        => 'textarea',
1358     'per_agent'   => 1,
1359     'per_locale'  => 1,
1360   },
1361
1362   {
1363     'key'         => 'invoice_latexfooter',
1364     'section'     => 'invoicing',
1365     'description' => 'Footer for LaTeX typeset PostScript invoices.',
1366     'type'        => 'textarea',
1367     'per_agent'   => 1,
1368     'per_locale'  => 1,
1369   },
1370
1371   {
1372     'key'         => 'invoice_latexsummary',
1373     'section'     => 'invoicing',
1374     'description' => 'Summary initial page for LaTeX typeset PostScript invoices.',
1375     'type'        => 'textarea',
1376     'per_agent'   => 1,
1377     'per_locale'  => 1,
1378   },
1379
1380   {
1381     'key'         => 'invoice_latexcoupon',
1382     'section'     => 'invoicing',
1383     'description' => 'Remittance coupon for LaTeX typeset PostScript invoices.',
1384     'type'        => 'textarea',
1385     'per_agent'   => 1,
1386     'per_locale'  => 1,
1387   },
1388
1389   {
1390     'key'         => 'invoice_latexextracouponspace',
1391     'section'     => 'invoicing',
1392     'description' => 'Optional LaTeX invoice textheight space to reserve for a tear off coupon.  Include units.  Default is 3.6cm',
1393     'type'        => 'text',
1394     'per_agent'   => 1,
1395     'validate'    => sub { shift =~
1396                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1397                              ? '' : 'Invalid LaTex length';
1398                          },
1399   },
1400
1401   {
1402     'key'         => 'invoice_latexcouponfootsep',
1403     'section'     => 'invoicing',
1404     'description' => 'Optional LaTeX invoice separation between tear off coupon and footer. Include units.',
1405     'type'        => 'text',
1406     'per_agent'   => 1,
1407     'validate'    => sub { shift =~
1408                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1409                              ? '' : 'Invalid LaTex length';
1410                          },
1411   },
1412
1413   {
1414     'key'         => 'invoice_latexcouponamountenclosedsep',
1415     'section'     => 'invoicing',
1416     'description' => 'Optional LaTeX invoice separation between total due and amount enclosed line. Include units.',
1417     'type'        => 'text',
1418     'per_agent'   => 1,
1419     'validate'    => sub { shift =~
1420                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1421                              ? '' : 'Invalid LaTex length';
1422                          },
1423   },
1424   {
1425     'key'         => 'invoice_latexcoupontoaddresssep',
1426     'section'     => 'invoicing',
1427     'description' => 'Optional LaTeX invoice separation between invoice data and the to address (usually invoice_latexreturnaddress).  Include units.',
1428     'type'        => 'text',
1429     'per_agent'   => 1,
1430     'validate'    => sub { shift =~
1431                              /^-?\d*\.?\d+(in|mm|cm|pt|em|ex|pc|bp|dd|cc|sp)$/
1432                              ? '' : 'Invalid LaTex length';
1433                          },
1434   },
1435
1436   {
1437     'key'         => 'invoice_latexreturnaddress',
1438     'section'     => 'invoicing',
1439     'description' => 'Return address for LaTeX typeset PostScript invoices.',
1440     'type'        => 'textarea',
1441   },
1442
1443   {
1444     'key'         => 'invoice_latexverticalreturnaddress',
1445     'section'     => 'invoicing',
1446     'description' => 'Place the return address under the company logo rather than beside it.',
1447     'type'        => 'checkbox',
1448     'per_agent'   => 1,
1449   },
1450
1451   {
1452     'key'         => 'invoice_latexcouponaddcompanytoaddress',
1453     'section'     => 'invoicing',
1454     'description' => 'Add the company name to the To address on the remittance coupon because the return address does not contain it.',
1455     'type'        => 'checkbox',
1456     'per_agent'   => 1,
1457   },
1458
1459   {
1460     'key'         => 'invoice_latexsmallfooter',
1461     'section'     => 'invoicing',
1462     'description' => 'Optional small footer for multi-page LaTeX typeset PostScript invoices.',
1463     'type'        => 'textarea',
1464     'per_agent'   => 1,
1465     'per_locale'  => 1,
1466   },
1467
1468   {
1469     'key'         => 'invoice_latexwatermark',
1470     'section'     => 'invoicing',
1471     'description' => 'Watermark for LaTeX invoices. See "texdoc background" for information on what this can contain. The content itself should be enclosed in braces, optionally followed by a comma and any formatting options.',
1472     'type'        => 'textarea',
1473     'per_agent'   => 1,
1474     'per_locale'  => 1,
1475   },
1476
1477   {
1478     'key'         => 'invoice_email_pdf',
1479     'section'     => 'invoicing',
1480     'description' => 'Send PDF invoice as an attachment to emailed invoices.  By default, includes the HTML invoice as the email body, unless invoice_email_pdf_note is set.',
1481     'type'        => 'checkbox'
1482   },
1483
1484   {
1485     'key'         => 'quotation_email_pdf',
1486     'section'     => '',
1487     'description' => 'Send PDF quotations as an attachment to emailed quotations.  By default, includes the HTML quotation as the email body, unless quotation_email_pdf_note is set.',
1488     'type'        => 'checkbox'
1489   },
1490
1491   {
1492     'key'         => 'invoice_email_pdf_msgnum',
1493     'section'     => 'invoicing',
1494     'description' => 'Message template to send as the text and HTML part of PDF invoices. If not selected, a text and HTML version of the invoice will be sent.',
1495     %msg_template_options,
1496   },
1497
1498   {
1499     'key'         => 'invoice_email_pdf_note',
1500     'section'     => 'invoicing',
1501     'description' => 'If defined, this text will replace the default HTML invoice as the body of emailed PDF invoices.',
1502     'type'        => 'textarea'
1503   },
1504
1505   {
1506     'key'         => 'quotation_email_pdf_note',
1507     'section'     => '',
1508     'description' => 'If defined, this text will replace the default HTML quotation as the body of emailed PDF quotations.',
1509     'type'        => 'textarea'
1510   },
1511
1512   {
1513     'key'         => 'invoice_print_pdf',
1514     'section'     => 'invoicing',
1515     'description' => 'For all invoice print operations, store postal invoices for download in PDF format rather than printing them directly.',
1516     'type'        => 'checkbox',
1517   },
1518
1519   {
1520     'key'         => 'invoice_print_pdf-spoolagent',
1521     'section'     => 'invoicing',
1522     'description' => 'Store postal invoices PDF downloads in per-agent spools.',
1523     'type'        => 'checkbox',
1524   },
1525
1526   {
1527     'key'         => 'invoice_print_pdf-duplex',
1528     'section'     => 'invoicing',
1529     'description' => 'Insert blank pages so that spooled invoices are each an even number of pages.  Use this for double-sided printing.',
1530     'type'        => 'checkbox',
1531   },
1532
1533   { 
1534     'key'         => 'invoice_default_terms',
1535     'section'     => 'invoicing',
1536     'description' => 'Optional default invoice term, used to calculate a due date printed on invoices.',
1537     'type'        => 'select',
1538     'per_agent'   => 1,
1539     'select_enum' => [ 
1540       '', 'Payable upon receipt', 'Net 0', 'Net 3', 'Net 5', 'Net 7', 'Net 9', 'Net 10', 'Net 14', 
1541       'Net 15', 'Net 18', 'Net 20', 'Net 21', 'Net 25', 'Net 30', 'Net 45', 
1542       'Net 60', 'Net 90'
1543     ], },
1544
1545   { 
1546     'key'         => 'invoice_show_prior_due_date',
1547     'section'     => 'invoicing',
1548     'description' => 'Show previous invoice due dates when showing prior balances.  Default is to show invoice date.',
1549     'type'        => 'checkbox',
1550   },
1551
1552   { 
1553     'key'         => 'invoice_sections',
1554     'section'     => 'invoicing',
1555     'description' => 'Split invoice into sections and label according to package category when enabled.',
1556     'type'        => 'checkbox',
1557     'per_agent'   => 1,
1558   },
1559
1560   { 
1561     'key'         => 'invoice_include_aging',
1562     'section'     => 'invoicing',
1563     'description' => 'Show an aging line after the prior balance section.  Only valid when invoice_sections is enabled.',
1564     'type'        => 'checkbox',
1565   },
1566
1567   {
1568     'key'         => 'invoice_sections_method',
1569     'section'     => 'invoicing',
1570     'description' => 'How to group line items on multi-section invoices.',
1571     'type'        => 'select',
1572     'select_enum' => [ qw(category location) ],
1573   },
1574
1575   {
1576     'key'         => 'summary_subtotals_method',
1577     'section'     => 'invoicing',
1578     'description' => 'How to group line items when calculating summary subtotals.  By default, it will be the same method used for grouping invoice sections.',
1579     'type'        => 'select',
1580     'select_enum' => [ qw(category location) ],
1581   },
1582
1583   #quotations seem broken-ish with sections ATM?
1584   #{ 
1585   #  'key'         => 'quotation_sections',
1586   #  'section'     => 'invoicing',
1587   #  'description' => 'Split quotations into sections and label according to package category when enabled.',
1588   #  'type'        => 'checkbox',
1589   #  'per_agent'   => 1,
1590   #},
1591
1592   {
1593     'key'         => 'usage_class_summary',
1594     'section'     => 'invoicing',
1595     'description' => 'Summarize total usage by usage class in a separate section.',
1596     'type'        => 'checkbox',
1597   },
1598
1599   { 
1600     'key'         => 'usage_class_as_a_section',
1601     'section'     => 'invoicing',
1602     'description' => 'Split usage into sections and label according to usage class name when enabled.  Only valid when invoice_sections is enabled.',
1603     'type'        => 'checkbox',
1604   },
1605
1606   { 
1607     'key'         => 'phone_usage_class_summary',
1608     'section'     => 'invoicing',
1609     'description' => 'Summarize usage per DID by usage class and display all CDRs together regardless of usage class. Only valid when svc_phone_sections is enabled.',
1610     'type'        => 'checkbox',
1611   },
1612
1613   { 
1614     'key'         => 'svc_phone_sections',
1615     'section'     => 'invoicing',
1616     'description' => 'Create a section for each svc_phone when enabled.  Only valid when invoice_sections is enabled.',
1617     'type'        => 'checkbox',
1618   },
1619
1620   {
1621     'key'         => 'finance_pkgclass',
1622     'section'     => 'billing',
1623     'description' => 'The default package class for late fee charges, used if the fee event does not specify a package class itself.',
1624     'type'        => 'select-pkg_class',
1625   },
1626
1627   { 
1628     'key'         => 'separate_usage',
1629     'section'     => 'invoicing',
1630     'description' => 'Split the rated call usage into a separate line from the recurring charges.',
1631     'type'        => 'checkbox',
1632   },
1633
1634   {
1635     'key'         => 'payment_receipt',
1636     'section'     => 'notification',
1637     'description' => 'Send payment receipts.',
1638     'type'        => 'checkbox',
1639     'per_agent'   => 1,
1640     'agent_bool'  => 1,
1641   },
1642
1643   {
1644     'key'         => 'payment_receipt_statement_mode',
1645     'section'     => 'notification',
1646     'description' => 'Automatic payments will cause a post-payment statement to be sent to the customer. Select the invoice mode to use for this statement. If unspecified, it will use the "_statement" versions of invoice configuration settings, and have the notice name "Statement".',
1647     %invoice_mode_options,
1648   },
1649
1650   {
1651     'key'         => 'payment_receipt_msgnum',
1652     'section'     => 'notification',
1653     'description' => 'Template to use for manual payment receipts.',
1654     %msg_template_options,
1655   },
1656   
1657   {
1658     'key'         => 'payment_receipt_from',
1659     'section'     => 'notification',
1660     'description' => 'From: address for payment receipts, if not specified in the template.',
1661     'type'        => 'text',
1662     'per_agent'   => 1,
1663   },
1664
1665   {
1666     'key'         => 'payment_receipt-trigger',
1667     'section'     => 'notification',
1668     'description' => 'When payment receipts are triggered.  Defaults to when payment is made.',
1669     'type'        => 'select',
1670     'select_hash' => [
1671                        'cust_pay'          => 'When payment is made.',
1672                        'cust_bill_pay_pkg' => 'When payment is applied.',
1673                      ],
1674     'per_agent'   => 1,
1675   },
1676
1677   {
1678     'key'         => 'refund_receipt_msgnum',
1679     'section'     => 'notification',
1680     'description' => 'Template to use for manual refund receipts.',
1681     %msg_template_options,
1682   },
1683   
1684   {
1685     'key'         => 'trigger_export_insert_on_payment',
1686     'section'     => 'billing',
1687     'description' => 'Enable exports on payment application.',
1688     'type'        => 'checkbox',
1689   },
1690
1691   {
1692     'key'         => 'lpr',
1693     'section'     => 'required',
1694     'description' => 'Print command for paper invoices, for example `lpr -h\'',
1695     'type'        => 'text',
1696     'per_agent'   => 1,
1697   },
1698
1699   {
1700     'key'         => 'lpr-postscript_prefix',
1701     'section'     => 'billing',
1702     'description' => 'Raw printer commands prepended to the beginning of postscript print jobs (evaluated as a double-quoted perl string - backslash escapes are available)',
1703     'type'        => 'text',
1704   },
1705
1706   {
1707     'key'         => 'lpr-postscript_suffix',
1708     'section'     => 'billing',
1709     'description' => 'Raw printer commands added to the end of postscript print jobs (evaluated as a double-quoted perl string - backslash escapes are available)',
1710     'type'        => 'text',
1711   },
1712
1713   {
1714     'key'         => 'papersize',
1715     'section'     => 'billing',
1716     'description' => 'Invoice paper size.  Default is "letter" (U.S. standard).  The LaTeX template must be configured to match this size.',
1717     'type'        => 'select',
1718     'select_enum' => [ qw(letter a4) ],
1719   },
1720
1721   {
1722     'key'         => 'money_char',
1723     'section'     => '',
1724     'description' => 'Currency symbol - defaults to `$\'',
1725     'type'        => 'text',
1726   },
1727
1728   {
1729     'key'         => 'defaultrecords',
1730     'section'     => 'BIND',
1731     'description' => 'DNS entries to add automatically when creating a domain',
1732     'type'        => 'editlist',
1733     'editlist_parts' => [ { type=>'text' },
1734                           { type=>'immutable', value=>'IN' },
1735                           { type=>'select',
1736                             select_enum => {
1737                               map { $_=>$_ }
1738                                   #@{ FS::domain_record->rectypes }
1739                                   qw(A AAAA CNAME MX NS PTR SPF SRV TXT)
1740                             },
1741                           },
1742                           { type=> 'text' }, ],
1743   },
1744
1745   {
1746     'key'         => 'passwordmin',
1747     'section'     => 'password',
1748     'description' => 'Minimum password length (default 6)',
1749     'type'        => 'text',
1750   },
1751
1752   {
1753     'key'         => 'passwordmax',
1754     'section'     => 'password',
1755     'description' => 'Maximum password length (default 8) (don\'t set this over 12 if you need to import or export crypt() passwords)',
1756     'type'        => 'text',
1757   },
1758
1759   {
1760     'key'         => 'sip_passwordmin',
1761     'section'     => 'telephony',
1762     'description' => 'Minimum SIP password length (default 6)',
1763     'type'        => 'text',
1764   },
1765
1766   {
1767     'key'         => 'sip_passwordmax',
1768     'section'     => 'telephony',
1769     'description' => 'Maximum SIP password length (default 80)',
1770     'type'        => 'text',
1771   },
1772
1773
1774   {
1775     'key'         => 'password-noampersand',
1776     'section'     => 'password',
1777     'description' => 'Disallow ampersands in passwords',
1778     'type'        => 'checkbox',
1779   },
1780
1781   {
1782     'key'         => 'password-noexclamation',
1783     'section'     => 'password',
1784     'description' => 'Disallow exclamations in passwords (Not setting this could break old text Livingston or Cistron Radius servers)',
1785     'type'        => 'checkbox',
1786   },
1787
1788   {
1789     'key'         => 'default-password-encoding',
1790     'section'     => 'password',
1791     'description' => 'Default storage format for passwords',
1792     'type'        => 'select',
1793     'select_hash' => [
1794       'plain'       => 'Plain text',
1795       'crypt-des'   => 'Unix password (DES encrypted)',
1796       'crypt-md5'   => 'Unix password (MD5 digest)',
1797       'ldap-plain'  => 'LDAP (plain text)',
1798       'ldap-crypt'  => 'LDAP (DES encrypted)',
1799       'ldap-md5'    => 'LDAP (MD5 digest)',
1800       'ldap-sha1'   => 'LDAP (SHA1 digest)',
1801       'legacy'      => 'Legacy mode',
1802     ],
1803   },
1804
1805   {
1806     'key'         => 'referraldefault',
1807     'section'     => 'UI',
1808     'description' => 'Default referral, specified by refnum',
1809     'type'        => 'select-sub',
1810     'options_sub' => sub { require FS::Record;
1811                            require FS::part_referral;
1812                            map { $_->refnum => $_->referral }
1813                                FS::Record::qsearch( 'part_referral', 
1814                                                     { 'disabled' => '' }
1815                                                   );
1816                          },
1817     'option_sub'  => sub { require FS::Record;
1818                            require FS::part_referral;
1819                            my $part_referral = FS::Record::qsearchs(
1820                              'part_referral', { 'refnum'=>shift } );
1821                            $part_referral ? $part_referral->referral : '';
1822                          },
1823   },
1824
1825 #  {
1826 #    'key'         => 'registries',
1827 #    'section'     => 'required',
1828 #    'description' => 'Directory which contains domain registry information.  Each registry is a directory.',
1829 #  },
1830
1831   {
1832     'key'         => 'maxsearchrecordsperpage',
1833     'section'     => 'UI',
1834     'description' => 'If set, number of search records to return per page.',
1835     'type'        => 'text',
1836   },
1837
1838   {
1839     'key'         => 'disable_maxselect',
1840     'section'     => 'UI',
1841     'description' => 'Prevent changing the number of records per page.',
1842     'type'        => 'checkbox',
1843   },
1844
1845   {
1846     'key'         => 'session-start',
1847     'section'     => 'session',
1848     '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.',
1849     'type'        => 'text',
1850   },
1851
1852   {
1853     'key'         => 'session-stop',
1854     'section'     => 'session',
1855     '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.',
1856     'type'        => 'text',
1857   },
1858
1859   {
1860     'key'         => 'shells',
1861     'section'     => 'shell',
1862     '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.',
1863     'type'        => 'textarea',
1864   },
1865
1866   {
1867     'key'         => 'showpasswords',
1868     'section'     => 'UI',
1869     'description' => 'Display unencrypted user passwords in the backend (employee) web interface',
1870     'type'        => 'checkbox',
1871   },
1872
1873   {
1874     'key'         => 'report-showpasswords',
1875     'section'     => 'UI',
1876     'description' => 'This is a terrible idea.  Do not enable it.  STRONGLY NOT RECOMMENDED.  Enables display of passwords on services reports.',
1877     'type'        => 'checkbox',
1878   },
1879
1880   {
1881     'key'         => 'signupurl',
1882     'section'     => 'UI',
1883     'description' => 'if you are using customer-to-customer referrals, and you enter the URL of your <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:2.1:Documentation:Self-Service_Installation">signup server CGI</a>, the customer view screen will display a customized link to the signup server with the appropriate customer as referral',
1884     'type'        => 'text',
1885   },
1886
1887   {
1888     'key'         => 'smtpmachine',
1889     'section'     => 'required',
1890     'description' => 'SMTP relay for Freeside\'s outgoing mail',
1891     'type'        => 'text',
1892   },
1893
1894   {
1895     'key'         => 'smtp-username',
1896     'section'     => '',
1897     'description' => 'Optional SMTP username for Freeside\'s outgoing mail',
1898     'type'        => 'text',
1899   },
1900
1901   {
1902     'key'         => 'smtp-password',
1903     'section'     => '',
1904     'description' => 'Optional SMTP password for Freeside\'s outgoing mail',
1905     'type'        => 'text',
1906   },
1907
1908   {
1909     'key'         => 'smtp-encryption',
1910     'section'     => '',
1911     'description' => 'Optional SMTP encryption method.  The STARTTLS methods require smtp-username and smtp-password to be set.',
1912     'type'        => 'select',
1913     'select_hash' => [ '25'           => 'None (port 25)',
1914                        '25-starttls'  => 'STARTTLS (port 25)',
1915                        '587-starttls' => 'STARTTLS / submission (port 587)',
1916                        '465-tls'      => 'SMTPS (SSL) (port 465)',
1917                      ],
1918   },
1919
1920   {
1921     'key'         => 'soadefaultttl',
1922     'section'     => 'BIND',
1923     'description' => 'SOA default TTL for new domains.',
1924     'type'        => 'text',
1925   },
1926
1927   {
1928     'key'         => 'soaemail',
1929     'section'     => 'BIND',
1930     'description' => 'SOA email for new domains, in BIND form (`.\' instead of `@\'), with trailing `.\'',
1931     'type'        => 'text',
1932   },
1933
1934   {
1935     'key'         => 'soaexpire',
1936     'section'     => 'BIND',
1937     'description' => 'SOA expire for new domains',
1938     'type'        => 'text',
1939   },
1940
1941   {
1942     'key'         => 'soamachine',
1943     'section'     => 'BIND',
1944     'description' => 'SOA machine for new domains, with trailing `.\'',
1945     'type'        => 'text',
1946   },
1947
1948   {
1949     'key'         => 'soarefresh',
1950     'section'     => 'BIND',
1951     'description' => 'SOA refresh for new domains',
1952     'type'        => 'text',
1953   },
1954
1955   {
1956     'key'         => 'soaretry',
1957     'section'     => 'BIND',
1958     'description' => 'SOA retry for new domains',
1959     'type'        => 'text',
1960   },
1961
1962   {
1963     'key'         => 'statedefault',
1964     'section'     => 'UI',
1965     'description' => 'Default state or province (if not supplied, the default is `CA\')',
1966     'type'        => 'text',
1967   },
1968
1969   {
1970     'key'         => 'unsuspendauto',
1971     'section'     => 'billing',
1972     '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',
1973     'type'        => 'checkbox',
1974   },
1975
1976   {
1977     'key'         => 'unsuspend-always_adjust_next_bill_date',
1978     'section'     => 'billing',
1979     '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.',
1980     'type'        => 'checkbox',
1981   },
1982
1983   {
1984     'key'         => 'usernamemin',
1985     'section'     => 'username',
1986     'description' => 'Minimum username length (default 2)',
1987     'type'        => 'text',
1988   },
1989
1990   {
1991     'key'         => 'usernamemax',
1992     'section'     => 'username',
1993     'description' => 'Maximum username length',
1994     'type'        => 'text',
1995   },
1996
1997   {
1998     'key'         => 'username-ampersand',
1999     'section'     => 'username',
2000     '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.',
2001     'type'        => 'checkbox',
2002   },
2003
2004   {
2005     'key'         => 'username-letter',
2006     'section'     => 'username',
2007     'description' => 'Usernames must contain at least one letter',
2008     'type'        => 'checkbox',
2009     'per_agent'   => 1,
2010   },
2011
2012   {
2013     'key'         => 'username-letterfirst',
2014     'section'     => 'username',
2015     'description' => 'Usernames must start with a letter',
2016     'type'        => 'checkbox',
2017   },
2018
2019   {
2020     'key'         => 'username-noperiod',
2021     'section'     => 'username',
2022     'description' => 'Disallow periods in usernames',
2023     'type'        => 'checkbox',
2024   },
2025
2026   {
2027     'key'         => 'username-nounderscore',
2028     'section'     => 'username',
2029     'description' => 'Disallow underscores in usernames',
2030     'type'        => 'checkbox',
2031   },
2032
2033   {
2034     'key'         => 'username-nodash',
2035     'section'     => 'username',
2036     'description' => 'Disallow dashes in usernames',
2037     'type'        => 'checkbox',
2038   },
2039
2040   {
2041     'key'         => 'username-uppercase',
2042     'section'     => 'username',
2043     'description' => 'Allow uppercase characters in usernames.  Not recommended for use with FreeRADIUS with MySQL backend, which is case-insensitive by default.',
2044     'type'        => 'checkbox',
2045     'per_agent'   => 1,
2046   },
2047
2048   { 
2049     'key'         => 'username-percent',
2050     'section'     => 'username',
2051     'description' => 'Allow the percent character (%) in usernames.',
2052     'type'        => 'checkbox',
2053   },
2054
2055   { 
2056     'key'         => 'username-colon',
2057     'section'     => 'username',
2058     'description' => 'Allow the colon character (:) in usernames.',
2059     'type'        => 'checkbox',
2060   },
2061
2062   { 
2063     'key'         => 'username-slash',
2064     'section'     => 'username',
2065     'description' => 'Allow the slash character (/) in usernames.  When using, make sure to set "Home directory" to fixed and blank in all svc_acct service definitions.',
2066     'type'        => 'checkbox',
2067   },
2068
2069   { 
2070     'key'         => 'username-equals',
2071     'section'     => 'username',
2072     'description' => 'Allow the equal sign character (=) in usernames.',
2073     'type'        => 'checkbox',
2074   },
2075
2076   {
2077     'key'         => 'show_ship_company',
2078     'section'     => 'UI',
2079     'description' => 'Turns on display/collection of a "service company name" field for customers.',
2080     'type'        => 'checkbox',
2081   },
2082
2083   {
2084     'key'         => 'show_ss',
2085     'section'     => 'UI',
2086     'description' => 'Turns on display/collection of social security numbers in the web interface.  Sometimes required by electronic check (ACH) processors.',
2087     'type'        => 'checkbox',
2088   },
2089
2090   {
2091     'key'         => 'unmask_ss',
2092     'section'     => 'UI',
2093     'description' => "Don't mask social security numbers in the web interface.",
2094     'type'        => 'checkbox',
2095   },
2096
2097   {
2098     'key'         => 'show_stateid',
2099     'section'     => 'UI',
2100     'description' => "Turns on display/collection of driver's license/state issued id numbers in the web interface.  Sometimes required by electronic check (ACH) processors.",
2101     'type'        => 'checkbox',
2102   },
2103
2104   {
2105     'key'         => 'national_id-country',
2106     'section'     => 'UI',
2107     'description' => 'Track a national identification number, for specific countries.',
2108     'type'        => 'select',
2109     'select_enum' => [ '', 'MY' ],
2110   },
2111
2112   {
2113     'key'         => 'show_bankstate',
2114     'section'     => 'UI',
2115     'description' => "Turns on display/collection of state for bank accounts in the web interface.  Sometimes required by electronic check (ACH) processors.",
2116     'type'        => 'checkbox',
2117   },
2118
2119   { 
2120     'key'         => 'agent_defaultpkg',
2121     'section'     => 'UI',
2122     'description' => 'Setting this option will cause new packages to be available to all agent types by default.',
2123     'type'        => 'checkbox',
2124   },
2125
2126   {
2127     'key'         => 'legacy_link',
2128     'section'     => 'UI',
2129     'description' => 'Display options in the web interface to link legacy pre-Freeside services.',
2130     'type'        => 'checkbox',
2131   },
2132
2133   {
2134     'key'         => 'legacy_link-steal',
2135     'section'     => 'UI',
2136     'description' => 'Allow "stealing" an already-audited service from one customer (or package) to another using the link function.',
2137     'type'        => 'checkbox',
2138   },
2139
2140   {
2141     'key'         => 'queue_dangerous_controls',
2142     'section'     => 'UI',
2143     '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.',
2144     'type'        => 'checkbox',
2145   },
2146
2147   {
2148     'key'         => 'security_phrase',
2149     'section'     => 'password',
2150     'description' => 'Enable the tracking of a "security phrase" with each account.  Not recommended, as it is vulnerable to social engineering.',
2151     'type'        => 'checkbox',
2152   },
2153
2154   {
2155     'key'         => 'locale',
2156     'section'     => 'UI',
2157     'description' => 'Default locale',
2158     'type'        => 'select-sub',
2159     'options_sub' => sub {
2160       map { $_ => FS::Locales->description($_) } FS::Locales->locales;
2161     },
2162     'option_sub'  => sub {
2163       FS::Locales->description(shift)
2164     },
2165   },
2166
2167   {
2168     'key'         => 'signup_server-payby',
2169     'section'     => 'self-service',
2170     'description' => 'Acceptable payment types for the signup server',
2171     'type'        => 'selectmultiple',
2172     'select_enum' => [ qw(CARD DCRD CHEK DCHK PREPAY PPAL ) ], # BILL COMP) ],
2173   },
2174
2175   {
2176     'key'         => 'selfservice-payment_gateway',
2177     'section'     => 'self-service',
2178     'description' => 'Force the use of this payment gateway for self-service.',
2179     %payment_gateway_options,
2180   },
2181
2182   {
2183     'key'         => 'selfservice-save_unchecked',
2184     'section'     => 'self-service',
2185     'description' => 'In self-service, uncheck "Remember information" checkboxes by default (normally, they are checked by default).',
2186     'type'        => 'checkbox',
2187   },
2188
2189   {
2190     'key'         => 'default_agentnum',
2191     'section'     => 'UI',
2192     'description' => 'Default agent for the backoffice',
2193     'type'        => 'select-agent',
2194   },
2195
2196   {
2197     'key'         => 'signup_server-default_agentnum',
2198     'section'     => 'self-service',
2199     'description' => 'Default agent for the signup server',
2200     'type'        => 'select-agent',
2201   },
2202
2203   {
2204     'key'         => 'signup_server-default_refnum',
2205     'section'     => 'self-service',
2206     'description' => 'Default advertising source for the signup server',
2207     'type'        => 'select-sub',
2208     'options_sub' => sub { require FS::Record;
2209                            require FS::part_referral;
2210                            map { $_->refnum => $_->referral }
2211                                FS::Record::qsearch( 'part_referral', 
2212                                                     { 'disabled' => '' }
2213                                                   );
2214                          },
2215     'option_sub'  => sub { require FS::Record;
2216                            require FS::part_referral;
2217                            my $part_referral = FS::Record::qsearchs(
2218                              'part_referral', { 'refnum'=>shift } );
2219                            $part_referral ? $part_referral->referral : '';
2220                          },
2221   },
2222
2223   {
2224     'key'         => 'signup_server-default_pkgpart',
2225     'section'     => 'self-service',
2226     'description' => 'Default package for the signup server',
2227     'type'        => 'select-part_pkg',
2228   },
2229
2230   {
2231     'key'         => 'signup_server-default_svcpart',
2232     'section'     => 'self-service',
2233     'description' => 'Default service definition for the signup server - only necessary for services that trigger special provisioning widgets (such as DID provisioning or domain selection).',
2234     'type'        => 'select-part_svc',
2235   },
2236
2237   {
2238     'key'         => 'signup_server-default_domsvc',
2239     'section'     => 'self-service',
2240     'description' => 'If specified, the default domain svcpart for signup (useful when domain is set to selectable choice).',
2241     'type'        => 'text',
2242   },
2243
2244   {
2245     'key'         => 'signup_server-mac_addr_svcparts',
2246     'section'     => 'self-service',
2247     'description' => 'Service definitions which can receive mac addresses (current mapped to username for svc_acct).',
2248     'type'        => 'select-part_svc',
2249     'multiple'    => 1,
2250   },
2251
2252   {
2253     'key'         => 'signup_server-nomadix',
2254     'section'     => 'self-service',
2255     'description' => 'Signup page Nomadix integration',
2256     'type'        => 'checkbox',
2257   },
2258
2259   {
2260     'key'         => 'signup_server-service',
2261     'section'     => 'self-service',
2262     'description' => 'Service for the signup server - "Account (svc_acct)" is the default setting, or "Phone number (svc_phone)" for ITSP signup',
2263     'type'        => 'select',
2264     'select_hash' => [
2265                        'svc_acct'  => 'Account (svc_acct)',
2266                        'svc_phone' => 'Phone number (svc_phone)',
2267                        'svc_pbx'   => 'PBX (svc_pbx)',
2268                        'none'      => 'None - package only',
2269                      ],
2270   },
2271   
2272   {
2273     'key'         => 'signup_server-prepaid-template-custnum',
2274     'section'     => 'self-service',
2275     'description' => 'When the signup server is used with prepaid cards and customer info is not required for signup, the contact/address info will be copied from this customer, if specified',
2276     'type'        => 'text',
2277   },
2278
2279   {
2280     'key'         => 'signup_server-terms_of_service',
2281     'section'     => 'self-service',
2282     'description' => 'Terms of Service for the signup server.  May contain HTML.',
2283     'type'        => 'textarea',
2284     'per_agent'   => 1,
2285   },
2286
2287   {
2288     'key'         => 'selfservice_server-base_url',
2289     'section'     => 'self-service',
2290     'description' => 'Base URL for the self-service web interface - necessary for some widgets to find their way, including retrieval of non-US state information and phone number provisioning.',
2291     'type'        => 'text',
2292   },
2293
2294   {
2295     'key'         => 'show-msgcat-codes',
2296     'section'     => 'UI',
2297     'description' => 'Show msgcat codes in error messages.  Turn this option on before reporting errors to the mailing list.',
2298     'type'        => 'checkbox',
2299   },
2300
2301   {
2302     'key'         => 'signup_server-realtime',
2303     'section'     => 'self-service',
2304     'description' => 'Run billing for signup server signups immediately, and do not provision accounts which subsequently have a balance.',
2305     'type'        => 'checkbox',
2306   },
2307
2308   {
2309     'key'         => 'signup_server-classnum2',
2310     'section'     => 'self-service',
2311     'description' => 'Package Class for first optional purchase',
2312     'type'        => 'select-pkg_class',
2313   },
2314
2315   {
2316     'key'         => 'signup_server-classnum3',
2317     'section'     => 'self-service',
2318     'description' => 'Package Class for second optional purchase',
2319     'type'        => 'select-pkg_class',
2320   },
2321
2322   {
2323     'key'         => 'signup_server-third_party_as_card',
2324     'section'     => 'self-service',
2325     'description' => 'Allow customer payment type to be set to CARD even when using third-party credit card billing.',
2326     'type'        => 'checkbox',
2327   },
2328
2329   {
2330     'key'         => 'selfservice-xmlrpc',
2331     'section'     => 'self-service',
2332     'description' => 'Run a standalone self-service XML-RPC server on the backend (on port 8080).',
2333     'type'        => 'checkbox',
2334   },
2335
2336   {
2337     'key'         => 'selfservice-timeout',
2338     'section'     => 'self-service',
2339     'description' => 'Timeout for the self-service login cookie, in seconds.  Defaults to 1 hour.',
2340     'type'        => 'text',
2341   },
2342
2343   {
2344     'key'         => 'backend-realtime',
2345     'section'     => 'billing',
2346     'description' => 'Run billing for backend signups immediately.',
2347     'type'        => 'checkbox',
2348   },
2349
2350   {
2351     'key'         => 'decline_msgnum',
2352     'section'     => 'notification',
2353     'description' => 'Template to use for credit card and electronic check decline messages.',
2354     %msg_template_options,
2355   },
2356
2357   {
2358     'key'         => 'emaildecline',
2359     'section'     => 'notification',
2360     'description' => 'Enable emailing of credit card and electronic check decline notices.',
2361     'type'        => 'checkbox',
2362     'per_agent'   => 1,
2363   },
2364
2365   {
2366     'key'         => 'emaildecline-exclude',
2367     'section'     => 'notification',
2368     'description' => 'List of error messages that should not trigger email decline notices, one per line.',
2369     'type'        => 'textarea',
2370     'per_agent'   => 1,
2371   },
2372
2373   {
2374     'key'         => 'cancel_msgnum',
2375     'section'     => 'notification',
2376     'description' => 'Template to use for cancellation emails.',
2377     %msg_template_options,
2378   },
2379
2380   {
2381     'key'         => 'emailcancel',
2382     'section'     => 'notification',
2383     'description' => 'Enable emailing of cancellation notices.  Make sure to select the template in the cancel_msgnum option.',
2384     'type'        => 'checkbox',
2385     'per_agent'   => 1,
2386   },
2387
2388   {
2389     'key'         => 'bill_usage_on_cancel',
2390     'section'     => 'billing',
2391     'description' => 'Enable automatic generation of an invoice for usage when a package is cancelled.  Not all packages can do this.  Usage data must already be available.',
2392     'type'        => 'checkbox',
2393   },
2394
2395   {
2396     'key'         => 'require_cardname',
2397     'section'     => 'billing',
2398     'description' => 'Require an "Exact name on card" to be entered explicitly; don\'t default to using the first and last name.',
2399     'type'        => 'checkbox',
2400   },
2401
2402   {
2403     'key'         => 'enable_taxclasses',
2404     'section'     => 'taxation',
2405     'description' => 'Enable per-package tax classes',
2406     'type'        => 'checkbox',
2407   },
2408
2409   {
2410     'key'         => 'require_taxclasses',
2411     'section'     => 'taxation',
2412     'description' => 'Require a taxclass to be entered for every package',
2413     'type'        => 'checkbox',
2414   },
2415
2416   {
2417     'key'         => 'tax_data_vendor',
2418     'section'     => 'taxation',
2419     'description' => 'Tax data vendor you are using.',
2420     'type'        => 'select',
2421     'select_enum' => [ '', 'cch', 'billsoft', 'avalara', 'suretax' ],
2422   },
2423
2424   {
2425     'key'         => 'taxdatadirectdownload',
2426     'section'     => 'taxation',
2427     'description' => 'Enable downloading tax data directly from CCH. at least three lines: URL, username, and password.j',
2428     'type'        => 'textarea',
2429   },
2430
2431   {
2432     'key'         => 'ignore_incalculable_taxes',
2433     'section'     => 'taxation',
2434     'description' => 'Prefer to invoice without tax over not billing at all',
2435     'type'        => 'checkbox',
2436   },
2437
2438   {
2439     'key'         => 'billsoft-company_code',
2440     'section'     => 'taxation',
2441     'description' => 'Billsoft tax service company code (3 letters)',
2442     'type'        => 'text',
2443   },
2444
2445   {
2446     'key'         => 'avalara-taxconfig',
2447     'section'     => 'taxation',
2448     'description' => 'Avalara tax service configuration. Four lines: company code, account number, license key, test mode (1 to enable).',
2449     'type'        => 'textarea',
2450   },
2451
2452   {
2453     'key'         => 'suretax-hostname',
2454     'section'     => 'taxation',
2455     'description' => 'SureTax server name; defaults to the test server.',
2456     'type'        => 'text',
2457   },
2458
2459   {
2460     'key'         => 'suretax-client_number',
2461     'section'     => 'taxation',
2462     'description' => 'SureTax tax service client ID.',
2463     'type'        => 'text',
2464   },
2465   {
2466     'key'         => 'suretax-validation_key',
2467     'section'     => 'taxation',
2468     'description' => 'SureTax validation key (UUID).',
2469     'type'        => 'text',
2470   },
2471   {
2472     'key'         => 'suretax-business_unit',
2473     'section'     => 'taxation',
2474     'description' => 'SureTax client business unit name; optional.',
2475     'type'        => 'text',
2476     'per_agent'   => 1,
2477   },
2478   {
2479     'key'         => 'suretax-regulatory_code',
2480     'section'     => 'taxation',
2481     'description' => 'SureTax client regulatory status.',
2482     'type'        => 'select',
2483     'select_enum' => [ '', 'ILEC', 'IXC', 'CLEC', 'VOIP', 'ISP', 'Wireless' ],
2484     'per_agent'   => 1,
2485   },
2486
2487
2488   {
2489     'key'         => 'welcome_msgnum',
2490     'section'     => 'notification',
2491     'description' => 'Template to use for welcome messages when a svc_acct record is created.',
2492     %msg_template_options,
2493   },
2494   
2495   {
2496     'key'         => 'svc_acct_welcome_exclude',
2497     'section'     => 'notification',
2498     'description' => 'A list of svc_acct services for which no welcome email is to be sent.',
2499     'type'        => 'select-part_svc',
2500     'multiple'    => 1,
2501   },
2502
2503   {
2504     'key'         => 'welcome_letter',
2505     'section'     => '',
2506     '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/dist/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>',
2507     'type'        => 'textarea',
2508   },
2509
2510   {
2511     'key'         => 'threshold_warning_msgnum',
2512     'section'     => 'notification',
2513     'description' => 'Template to use for warning messages sent to the customer email invoice destination(s) when a svc_acct record has its usage drop below a threshold.  Extra substitutions available: $column, $amount, $threshold',
2514     %msg_template_options,
2515   },
2516
2517   {
2518     'key'         => 'payby',
2519     'section'     => 'billing',
2520     'description' => 'Available payment types.',
2521     'type'        => 'selectmultiple',
2522     'select_enum' => [ qw(CARD DCRD CHEK DCHK) ], #BILL CASH WEST MCRD MCHK PPAL) ],
2523   },
2524
2525   {
2526     'key'         => 'banned_pay-pad',
2527     'section'     => 'billing',
2528     'description' => 'Padding for encrypted storage of banned credit card hashes.  If you already have new-style SHA512 entries in the banned_pay table, do not change as this will invalidate the old entries.',
2529     'type'        => 'text',
2530   },
2531
2532   {
2533     'key'         => 'payby-default',
2534     'section'     => 'deprecated',
2535     'description' => 'Deprecated; in 4.x there is no longer the concept of a single "payment type".  Used to indicate the default payment type.  HIDE disables display of billing information and sets customers to BILL.',
2536     'type'        => 'select',
2537     'select_enum' => [ '', qw(CARD DCRD CHEK DCHK BILL CASH WEST MCRD PPAL COMP HIDE) ],
2538   },
2539
2540   {
2541     'key'         => 'require_cash_deposit_info',
2542     'section'     => 'billing',
2543     'description' => 'When recording cash payments, display bank deposit information fields.',
2544     'type'        => 'checkbox',
2545   },
2546
2547   {
2548     'key'         => 'svc_acct-notes',
2549     'section'     => 'deprecated',
2550     'description' => 'Extra HTML to be displayed on the Account View screen.',
2551     'type'        => 'textarea',
2552   },
2553
2554   {
2555     'key'         => 'radius-password',
2556     'section'     => '',
2557     'description' => 'RADIUS attribute for plain-text passwords.',
2558     'type'        => 'select',
2559     'select_enum' => [ 'Password', 'User-Password', 'Cleartext-Password' ],
2560   },
2561
2562   {
2563     'key'         => 'radius-ip',
2564     'section'     => '',
2565     'description' => 'RADIUS attribute for IP addresses.',
2566     'type'        => 'select',
2567     'select_enum' => [ 'Framed-IP-Address', 'Framed-Address' ],
2568   },
2569
2570   #http://dev.coova.org/svn/coova-chilli/doc/dictionary.chillispot
2571   {
2572     'key'         => 'radius-chillispot-max',
2573     'section'     => '',
2574     'description' => 'Enable ChilliSpot (and CoovaChilli) Max attributes, specifically ChilliSpot-Max-{Input,Output,Total}-{Octets,Gigawords}.',
2575     'type'        => 'checkbox',
2576   },
2577
2578   {
2579     'key'         => 'svc_broadband-radius',
2580     'section'     => '',
2581     'description' => 'Enable RADIUS groups for broadband services.',
2582     'type'        => 'checkbox',
2583   },
2584
2585   {
2586     'key'         => 'svc_acct-alldomains',
2587     'section'     => '',
2588     '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.',
2589     'type'        => 'checkbox',
2590   },
2591
2592   {
2593     'key'         => 'dump-localdest',
2594     'section'     => '',
2595     'description' => 'Destination for local database dumps (full path)',
2596     'type'        => 'text',
2597   },
2598
2599   {
2600     'key'         => 'dump-scpdest',
2601     'section'     => '',
2602     'description' => 'Destination for scp database dumps: user@host:/path',
2603     'type'        => 'text',
2604   },
2605
2606   {
2607     'key'         => 'dump-pgpid',
2608     'section'     => '',
2609     '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.",
2610     'type'        => 'text',
2611   },
2612
2613   {
2614     'key'         => 'credit_card-recurring_billing_flag',
2615     'section'     => 'billing',
2616     '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. ',
2617     'type'        => 'select',
2618     'select_hash' => [
2619                        'actual_oncard' => 'Default/classic behavior: set the flag if a customer has actual previous charges on the card.',
2620                        'transaction_is_recur' => 'Set the flag if the transaction itself is recurring, irregardless of previous charges on the card.',
2621                      ],
2622   },
2623
2624   {
2625     'key'         => 'credit_card-recurring_billing_acct_code',
2626     'section'     => 'billing',
2627     'description' => 'When the "recurring billing" flag is set, also set the "acct_code" to "rebill".  Useful for reporting purposes with supported gateways (PlugNPay, others?)',
2628     'type'        => 'checkbox',
2629   },
2630
2631   {
2632     'key'         => 'cvv-save',
2633     'section'     => 'billing',
2634     'description' => 'NOT RECOMMENDED.  Saves CVV2 information after the initial transaction for the selected credit card types.  Enabling this option is almost certainly in violation of your merchant agreement(s), so please check them carefully before enabling this option for any credit card types.',
2635     'type'        => 'selectmultiple',
2636     'select_enum' => \@card_types,
2637   },
2638
2639   {
2640     'key'         => 'signup-require_cvv',
2641     'section'     => 'self-service',
2642     'description' => 'Require CVV for credit card signup.',
2643     'type'        => 'checkbox',
2644   },
2645
2646   {
2647     'key'         => 'backoffice-require_cvv',
2648     'section'     => 'billing',
2649     'description' => 'Require CVV for manual credit card entry.',
2650     'type'        => 'checkbox',
2651   },
2652
2653   {
2654     'key'         => 'selfservice-onfile_require_cvv',
2655     'section'     => 'self-service',
2656     'description' => 'Require CVV for on-file credit card during self-service payments.',
2657     'type'        => 'checkbox',
2658   },
2659
2660   {
2661     'key'         => 'selfservice-require_cvv',
2662     'section'     => 'self-service',
2663     'description' => 'Require CVV for credit card self-service payments, except for cards on-file.',
2664     'type'        => 'checkbox',
2665   },
2666
2667   {
2668     'key'         => 'manual_process-single_invoice_amount',
2669     'section'     => 'billing',
2670     'description' => 'When entering manual credit card and ACH payments, amount will not autofill if the customer has more than one open invoice',
2671     'type'        => 'checkbox',
2672   },
2673
2674   {
2675     'key'         => 'manual_process-pkgpart',
2676     'section'     => 'billing',
2677     'description' => 'Package to add to each manual credit card and ACH payment entered by employees from the backend.  Enabling this option may be in violation of your merchant agreement(s), so please check it(/them) carefully before enabling this option.',
2678     'type'        => 'select-part_pkg',
2679     'per_agent'   => 1,
2680   },
2681
2682   {
2683     'key'         => 'manual_process-display',
2684     'section'     => 'billing',
2685     'description' => 'When using manual_process-pkgpart, add the fee to the amount entered (default), or subtract the fee from the amount entered.',
2686     'type'        => 'select',
2687     'select_hash' => [
2688                        'add'      => 'Add fee to amount entered',
2689                        'subtract' => 'Subtract fee from amount entered',
2690                      ],
2691   },
2692
2693   {
2694     'key'         => 'manual_process-skip_first',
2695     'section'     => 'billing',
2696     'description' => "When using manual_process-pkgpart, omit the fee if it is the customer's first payment.",
2697     'type'        => 'checkbox',
2698   },
2699
2700   {
2701     'key'         => 'selfservice_immutable-package',
2702     'section'     => 'self-service',
2703     'description' => 'Disable package changes in self-service interface.',
2704     'type'        => 'checkbox',
2705     'per_agent'   => 1,
2706   },
2707
2708   {
2709     'key'         => 'selfservice_hide-usage',
2710     'section'     => 'self-service',
2711     'description' => 'Hide usage data in self-service interface.',
2712     'type'        => 'checkbox',
2713     'per_agent'   => 1,
2714   },
2715
2716   {
2717     'key'         => 'selfservice_process-pkgpart',
2718     'section'     => 'billing',
2719     'description' => 'Package to add to each manual credit card and ACH payment entered by the customer themselves in the self-service interface.  Enabling this option may be in violation of your merchant agreement(s), so please check it(/them) carefully before enabling this option.',
2720     'type'        => 'select-part_pkg',
2721     'per_agent'   => 1,
2722   },
2723
2724   {
2725     'key'         => 'selfservice_process-display',
2726     'section'     => 'billing',
2727     'description' => 'When using selfservice_process-pkgpart, add the fee to the amount entered (default), or subtract the fee from the amount entered.',
2728     'type'        => 'select',
2729     'select_hash' => [
2730                        'add'      => 'Add fee to amount entered',
2731                        'subtract' => 'Subtract fee from amount entered',
2732                      ],
2733   },
2734
2735   {
2736     'key'         => 'selfservice_process-skip_first',
2737     'section'     => 'billing',
2738     'description' => "When using selfservice_process-pkgpart, omit the fee if it is the customer's first payment.",
2739     'type'        => 'checkbox',
2740   },
2741
2742 #  {
2743 #    'key'         => 'auto_process-pkgpart',
2744 #    'section'     => 'billing',
2745 #    'description' => 'Package to add to each automatic credit card and ACH payment processed by billing events.  Enabling this option may be in violation of your merchant agreement(s), so please check them carefully before enabling this option.',
2746 #    'type'        => 'select-part_pkg',
2747 #  },
2748 #
2749 ##  {
2750 ##    'key'         => 'auto_process-display',
2751 ##    'section'     => 'billing',
2752 ##    'description' => 'When using auto_process-pkgpart, add the fee to the amount entered (default), or subtract the fee from the amount entered.',
2753 ##    'type'        => 'select',
2754 ##    'select_hash' => [
2755 ##                       'add'      => 'Add fee to amount entered',
2756 ##                       'subtract' => 'Subtract fee from amount entered',
2757 ##                     ],
2758 ##  },
2759 #
2760 #  {
2761 #    'key'         => 'auto_process-skip_first',
2762 #    'section'     => 'billing',
2763 #    'description' => "When using auto_process-pkgpart, omit the fee if it is the customer's first payment.",
2764 #    'type'        => 'checkbox',
2765 #  },
2766
2767   {
2768     'key'         => 'allow_negative_charges',
2769     'section'     => 'billing',
2770     'description' => 'Allow negative charges.  Normally not used unless importing data from a legacy system that requires this.',
2771     'type'        => 'checkbox',
2772   },
2773   {
2774       'key'         => 'auto_unset_catchall',
2775       'section'     => '',
2776       '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.',
2777       'type'        => 'checkbox',
2778   },
2779
2780   {
2781     'key'         => 'system_usernames',
2782     'section'     => 'username',
2783     '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.',
2784     'type'        => 'textarea',
2785   },
2786
2787   {
2788     'key'         => 'cust_pkg-change_svcpart',
2789     'section'     => '',
2790     'description' => "When changing packages, move services even if svcparts don't match between old and new pacakge definitions.",
2791     'type'        => 'checkbox',
2792   },
2793
2794   {
2795     'key'         => 'cust_pkg-change_pkgpart-bill_now',
2796     'section'     => '',
2797     'description' => "When changing packages, bill the new package immediately.  Useful for prepaid situations with RADIUS where an Expiration attribute based on the package must be present at all times.",
2798     'type'        => 'checkbox',
2799   },
2800
2801   {
2802     'key'         => 'disable_autoreverse',
2803     'section'     => 'BIND',
2804     'description' => 'Disable automatic synchronization of reverse-ARPA entries.',
2805     'type'        => 'checkbox',
2806   },
2807
2808   {
2809     'key'         => 'svc_www-enable_subdomains',
2810     'section'     => '',
2811     'description' => 'Enable selection of specific subdomains for virtual host creation.',
2812     'type'        => 'checkbox',
2813   },
2814
2815   {
2816     'key'         => 'svc_www-usersvc_svcpart',
2817     'section'     => '',
2818     'description' => 'Allowable service definition svcparts for virtual hosts, one per line.',
2819     'type'        => 'select-part_svc',
2820     'multiple'    => 1,
2821   },
2822
2823   {
2824     'key'         => 'selfservice_server-primary_only',
2825     'section'     => 'self-service',
2826     'description' => 'Only allow primary accounts to access self-service functionality.',
2827     'type'        => 'checkbox',
2828   },
2829
2830   {
2831     'key'         => 'selfservice_server-phone_login',
2832     'section'     => 'self-service',
2833     'description' => 'Allow login to self-service with phone number and PIN.',
2834     'type'        => 'checkbox',
2835   },
2836
2837   {
2838     'key'         => 'selfservice_server-single_domain',
2839     'section'     => 'self-service',
2840     'description' => 'If specified, only use this one domain for self-service access.',
2841     'type'        => 'text',
2842   },
2843
2844   {
2845     'key'         => 'selfservice_server-login_svcpart',
2846     'section'     => 'self-service',
2847     'description' => 'If specified, only allow the specified svcparts to login to self-service.',
2848     'type'        => 'select-part_svc',
2849     'multiple'    => 1,
2850   },
2851
2852   {
2853     'key'         => 'selfservice-svc_forward_svcpart',
2854     'section'     => 'self-service',
2855     'description' => 'Service for self-service forward editing.',
2856     'type'        => 'select-part_svc',
2857   },
2858
2859   {
2860     'key'         => 'selfservice-password_reset_verification',
2861     'section'     => 'self-service',
2862     'description' => 'If enabled, specifies the type of verification required for self-service password resets.',
2863     'type'        => 'select',
2864     'select_hash' => [ '' => 'Password reset disabled',
2865                        'email' => 'Click on a link in email',
2866                        'paymask,amount,zip' => 'Click on a link in email, and also verify with credit card (or bank account) last 4 digits, payment amount and zip code.  Note: Do not use if you have multi-customer contacts, as they will be unable to reset their passwords.',
2867                      ],
2868   },
2869
2870   {
2871     'key'         => 'selfservice-password_reset_msgnum',
2872     'section'     => 'self-service',
2873     'description' => 'Template to use for password reset emails.',
2874     %msg_template_options,
2875   },
2876
2877   {
2878     'key'         => 'selfservice-password_change_oldpass',
2879     'section'     => 'self-service',
2880     'description' => 'Require old password to be entered again for password changes (in addition to being logged in), at the API level.',
2881     'type'        => 'checkbox',
2882   },
2883
2884   {
2885     'key'         => 'selfservice-hide_invoices-taxclass',
2886     'section'     => 'self-service',
2887     'description' => 'Hide invoices with only this package tax class from self-service and supress sending (emailing, printing, faxing) them.  Typically set to something like "Previous balance" and used when importing legacy invoices into legacy_cust_bill.',
2888     'type'        => 'text',
2889   },
2890
2891   {
2892     'key'         => 'selfservice-recent-did-age',
2893     'section'     => 'self-service',
2894     'description' => 'If specified, defines "recent", in number of seconds, for "Download recently allocated DIDs" in self-service.',
2895     'type'        => 'text',
2896   },
2897
2898   {
2899     'key'         => 'selfservice_server-view-wholesale',
2900     'section'     => 'self-service',
2901     'description' => 'If enabled, use a wholesale package view in the self-service.',
2902     'type'        => 'checkbox',
2903   },
2904   
2905   {
2906     'key'         => 'selfservice-agent_signup',
2907     'section'     => 'self-service',
2908     'description' => 'Allow agent signup via self-service.',
2909     'type'        => 'checkbox',
2910   },
2911
2912   {
2913     'key'         => 'selfservice-agent_signup-agent_type',
2914     'section'     => 'self-service',
2915     'description' => 'Agent type when allowing agent signup via self-service.',
2916     'type'        => 'select-sub',
2917     'options_sub' => sub { require FS::Record;
2918                            require FS::agent_type;
2919                            map { $_->typenum => $_->atype }
2920                                FS::Record::qsearch('agent_type', {} ); # disabled=>'' } );
2921                          },
2922     'option_sub'  => sub { require FS::Record;
2923                            require FS::agent_type;
2924                            my $agent_type = FS::Record::qsearchs(
2925                              'agent_type', { 'typenum'=>shift }
2926                            );
2927                            $agent_type ? $agent_type->atype : '';
2928                          },
2929   },
2930
2931   {
2932     'key'         => 'selfservice-agent_login',
2933     'section'     => 'self-service',
2934     'description' => 'Allow agent login via self-service.',
2935     'type'        => 'checkbox',
2936   },
2937
2938   {
2939     'key'         => 'selfservice-self_suspend_reason',
2940     'section'     => 'self-service',
2941     'description' => 'Suspend reason when customers suspend their own packages. Set to nothing to disallow self-suspension.',
2942     'type'        => 'select-sub',
2943     #false laziness w/api_credit_reason
2944     'options_sub' => sub { require FS::Record;
2945                            require FS::reason;
2946                            my $type = qsearchs('reason_type', 
2947                              { class => 'S' }) 
2948                               or return ();
2949                            map { $_->reasonnum => $_->reason }
2950                                FS::Record::qsearch('reason', 
2951                                  { reason_type => $type->typenum } 
2952                                );
2953                          },
2954     'option_sub'  => sub { require FS::Record;
2955                            require FS::reason;
2956                            my $reason = FS::Record::qsearchs(
2957                              'reason', { 'reasonnum' => shift }
2958                            );
2959                            $reason ? $reason->reason : '';
2960                          },
2961
2962     'per_agent'   => 1,
2963   },
2964
2965   {
2966     'key'         => 'card_refund-days',
2967     'section'     => 'billing',
2968     'description' => 'After a payment, the number of days a refund link will be available for that payment.  Defaults to 120.',
2969     'type'        => 'text',
2970   },
2971
2972   {
2973     'key'         => 'agent-showpasswords',
2974     'section'     => '',
2975     'description' => 'Display unencrypted user passwords in the agent (reseller) interface',
2976     'type'        => 'checkbox',
2977   },
2978
2979   {
2980     'key'         => 'global_unique-username',
2981     'section'     => 'username',
2982     '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.',
2983     'type'        => 'select',
2984     'select_enum' => [ 'none', 'username', 'username@domain', 'disabled' ],
2985   },
2986
2987   {
2988     'key'         => 'global_unique-phonenum',
2989     'section'     => '',
2990     'description' => 'Global phone number uniqueness control: none (usual setting - check countrycode+phonenumun uniqueness per exports), or countrycode+phonenum (all countrycode+phonenum 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.',
2991     'type'        => 'select',
2992     'select_enum' => [ 'none', 'countrycode+phonenum', 'disabled' ],
2993   },
2994
2995   {
2996     'key'         => 'global_unique-pbx_title',
2997     'section'     => '',
2998     'description' => 'Global phone number uniqueness control: none (check uniqueness per exports), enabled (check across all services), or disabled (no duplicate checking).',
2999     'type'        => 'select',
3000     'select_enum' => [ 'enabled', 'disabled' ],
3001   },
3002
3003   {
3004     'key'         => 'global_unique-pbx_id',
3005     'section'     => '',
3006     'description' => 'Global PBX id uniqueness control: none (check uniqueness per exports), enabled (check across all services), or disabled (no duplicate checking).',
3007     'type'        => 'select',
3008     'select_enum' => [ 'enabled', 'disabled' ],
3009   },
3010
3011   {
3012     'key'         => 'svc_external-skip_manual',
3013     'section'     => 'UI',
3014     '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).',
3015     'type'        => 'checkbox',
3016   },
3017
3018   {
3019     'key'         => 'svc_external-display_type',
3020     'section'     => 'UI',
3021     'description' => 'Select a specific svc_external type to enable some UI changes specific to that type (i.e. artera_turbo).',
3022     'type'        => 'select',
3023     'select_enum' => [ 'generic', 'artera_turbo', ],
3024   },
3025
3026   {
3027     'key'         => 'ticket_system',
3028     'section'     => 'ticketing',
3029     'description' => 'Ticketing system integration.  <b>RT_Internal</b> uses the built-in RT ticketing system (see the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:2.1:Documentation:RT_Installation">integrated ticketing installation instructions</a>).   <b>RT_External</b> accesses an external RT installation in a separate database (local or remote).',
3030     'type'        => 'select',
3031     #'select_enum' => [ '', qw(RT_Internal RT_Libs RT_External) ],
3032     'select_enum' => [ '', qw(RT_Internal RT_External) ],
3033   },
3034
3035   {
3036     'key'         => 'network_monitoring_system',
3037     'section'     => 'network_monitoring',
3038     'description' => 'Networking monitoring system (NMS) integration.  <b>Torrus_Internal</b> uses the built-in Torrus ticketing system (see the <a href="http://www.freeside.biz/mediawiki/index.php/Freeside:3:Documentation:Torrus_Installation">integrated networking monitoring system installation instructions</a>).',
3039     'type'        => 'select',
3040     'select_enum' => [ '', qw(Torrus_Internal) ],
3041   },
3042
3043   {
3044     'key'         => 'nms-auto_add-svc_ips',
3045     'section'     => 'network_monitoring',
3046     'description' => 'Automatically add (and remove) IP addresses from these service tables to the network monitoring system.',
3047     'type'        => 'selectmultiple',
3048     'select_enum' => [ 'svc_acct', 'svc_broadband', 'svc_dsl' ],
3049   },
3050
3051   {
3052     'key'         => 'nms-auto_add-community',
3053     'section'     => 'network_monitoring',
3054     'description' => 'SNMP community string to use when automatically adding IP addresses from these services to the network monitoring system.',
3055     'type'        => 'text',
3056   },
3057
3058   {
3059     'key'         => 'ticket_system-default_queueid',
3060     'section'     => 'ticketing',
3061     'description' => 'Default queue used when creating new customer tickets.',
3062     'type'        => 'select-sub',
3063     'options_sub' => sub {
3064                            my $conf = new FS::Conf;
3065                            if ( $conf->config('ticket_system') ) {
3066                              eval "use FS::TicketSystem;";
3067                              die $@ if $@;
3068                              FS::TicketSystem->queues();
3069                            } else {
3070                              ();
3071                            }
3072                          },
3073     'option_sub'  => sub { 
3074                            my $conf = new FS::Conf;
3075                            if ( $conf->config('ticket_system') ) {
3076                              eval "use FS::TicketSystem;";
3077                              die $@ if $@;
3078                              FS::TicketSystem->queue(shift);
3079                            } else {
3080                              '';
3081                            }
3082                          },
3083   },
3084
3085   {
3086     'key'         => 'ticket_system-force_default_queueid',
3087     'section'     => 'ticketing',
3088     'description' => 'Disallow queue selection when creating new tickets from customer view.',
3089     'type'        => 'checkbox',
3090   },
3091
3092   {
3093     'key'         => 'ticket_system-selfservice_queueid',
3094     'section'     => 'ticketing',
3095     'description' => 'Queue used when creating new customer tickets from self-service.  Defautls to ticket_system-default_queueid if not specified.',
3096     #false laziness w/above
3097     'type'        => 'select-sub',
3098     'options_sub' => sub {
3099                            my $conf = new FS::Conf;
3100                            if ( $conf->config('ticket_system') ) {
3101                              eval "use FS::TicketSystem;";
3102                              die $@ if $@;
3103                              FS::TicketSystem->queues();
3104                            } else {
3105                              ();
3106                            }
3107                          },
3108     'option_sub'  => sub { 
3109                            my $conf = new FS::Conf;
3110                            if ( $conf->config('ticket_system') ) {
3111                              eval "use FS::TicketSystem;";
3112                              die $@ if $@;
3113                              FS::TicketSystem->queue(shift);
3114                            } else {
3115                              '';
3116                            }
3117                          },
3118   },
3119
3120   {
3121     'key'         => 'ticket_system-requestor',
3122     'section'     => 'ticketing',
3123     'description' => 'Email address to use as the requestor for new tickets.  If blank, the customer\'s invoicing address(es) will be used.',
3124     'type'        => 'text',
3125   },
3126
3127   {
3128     'key'         => 'ticket_system-priority_reverse',
3129     'section'     => 'ticketing',
3130     'description' => 'Enable this to consider lower numbered priorities more important.  A bad habit we picked up somewhere.  You probably want to avoid it and use the default.',
3131     'type'        => 'checkbox',
3132   },
3133
3134   {
3135     'key'         => 'ticket_system-custom_priority_field',
3136     'section'     => 'ticketing',
3137     'description' => 'Custom field from the ticketing system to use as a custom priority classification.',
3138     'type'        => 'text',
3139   },
3140
3141   {
3142     'key'         => 'ticket_system-custom_priority_field-values',
3143     'section'     => 'ticketing',
3144     'description' => 'Values for the custom field from the ticketing system to break down and sort customer ticket lists.',
3145     'type'        => 'textarea',
3146   },
3147
3148   {
3149     'key'         => 'ticket_system-custom_priority_field_queue',
3150     'section'     => 'ticketing',
3151     'description' => 'Ticketing system queue in which the custom field specified in ticket_system-custom_priority_field is located.',
3152     'type'        => 'text',
3153   },
3154
3155   {
3156     'key'         => 'ticket_system-selfservice_priority_field',
3157     'section'     => 'ticketing',
3158     'description' => 'Custom field from the ticket system to use as a customer-managed priority field.',
3159     'type'        => 'text',
3160   },
3161
3162   {
3163     'key'         => 'ticket_system-selfservice_edit_subject',
3164     'section'     => 'ticketing',
3165     'description' => 'Allow customers to edit ticket subjects through selfservice.',
3166     'type'        => 'checkbox',
3167   },
3168
3169   {
3170     'key'         => 'ticket_system-appointment-queueid',
3171     'section'     => 'ticketing',
3172     'description' => 'Custom field from the ticketing system to use as an appointment classification.',
3173     #false laziness w/above
3174     'type'        => 'select-sub',
3175     'options_sub' => sub {
3176                            my $conf = new FS::Conf;
3177                            if ( $conf->config('ticket_system') ) {
3178                              eval "use FS::TicketSystem;";
3179                              die $@ if $@;
3180                              FS::TicketSystem->queues();
3181                            } else {
3182                              ();
3183                            }
3184                          },
3185     'option_sub'  => sub { 
3186                            my $conf = new FS::Conf;
3187                            if ( $conf->config('ticket_system') ) {
3188                              eval "use FS::TicketSystem;";
3189                              die $@ if $@;
3190                              FS::TicketSystem->queue(shift);
3191                            } else {
3192                              '';
3193                            }
3194                          },
3195   },
3196
3197   {
3198     'key'         => 'ticket_system-appointment-custom_field',
3199     'section'     => 'ticketing',
3200     'description' => 'Custom field from the ticketing system to use as an appointment classification.',
3201     'type'        => 'text',
3202   },
3203
3204   {
3205     'key'         => 'ticket_system-escalation',
3206     'section'     => 'ticketing',
3207     'description' => 'Enable priority escalation of tickets as part of daily batch processing.',
3208     'type'        => 'checkbox',
3209   },
3210
3211   {
3212     'key'         => 'ticket_system-rt_external_datasrc',
3213     'section'     => 'ticketing',
3214     '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>',
3215     'type'        => 'text',
3216
3217   },
3218
3219   {
3220     'key'         => 'ticket_system-rt_external_url',
3221     'section'     => 'ticketing',
3222     'description' => 'With external RT integration, the URL for the external RT installation, for example, <code>https://rt.example.com/rt</code>',
3223     'type'        => 'text',
3224   },
3225
3226   {
3227     'key'         => 'company_name',
3228     'section'     => 'required',
3229     'description' => 'Your company name',
3230     'type'        => 'text',
3231     'per_agent'   => 1, #XXX just FS/FS/ClientAPI/Signup.pm
3232   },
3233
3234   {
3235     'key'         => 'company_url',
3236     'section'     => 'UI',
3237     'description' => 'Your company URL',
3238     'type'        => 'text',
3239     'per_agent'   => 1,
3240   },
3241
3242   {
3243     'key'         => 'company_address',
3244     'section'     => 'required',
3245     'description' => 'Your company address',
3246     'type'        => 'textarea',
3247     'per_agent'   => 1,
3248   },
3249
3250   {
3251     'key'         => 'company_phonenum',
3252     'section'     => 'notification',
3253     'description' => 'Your company phone number',
3254     'type'        => 'text',
3255     'per_agent'   => 1,
3256   },
3257
3258   {
3259     'key'         => 'address1-search',
3260     'section'     => 'UI',
3261     'description' => 'Enable the ability to search the address1 field from the quick customer search.  Not recommended in most cases as it tends to bring up too many search results - use explicit address searching from the advanced customer search instead.',
3262     'type'        => 'checkbox',
3263   },
3264
3265   {
3266     'key'         => 'address2-search',
3267     'section'     => 'UI',
3268     'description' => 'Enable a "Unit" search box which searches the second address field.  Useful for multi-tenant applications.  See also: cust_main-require_address2',
3269     'type'        => 'checkbox',
3270   },
3271
3272   {
3273     'key'         => 'cust_main-require_address2',
3274     'section'     => 'UI',
3275     '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',
3276     'type'        => 'checkbox',
3277   },
3278
3279   {
3280     'key'         => 'agent-ship_address',
3281     'section'     => '',
3282     'description' => "Use the agent's master service address as the service address (only ship_address2 can be entered, if blank on the master address).  Useful for multi-tenant applications.",
3283     'type'        => 'checkbox',
3284     'per_agent'   => 1,
3285   },
3286
3287   { 'key'         => 'selfservice_server-cache_module',
3288     'section'     => 'self-service',
3289     '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.',
3290     'type'        => 'select',
3291     'select_enum' => [ 'Cache::SharedMemoryCache', 'Cache::FileCache', ], # '_Database' ],
3292   },
3293
3294   {
3295     'key'         => 'hylafax',
3296     'section'     => 'billing',
3297     '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).',
3298     'type'        => [qw( checkbox textarea )],
3299   },
3300
3301   {
3302     'key'         => 'cust_bill-ftpformat',
3303     'section'     => 'invoicing',
3304     'description' => 'Enable FTP of raw invoice data - format.',
3305     'type'        => 'select',
3306     'options'     => [ spool_formats() ],
3307   },
3308
3309   {
3310     'key'         => 'cust_bill-ftpserver',
3311     'section'     => 'invoicing',
3312     'description' => 'Enable FTP of raw invoice data - server.',
3313     'type'        => 'text',
3314   },
3315
3316   {
3317     'key'         => 'cust_bill-ftpusername',
3318     'section'     => 'invoicing',
3319     'description' => 'Enable FTP of raw invoice data - server.',
3320     'type'        => 'text',
3321   },
3322
3323   {
3324     'key'         => 'cust_bill-ftppassword',
3325     'section'     => 'invoicing',
3326     'description' => 'Enable FTP of raw invoice data - server.',
3327     'type'        => 'text',
3328   },
3329
3330   {
3331     'key'         => 'cust_bill-ftpdir',
3332     'section'     => 'invoicing',
3333     'description' => 'Enable FTP of raw invoice data - server.',
3334     'type'        => 'text',
3335   },
3336
3337   {
3338     'key'         => 'cust_bill-spoolformat',
3339     'section'     => 'invoicing',
3340     'description' => 'Enable spooling of raw invoice data - format.',
3341     'type'        => 'select',
3342     'options'     => [ spool_formats() ],
3343   },
3344
3345   {
3346     'key'         => 'cust_bill-spoolagent',
3347     'section'     => 'invoicing',
3348     'description' => 'Enable per-agent spooling of raw invoice data.',
3349     'type'        => 'checkbox',
3350   },
3351
3352   {
3353     'key'         => 'bridgestone-batch_counter',
3354     'section'     => '',
3355     'description' => 'Batch counter for spool files.  Increments every time a spool file is uploaded.',
3356     'type'        => 'text',
3357     'per_agent'   => 1,
3358   },
3359
3360   {
3361     'key'         => 'bridgestone-prefix',
3362     'section'     => '',
3363     'description' => 'Agent identifier for uploading to BABT printing service.',
3364     'type'        => 'text',
3365     'per_agent'   => 1,
3366   },
3367
3368   {
3369     'key'         => 'bridgestone-confirm_template',
3370     'section'     => '',
3371     'description' => 'Confirmation email template for uploading to BABT service.  Text::Template format, with variables "$zipfile" (name of the zipped file), "$seq" (sequence number), "$prefix" (user ID string), and "$rows" (number of records in the file).  Should include Subject: and To: headers, separated from the rest of the message by a blank line.',
3372     # this could use a true message template, but it's hard to see how that
3373     # would make the world a better place
3374     'type'        => 'textarea',
3375     'per_agent'   => 1,
3376   },
3377
3378   {
3379     'key'         => 'ics-confirm_template',
3380     'section'     => '',
3381     'description' => 'Confirmation email template for uploading to ICS invoice printing.  Text::Template format, with variables "%count" and "%sum".',
3382     'type'        => 'textarea',
3383     'per_agent'   => 1,
3384   },
3385
3386   {
3387     'key'         => 'svc_acct-usage_suspend',
3388     'section'     => 'billing',
3389     '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.',
3390     'type'        => 'checkbox',
3391   },
3392
3393   {
3394     'key'         => 'svc_acct-usage_unsuspend',
3395     'section'     => 'billing',
3396     '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.',
3397     'type'        => 'checkbox',
3398   },
3399
3400   {
3401     'key'         => 'svc_acct-usage_threshold',
3402     'section'     => 'billing',
3403     '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.',
3404     'type'        => 'text',
3405   },
3406
3407   {
3408     'key'         => 'overlimit_groups',
3409     'section'     => '',
3410     'description' => 'RADIUS group(s) to assign to svc_acct which has exceeded its bandwidth or time limit.',
3411     'type'        => 'select-sub',
3412     'per_agent'   => 1,
3413     'multiple'    => 1,
3414     'options_sub' => sub { require FS::Record;
3415                            require FS::radius_group;
3416                            map { $_->groupnum => $_->long_description }
3417                                FS::Record::qsearch('radius_group', {} );
3418                          },
3419     'option_sub'  => sub { require FS::Record;
3420                            require FS::radius_group;
3421                            my $radius_group = FS::Record::qsearchs(
3422                              'radius_group', { 'groupnum' => shift }
3423                            );
3424                $radius_group ? $radius_group->long_description : '';
3425                          },
3426   },
3427
3428   {
3429     'key'         => 'cust-fields',
3430     'section'     => 'UI',
3431     'description' => 'Which customer fields to display on reports by default',
3432     'type'        => 'select',
3433     'select_hash' => [ FS::ConfDefaults->cust_fields_avail() ],
3434   },
3435
3436   {
3437     'key'         => 'cust_location-label_prefix',
3438     'section'     => 'UI',
3439     'description' => 'Optional "site ID" to show in the location label',
3440     'type'        => 'select',
3441     'select_hash' => [ '' => '',
3442                        'CoStAg'    => 'CoStAgXXXXX (country, state, agent name, locationnum)',
3443                        '_location' => 'Manually defined per location',
3444                       ],
3445   },
3446
3447   {
3448     'key'         => 'cust_pkg-display_times',
3449     'section'     => 'UI',
3450     'description' => 'Display full timestamps (not just dates) for customer packages.  Useful if you are doing real-time things like hourly prepaid.',
3451     'type'        => 'checkbox',
3452   },
3453
3454   {
3455     'key'         => 'cust_pkg-always_show_location',
3456     'section'     => 'UI',
3457     'description' => "Always display package locations, even when they're all the default service address.",
3458     'type'        => 'checkbox',
3459   },
3460
3461   {
3462     'key'         => 'cust_pkg-group_by_location',
3463     'section'     => 'UI',
3464     'description' => "Group packages by location.",
3465     'type'        => 'checkbox',
3466   },
3467
3468   {
3469     'key'         => 'cust_pkg-large_pkg_size',
3470     'section'     => 'UI',
3471     'description' => "In customer view, summarize packages with more than this many services.  Set to zero to never summarize packages.",
3472     'type'        => 'text',
3473   },
3474
3475   {
3476     'key'         => 'cust_pkg-hide_discontinued-part_svc',
3477     'section'     => 'UI',
3478     'description' => "In customer view, hide provisioned services which are no longer available in the package definition.  Not normally used except for very specific situations as it hides still-provisioned services.",
3479     'type'        => 'checkbox',
3480   },
3481
3482   {
3483     'key'         => 'part_pkg-show_fcc_options',
3484     'section'     => 'UI',
3485     'description' => "Show fields on package definitions for FCC Form 477 classification",
3486     'type'        => 'checkbox',
3487   },
3488
3489   {
3490     'key'         => 'svc_acct-edit_uid',
3491     'section'     => 'shell',
3492     'description' => 'Allow UID editing.',
3493     'type'        => 'checkbox',
3494   },
3495
3496   {
3497     'key'         => 'svc_acct-edit_gid',
3498     'section'     => 'shell',
3499     'description' => 'Allow GID editing.',
3500     'type'        => 'checkbox',
3501   },
3502
3503   {
3504     'key'         => 'svc_acct-no_edit_username',
3505     'section'     => 'shell',
3506     'description' => 'Disallow username editing.',
3507     'type'        => 'checkbox',
3508   },
3509
3510   {
3511     'key'         => 'zone-underscore',
3512     'section'     => 'BIND',
3513     'description' => 'Allow underscores in zone names.  As underscores are illegal characters in zone names, this option is not recommended.',
3514     'type'        => 'checkbox',
3515   },
3516
3517   {
3518     'key'         => 'echeck-country',
3519     'section'     => 'billing',
3520     'description' => 'Format electronic check information for the specified country.',
3521     'type'        => 'select',
3522     'select_hash' => [ 'US' => 'United States',
3523                        'CA' => 'Canada (enables branch)',
3524                        'XX' => 'Other',
3525                      ],
3526   },
3527
3528   {
3529     'key'         => 'voip-cust_accountcode_cdr',
3530     'section'     => 'telephony',
3531     'description' => 'Enable the per-customer option for CDR breakdown by accountcode.',
3532     'type'        => 'checkbox',
3533   },
3534
3535   {
3536     'key'         => 'voip-cust_cdr_spools',
3537     'section'     => 'telephony',
3538     'description' => 'Enable the per-customer option for individual CDR spools.',
3539     'type'        => 'checkbox',
3540   },
3541
3542   {
3543     'key'         => 'voip-cust_cdr_squelch',
3544     'section'     => 'telephony',
3545     'description' => 'Enable the per-customer option for not printing CDR on invoices.',
3546     'type'        => 'checkbox',
3547   },
3548
3549   {
3550     'key'         => 'voip-cdr_email',
3551     'section'     => 'telephony',
3552     'description' => 'Include the call details on emailed invoices (and HTML invoices viewed in the backend), even if the customer is configured for not printing them on the invoices.',
3553     'type'        => 'checkbox',
3554   },
3555
3556   {
3557     'key'         => 'voip-cust_email_csv_cdr',
3558     'section'     => 'telephony',
3559     'description' => 'Enable the per-customer option for including CDR information as a CSV attachment on emailed invoices.',
3560     'type'        => 'checkbox',
3561   },
3562
3563   {
3564     'key'         => 'cgp_rule-domain_templates',
3565     'section'     => '',
3566     'description' => 'Communigate Pro rule templates for domains, one per line, "svcnum Name"',
3567     'type'        => 'textarea',
3568   },
3569
3570   {
3571     'key'         => 'svc_forward-no_srcsvc',
3572     'section'     => '',
3573     'description' => "Don't allow forwards from existing accounts, only arbitrary addresses.  Useful when exporting to systems such as Communigate Pro which treat forwards in this fashion.",
3574     'type'        => 'checkbox',
3575   },
3576
3577   {
3578     'key'         => 'svc_forward-arbitrary_dst',
3579     'section'     => '',
3580     '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.",
3581     'type'        => 'checkbox',
3582   },
3583
3584   {
3585     'key'         => 'tax-ship_address',
3586     'section'     => 'taxation',
3587     'description' => 'By default, tax calculations are done based on the billing address.  Enable this switch to calculate tax based on the shipping address instead.',
3588     'type'        => 'checkbox',
3589   }
3590 ,
3591   {
3592     'key'         => 'tax-pkg_address',
3593     'section'     => 'taxation',
3594     'description' => 'By default, tax calculations are done based on the billing address.  Enable this switch to calculate tax based on the package address instead (when present).',
3595     'type'        => 'checkbox',
3596   },
3597
3598   {
3599     'key'         => 'invoice-ship_address',
3600     'section'     => 'invoicing',
3601     'description' => 'Include the shipping address on invoices.',
3602     'type'        => 'checkbox',
3603   },
3604
3605   {
3606     'key'         => 'invoice-unitprice',
3607     'section'     => 'invoicing',
3608     'description' => 'Enable unit pricing on invoices and quantities on packages.',
3609     'type'        => 'checkbox',
3610   },
3611
3612   {
3613     'key'         => 'invoice-smallernotes',
3614     'section'     => 'invoicing',
3615     'description' => 'Display the notes section in a smaller font on invoices.',
3616     'type'        => 'checkbox',
3617   },
3618
3619   {
3620     'key'         => 'invoice-smallerfooter',
3621     'section'     => 'invoicing',
3622     'description' => 'Display footers in a smaller font on invoices.',
3623     'type'        => 'checkbox',
3624   },
3625
3626   {
3627     'key'         => 'postal_invoice-fee_pkgpart',
3628     'section'     => 'billing',
3629     'description' => 'This allows selection of a package to insert on invoices for customers with postal invoices selected.',
3630     'type'        => 'select-part_pkg',
3631     'per_agent'   => 1,
3632   },
3633
3634   {
3635     'key'         => 'postal_invoice-recurring_only',
3636     'section'     => 'billing',
3637     'description' => 'The postal invoice fee is omitted on invoices without recurring charges when this is set.',
3638     'type'        => 'checkbox',
3639   },
3640
3641   {
3642     'key'         => 'batch-enable',
3643     'section'     => 'deprecated', #make sure batch-enable_payby is set for
3644                                    #everyone before removing
3645     'description' => 'Enable credit card and/or ACH batching - leave disabled for real-time installations.',
3646     'type'        => 'checkbox',
3647   },
3648
3649   {
3650     'key'         => 'batch-enable_payby',
3651     'section'     => 'billing',
3652     'description' => 'Enable batch processing for the specified payment types.',
3653     'type'        => 'selectmultiple',
3654     'select_enum' => [qw( CARD CHEK )],
3655   },
3656
3657   {
3658     'key'         => 'realtime-disable_payby',
3659     'section'     => 'billing',
3660     'description' => 'Disable realtime processing for the specified payment types.',
3661     'type'        => 'selectmultiple',
3662     'select_enum' => [qw( CARD CHEK )],
3663   },
3664
3665   {
3666     'key'         => 'batch-default_format',
3667     'section'     => 'billing',
3668     'description' => 'Default format for batches.',
3669     'type'        => 'select',
3670     'select_enum' => [ 'NACHA', 'csv-td_canada_trust-merchant_pc_batch',
3671                        'csv-chase_canada-E-xactBatch', 'BoM', 'PAP',
3672                        'paymentech', 'ach-spiritone', 'RBC', 'CIBC',
3673                     ]
3674   },
3675
3676   { 'key'         => 'batch-gateway-CARD',
3677     'section'     => 'billing',
3678     'description' => 'Business::BatchPayment gateway for credit card batches.',
3679     %batch_gateway_options,
3680   },
3681
3682   { 'key'         => 'batch-gateway-CHEK',
3683     'section'     => 'billing', 
3684     'description' => 'Business::BatchPayment gateway for check batches.',
3685     %batch_gateway_options,
3686   },
3687
3688   {
3689     'key'         => 'batch-reconsider',
3690     'section'     => 'billing',
3691     'description' => 'Allow imported batch results to change the status of payments from previous imports.  Enable this only if your gateway is known to send both positive and negative results for the same batch.',
3692     'type'        => 'checkbox',
3693   },
3694
3695   {
3696     'key'         => 'batch-auto_resolve_days',
3697     'section'     => 'billing',
3698     'description' => 'Automatically resolve payment batches this many days after they were first downloaded.',
3699     'type'        => 'text',
3700   },
3701
3702   {
3703     'key'         => 'batch-auto_resolve_status',
3704     'section'     => 'billing',
3705     'description' => 'When automatically resolving payment batches, take this action for payments of unknown status.',
3706     'type'        => 'select',
3707     'select_enum' => [ 'approve', 'decline' ],
3708   },
3709
3710   # replaces batch-errors_to (sent email on error)
3711   {
3712     'key'         => 'batch-errors_not_fatal',
3713     'section'     => 'billing',
3714     'description' => 'If checked, when importing batches from a gateway, item errors will be recorded in the system log without aborting processing.  If unchecked, batch processing will fail on error.',
3715     'type'        => 'checkbox',
3716   },
3717
3718   #lists could be auto-generated from pay_batch info
3719   {
3720     'key'         => 'batch-fixed_format-CARD',
3721     'section'     => 'billing',
3722     'description' => 'Fixed (unchangeable) format for credit card batches.',
3723     'type'        => 'select',
3724     'select_enum' => [ 'csv-td_canada_trust-merchant_pc_batch', 'BoM', 'PAP' ,
3725                        'csv-chase_canada-E-xactBatch', 'paymentech' ]
3726   },
3727
3728   {
3729     'key'         => 'batch-fixed_format-CHEK',
3730     'section'     => 'billing',
3731     'description' => 'Fixed (unchangeable) format for electronic check batches.',
3732     'type'        => 'select',
3733     'select_enum' => [ 'NACHA', 'csv-td_canada_trust-merchant_pc_batch', 'BoM',
3734                        'PAP', 'paymentech', 'ach-spiritone', 'RBC',
3735                        'td_eft1464', 'eft_canada', 'CIBC'
3736                      ]
3737   },
3738
3739   {
3740     'key'         => 'batch-increment_expiration',
3741     'section'     => 'billing',
3742     'description' => 'Increment expiration date years in batches until cards are current.  Make sure this is acceptable to your batching provider before enabling.',
3743     'type'        => 'checkbox'
3744   },
3745
3746   {
3747     'key'         => 'batchconfig-BoM',
3748     'section'     => 'billing',
3749     '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',
3750     'type'        => 'textarea',
3751   },
3752
3753 {
3754     'key'         => 'batchconfig-CIBC',
3755     'section'     => 'billing',
3756     'description' => 'Configuration for Canadian Imperial Bank of Commerce, six lines: 1. Origin ID, 2. Datacenter, 3. Typecode, 4. Short name, 5. Bank, 6. Bank account',
3757     'type'        => 'textarea',
3758   },
3759
3760   {
3761     'key'         => 'batchconfig-PAP',
3762     'section'     => 'billing',
3763     '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',
3764     'type'        => 'textarea',
3765   },
3766
3767   {
3768     'key'         => 'batchconfig-csv-chase_canada-E-xactBatch',
3769     'section'     => 'billing',
3770     'description' => 'Gateway ID for Chase Canada E-xact batching',
3771     'type'        => 'text',
3772   },
3773
3774   {
3775     'key'         => 'batchconfig-paymentech',
3776     'section'     => 'billing',
3777     'description' => 'Configuration for Chase Paymentech batching, six lines: 1. BIN, 2. Terminal ID, 3. Merchant ID, 4. Username, 5. Password (for batch uploads), 6. Flag to send recurring indicator.',
3778     'type'        => 'textarea',
3779   },
3780
3781   {
3782     'key'         => 'batchconfig-RBC',
3783     'section'     => 'billing',
3784     'description' => 'Configuration for Royal Bank of Canada PDS batching, five lines: 1. Client number, 2. Short name, 3. Long name, 4. Transaction code 5. (optional) set to TEST to turn on test mode.',
3785     'type'        => 'textarea',
3786   },
3787
3788   {
3789     'key'         => 'batchconfig-RBC-login',
3790     'section'     => 'billing',
3791     'description' => 'FTPS login for uploading Royal Bank of Canada batches. Two lines: 1. username, 2. password. If not supplied, batches can still be created but not automatically uploaded.',
3792     'type'        => 'textarea',
3793   },
3794
3795   {
3796     'key'         => 'batchconfig-td_eft1464',
3797     'section'     => 'billing',
3798     'description' => 'Configuration for TD Bank EFT1464 batching, seven lines: 1. Originator ID, 2. Datacenter Code, 3. Short name, 4. Long name, 5. Returned payment branch number, 6. Returned payment account, 7. Transaction code.',
3799     'type'        => 'textarea',
3800   },
3801
3802   {
3803     'key'         => 'batchconfig-eft_canada',
3804     'section'     => 'billing',
3805     'description' => 'Configuration for EFT Canada batching, five lines: 1. SFTP username, 2. SFTP password, 3. Business transaction code, 4. Personal transaction code, 5. Number of days to delay process date.  If you are using separate per-agent batches (batch-spoolagent), you must set this option separately for each agent, as the global setting will be ignored.',
3806     'type'        => 'textarea',
3807     'per_agent'   => 1,
3808   },
3809
3810   {
3811     'key'         => 'batchconfig-nacha-destination',
3812     'section'     => 'billing',
3813     'description' => 'Configuration for NACHA batching, Destination (9 digit transit routing number).',
3814     'type'        => 'text',
3815   },
3816
3817   {
3818     'key'         => 'batchconfig-nacha-destination_name',
3819     'section'     => 'billing',
3820     'description' => 'Configuration for NACHA batching, Destination (Bank Name, up to 23 characters).',
3821     'type'        => 'text',
3822   },
3823
3824   {
3825     'key'         => 'batchconfig-nacha-origin',
3826     'section'     => 'billing',
3827     'description' => 'Configuration for NACHA batching, Origin (your 10-digit company number, IRS tax ID recommended).',
3828     'type'        => 'text',
3829   },
3830
3831   {
3832     'key'         => 'batchconfig-nacha-origin_name',
3833     'section'     => 'billing',
3834     'description' => 'Configuration for NACHA batching, Origin name (defaults to company name, but sometimes bank name is needed instead.)',
3835     'type'        => 'text',
3836   },
3837
3838   {
3839     'key'         => 'batch-manual_approval',
3840     'section'     => 'billing',
3841     'description' => 'Allow manual batch closure, which will approve all payments that do not yet have a status.  This is not advised unless needed for specific payment processors that provide a report of rejected rather than approved payments.',
3842     'type'        => 'checkbox',
3843   },
3844
3845   {
3846     'key'         => 'batch-spoolagent',
3847     'section'     => 'billing',
3848     'description' => 'Store payment batches per-agent.',
3849     'type'        => 'checkbox',
3850   },
3851
3852   {
3853     'key'         => 'payment_history-years',
3854     'section'     => 'UI',
3855     'description' => 'Number of years of payment history to show by default.  Currently defaults to 2.',
3856     'type'        => 'text',
3857   },
3858
3859   {
3860     'key'         => 'change_history-years',
3861     'section'     => 'UI',
3862     'description' => 'Number of years of change history to show by default.  Currently defaults to 0.5.',
3863     'type'        => 'text',
3864   },
3865
3866   {
3867     'key'         => 'cust_main-packages-years',
3868     'section'     => 'UI',
3869     'description' => 'Number of years to show old (cancelled and one-time charge) packages by default.  Currently defaults to 2.',
3870     'type'        => 'text',
3871   },
3872
3873   {
3874     'key'         => 'cust_main-use_comments',
3875     'section'     => 'UI',
3876     'description' => 'Display free form comments on the customer edit screen.  Useful as a scratch pad.',
3877     'type'        => 'checkbox',
3878   },
3879
3880   {
3881     'key'         => 'cust_main-disable_notes',
3882     'section'     => 'UI',
3883     'description' => 'Disable new style customer notes - timestamped and user identified customer notes.  Useful in tracking who did what.',
3884     'type'        => 'checkbox',
3885   },
3886
3887   {
3888     'key'         => 'cust_main_note-display_times',
3889     'section'     => 'UI',
3890     'description' => 'Display full timestamps (not just dates) for customer notes.',
3891     'type'        => 'checkbox',
3892   },
3893
3894   {
3895     'key'         => 'cust_main-ticket_statuses',
3896     'section'     => 'UI',
3897     'description' => 'Show tickets with these statuses on the customer view page.',
3898     'type'        => 'selectmultiple',
3899     'select_enum' => [qw( new open stalled resolved rejected deleted )],
3900   },
3901
3902   {
3903     'key'         => 'cust_main-max_tickets',
3904     'section'     => 'UI',
3905     'description' => 'Maximum number of tickets to show on the customer view page.',
3906     'type'        => 'text',
3907   },
3908
3909   {
3910     'key'         => 'cust_main-enable_birthdate',
3911     'section'     => 'UI',
3912     'description' => 'Enable tracking of a birth date with each customer record',
3913     'type'        => 'checkbox',
3914   },
3915
3916   {
3917     'key'         => 'cust_main-enable_spouse',
3918     'section'     => 'UI',
3919     'description' => 'Enable tracking of a spouse\'s name and date of birth with each customer record',
3920     'type'        => 'checkbox',
3921   },
3922
3923   {
3924     'key'         => 'cust_main-enable_anniversary_date',
3925     'section'     => 'UI',
3926     'description' => 'Enable tracking of an anniversary date with each customer record',
3927     'type'        => 'checkbox',
3928   },
3929
3930   {
3931     'key'         => 'cust_main-enable_order_package',
3932     'section'     => 'UI',
3933     'description' => 'Display order new package on the basic tab',
3934     'type'        => 'checkbox',
3935   },
3936
3937   {
3938     'key'         => 'cust_main-edit_calling_list_exempt',
3939     'section'     => 'UI',
3940     'description' => 'Display the "calling_list_exempt" checkbox on customer edit.',
3941     'type'        => 'checkbox',
3942   },
3943
3944   {
3945     'key'         => 'support-key',
3946     'section'     => '',
3947     '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.',
3948     'type'        => 'text',
3949   },
3950
3951   {
3952     'key'         => 'card-types',
3953     'section'     => 'billing',
3954     'description' => 'Select one or more card types to enable only those card types.  If no card types are selected, all card types are available.',
3955     'type'        => 'selectmultiple',
3956     'select_enum' => \@card_types,
3957   },
3958
3959   {
3960     'key'         => 'disable-fuzzy',
3961     'section'     => 'UI',
3962     'description' => 'Disable fuzzy searching.  Speeds up searching for large sites, but only shows exact matches.',
3963     'type'        => 'checkbox',
3964   },
3965
3966   {
3967     'key'         => 'fuzzy-fuzziness',
3968     'section'     => 'UI',
3969     'description' => 'Set the "fuzziness" of fuzzy searching (see the String::Approx manpage for details).  Defaults to 10%',
3970     'type'        => 'text',
3971   },
3972
3973   {
3974     'key'         => 'enable_fuzzy_on_exact',
3975     'section'     => 'UI',
3976     'description' => 'Enable approximate customer searching even when an exact match is found.',
3977     'type'        => 'checkbox',
3978   },
3979
3980   { 'key'         => 'pkg_referral',
3981     'section'     => '',
3982     'description' => 'Enable package-specific advertising sources.',
3983     'type'        => 'checkbox',
3984   },
3985
3986   { 'key'         => 'pkg_referral-multiple',
3987     'section'     => '',
3988     'description' => 'In addition, allow multiple advertising sources to be associated with a single package.',
3989     'type'        => 'checkbox',
3990   },
3991
3992   {
3993     'key'         => 'dashboard-install_welcome',
3994     'section'     => 'UI',
3995     'description' => 'New install welcome screen.',
3996     'type'        => 'select',
3997     'select_enum' => [ '', 'ITSP_fsinc_hosted', ],
3998   },
3999
4000   {
4001     'key'         => 'dashboard-toplist',
4002     'section'     => 'UI',
4003     'description' => 'List of items to display on the top of the front page',
4004     'type'        => 'textarea',
4005   },
4006
4007   {
4008     'key'         => 'impending_recur_msgnum',
4009     'section'     => 'notification',
4010     'description' => 'Template to use for alerts about first-time recurring billing.',
4011     %msg_template_options,
4012   },
4013
4014   {
4015     'key'         => 'logo.png',
4016     'section'     => 'UI',  #'invoicing' ?
4017     'description' => 'Company logo for HTML invoices and the backoffice interface, in PNG format.  Suggested size somewhere near 92x62.',
4018     'type'        => 'image',
4019     'per_agent'   => 1, #XXX just view/logo.cgi, which is for the global
4020                         #old-style editor anyway...?
4021     'per_locale'  => 1,
4022   },
4023
4024   {
4025     'key'         => 'logo.eps',
4026     'section'     => 'invoicing',
4027     'description' => 'Company logo for printed and PDF invoices, in EPS format.',
4028     'type'        => 'image',
4029     'per_agent'   => 1, #XXX as above, kinda
4030     'per_locale'  => 1,
4031   },
4032
4033   {
4034     'key'         => 'selfservice-ignore_quantity',
4035     'section'     => 'self-service',
4036     'description' => 'Ignores service quantity restrictions in self-service context.  Strongly not recommended - just set your quantities correctly in the first place.',
4037     'type'        => 'checkbox',
4038   },
4039
4040   {
4041     'key'         => 'selfservice-session_timeout',
4042     'section'     => 'self-service',
4043     'description' => 'Self-service session timeout.  Defaults to 1 hour.',
4044     'type'        => 'select',
4045     'select_enum' => [ '1 hour', '2 hours', '4 hours', '8 hours', '1 day', '1 week', ],
4046   },
4047
4048   {
4049     'key'         => 'password-generated-allcaps',
4050     'section'     => 'password',
4051     'description' => 'Causes passwords automatically generated to consist entirely of capital letters',
4052     'type'        => 'checkbox',
4053   },
4054
4055   {
4056     'key'         => 'password-no_reuse',
4057     'section'     => 'password',
4058     'description' => 'Minimum number of password changes before a password can be reused. By default, passwords can be reused without restriction.',
4059     'type'        => 'text',
4060   },
4061
4062   {
4063     'key'         => 'datavolume-forcemegabytes',
4064     'section'     => 'UI',
4065     'description' => 'All data volumes are expressed in megabytes',
4066     'type'        => 'checkbox',
4067   },
4068
4069   {
4070     'key'         => 'datavolume-significantdigits',
4071     'section'     => 'UI',
4072     'description' => 'number of significant digits to use to represent data volumes',
4073     'type'        => 'text',
4074   },
4075
4076   {
4077     'key'         => 'disable_void_after',
4078     'section'     => 'billing',
4079     'description' => 'Number of seconds after which freeside won\'t attempt to VOID a payment first when performing a refund.',
4080     'type'        => 'text',
4081   },
4082
4083   {
4084     'key'         => 'disable_line_item_date_ranges',
4085     'section'     => 'billing',
4086     'description' => 'Prevent freeside from automatically generating date ranges on invoice line items.',
4087     'type'        => 'checkbox',
4088   },
4089
4090   {
4091     'key'         => 'cust_bill-line_item-date_style',
4092     'section'     => 'billing',
4093     'description' => 'Display format for line item date ranges on invoice line items.',
4094     'type'        => 'select',
4095     'select_hash' => [ ''           => 'STARTDATE-ENDDATE',
4096                        'month_of'   => 'Month of MONTHNAME',
4097                        'X_month'    => 'DATE_DESC MONTHNAME',
4098                      ],
4099     'per_agent'   => 1,
4100   },
4101
4102   {
4103     'key'         => 'cust_bill-line_item-date_style-non_monthly',
4104     'section'     => 'billing',
4105     'description' => 'If set, override cust_bill-line_item-date_style for non-monthly charges.',
4106     'type'        => 'select',
4107     'select_hash' => [ ''           => 'Default',
4108                        'start_end'  => 'STARTDATE-ENDDATE',
4109                        'month_of'   => 'Month of MONTHNAME',
4110                        'X_month'    => 'DATE_DESC MONTHNAME',
4111                      ],
4112     'per_agent'   => 1,
4113   },
4114
4115   {
4116     'key'         => 'cust_bill-line_item-date_description',
4117     'section'     => 'billing',
4118     'description' => 'Text to display for "DATE_DESC" when using cust_bill-line_item-date_style DATE_DESC MONTHNAME.',
4119     'type'        => 'text',
4120     'per_agent'   => 1,
4121   },
4122
4123   {
4124     'key'         => 'support_packages',
4125     'section'     => '',
4126     'description' => 'A list of packages eligible for RT ticket time transfer, one pkgpart per line.', #this should really be a select multiple, or specified in the packages themselves...
4127     'type'        => 'select-part_pkg',
4128     'multiple'    => 1,
4129   },
4130
4131   {
4132     'key'         => 'cust_main-require_phone',
4133     'section'     => '',
4134     'description' => 'Require daytime or night phone for all customer records.',
4135     'type'        => 'checkbox',
4136     'per_agent'   => 1,
4137   },
4138
4139   {
4140     'key'         => 'cust_main-require_invoicing_list_email',
4141     'section'     => '',
4142     'description' => 'Email address field is required: require at least one invoicing email address for all customer records.',
4143     'type'        => 'checkbox',
4144     'per_agent'   => 1,
4145   },
4146
4147   {
4148     'key'         => 'cust_main-check_unique',
4149     'section'     => '',
4150     'description' => 'Warn before creating a customer record where these fields duplicate another customer.',
4151     'type'        => 'select',
4152     'multiple'    => 1,
4153     'select_hash' => [ 
4154       'address' => 'Billing or service address',
4155     ],
4156   },
4157
4158   {
4159     'key'         => 'svc_acct-display_paid_time_remaining',
4160     'section'     => '',
4161     'description' => 'Show paid time remaining in addition to time remaining.',
4162     'type'        => 'checkbox',
4163   },
4164
4165   {
4166     'key'         => 'cancel_credit_type',
4167     'section'     => 'billing',
4168     'description' => 'The group to use for new, automatically generated credit reasons resulting from cancellation.',
4169     reason_type_options('R'),
4170   },
4171
4172   {
4173     'key'         => 'suspend_credit_type',
4174     'section'     => 'billing',
4175     'description' => 'The group to use for new, automatically generated credit reasons resulting from package suspension.',
4176     reason_type_options('R'),
4177   },
4178
4179   {
4180     'key'         => 'referral_credit_type',
4181     'section'     => 'deprecated',
4182     'description' => 'Used to be the group to use for new, automatically generated credit reasons resulting from referrals.  Now set in a package billing event for the referral.',
4183     reason_type_options('R'),
4184   },
4185
4186   # was only used to negate invoices during signup when card was declined, now we just void
4187   {
4188     'key'         => 'signup_credit_type',
4189     'section'     => 'deprecated', #self-service?
4190     'description' => 'The group to use for new, automatically generated credit reasons resulting from signup and self-service declines.',
4191     reason_type_options('R'),
4192   },
4193
4194   {
4195     'key'         => 'prepayment_discounts-credit_type',
4196     'section'     => 'billing',
4197     'description' => 'Enables the offering of prepayment discounts and establishes the credit reason type.',
4198     reason_type_options('R'),
4199   },
4200
4201   {
4202     'key'         => 'cust_main-agent_custid-format',
4203     'section'     => '',
4204     'description' => 'Enables searching of various formatted values in cust_main.agent_custid',
4205     'type'        => 'select',
4206     'select_hash' => [
4207                        ''       => 'Numeric only',
4208                        '\d{7}'  => 'Numeric only, exactly 7 digits',
4209                        'ww?d+'  => 'Numeric with one or two letter prefix',
4210                      ],
4211   },
4212
4213   {
4214     'key'         => 'card_masking_method',
4215     'section'     => 'UI',
4216     '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.  Note: You should manually remove stored paymasks if you change this value on an existing database, to avoid problems using stored cards.',
4217     'type'        => 'select',
4218     'select_hash' => [
4219                        ''            => '123456xxxxxx1234',
4220                        'first6last2' => '123456xxxxxxxx12',
4221                        'first4last4' => '1234xxxxxxxx1234',
4222                        'first4last2' => '1234xxxxxxxxxx12',
4223                        'first2last4' => '12xxxxxxxxxx1234',
4224                        'first2last2' => '12xxxxxxxxxxxx12',
4225                        'first0last4' => 'xxxxxxxxxxxx1234',
4226                        'first0last2' => 'xxxxxxxxxxxxxx12',
4227                      ],
4228   },
4229
4230   {
4231     'key'         => 'disable_previous_balance',
4232     'section'     => 'invoicing',
4233     'description' => 'Show new charges only; do not list previous invoices, payments, or credits on the invoice.',
4234     'type'        => 'checkbox',
4235     'per_agent'   => 1,
4236   },
4237
4238   {
4239     'key'         => 'previous_balance-exclude_from_total',
4240     'section'     => 'invoicing',
4241     'description' => 'Show separate totals for previous invoice balance and new charges. Only meaningful when invoice_sections is false.',
4242     'type'        => 'checkbox',
4243   },
4244
4245   {
4246     'key'         => 'previous_balance-text',
4247     'section'     => 'invoicing',
4248     'description' => 'Text for the label of the total previous balance, when it is shown separately. Defaults to "Previous Balance".',
4249     'type'        => 'text',
4250   },
4251
4252   {
4253     'key'         => 'previous_balance-text-total_new_charges',
4254     'section'     => 'invoicing',
4255     'description' => 'Text for the label of the total of new charges, when it is shown separately. If invoice_show_prior_due_date is enabled, the due date of current charges will be appended. Defaults to "Total New Charges".',
4256     'type'        => 'text',
4257   },
4258
4259   {
4260     'key'         => 'previous_balance-section',
4261     'section'     => 'invoicing',
4262     'description' => 'Show previous invoice balances in a separate invoice section.  Does not require invoice_sections to be enabled.',
4263     'type'        => 'checkbox',
4264   },
4265
4266   {
4267     'key'         => 'previous_balance-summary_only',
4268     'section'     => 'invoicing',
4269     'description' => 'Only show a single line summarizing the total previous balance rather than one line per invoice.',
4270     'type'        => 'checkbox',
4271   },
4272
4273   {
4274     'key'         => 'previous_balance-show_credit',
4275     'section'     => 'invoicing',
4276     'description' => 'Show the customer\'s credit balance on invoices when applicable.',
4277     'type'        => 'checkbox',
4278   },
4279
4280   {
4281     'key'         => 'previous_balance-show_on_statements',
4282     'section'     => 'invoicing',
4283     'description' => 'Show previous invoices on statements, without itemized charges.',
4284     'type'        => 'checkbox',
4285   },
4286
4287   {
4288     'key'         => 'previous_balance-payments_since',
4289     'section'     => 'invoicing',
4290     'description' => 'Instead of showing payments (and credits) applied to the invoice, show those received since the previous invoice date.',
4291     'type'        => 'checkbox',
4292                        'uscensus' => 'U.S. Census Bureau',
4293   },
4294
4295   {
4296     'key'         => 'previous_invoice_history',
4297     'section'     => 'invoicing',
4298     'description' => 'Show a month-by-month history of the customer\'s '.
4299                      'billing amounts.  This requires template '.
4300                      'modification and is currently not supported on the '.
4301                      'stock template.',
4302     'type'        => 'checkbox',
4303   },
4304
4305   {
4306     'key'         => 'balance_due_below_line',
4307     'section'     => 'invoicing',
4308     'description' => 'Place the balance due message below a line.  Only meaningful when when invoice_sections is false.',
4309     'type'        => 'checkbox',
4310   },
4311
4312   {
4313     'key'         => 'always_show_tax',
4314     'section'     => 'invoicing',
4315     'description' => 'Show a line for tax on the invoice even when the tax is zero.  Optionally provide text for the tax name to show.',
4316     'type'        => [ qw(checkbox text) ],
4317   },
4318
4319   {
4320     'key'         => 'address_standardize_method',
4321     'section'     => 'UI', #???
4322     'description' => 'Method for standardizing customer addresses.',
4323     'type'        => 'select',
4324     'select_hash' => [ '' => '', 
4325                        'usps'     => 'U.S. Postal Service',
4326                        'tomtom'   => 'TomTom',
4327                        'melissa'  => 'Melissa WebSmart',
4328                      ],
4329   },
4330
4331   {
4332     'key'         => 'usps_webtools-userid',
4333     'section'     => 'UI',
4334     'description' => 'Production UserID for USPS web tools.   Enables USPS address standardization.  See the <a href="http://www.usps.com/webtools/">USPS website</a>, register and agree not to use the tools for batch purposes.',
4335     'type'        => 'text',
4336   },
4337
4338   {
4339     'key'         => 'usps_webtools-password',
4340     'section'     => 'UI',
4341     'description' => 'Production password for USPS web tools.   Enables USPS address standardization.  See <a href="http://www.usps.com/webtools/">USPS website</a>, register and agree not to use the tools for batch purposes.',
4342     'type'        => 'text',
4343   },
4344
4345   {
4346     'key'         => 'tomtom-userid',
4347     'section'     => 'UI',
4348     'description' => 'TomTom geocoding service API key.  See <a href="http://geocoder.tomtom.com/">the TomTom website</a> to obtain a key.  This is recommended for addresses in the United States only.',
4349     'type'        => 'text',
4350   },
4351
4352   {
4353     'key'         => 'melissa-userid',
4354     'section'     => 'UI', # it's really not...
4355     'description' => 'User ID for Melissa WebSmart service.  See <a href="http://www.melissadata.com/">the Melissa website</a> for access and pricing.',
4356     'type'        => 'text',
4357   },
4358
4359   {
4360     'key'         => 'melissa-enable_geocoding',
4361     'section'     => 'UI',
4362     'description' => 'Use the Melissa service for census tract and coordinate lookups.  Enable this only if your subscription includes geocoding access.',
4363     'type'        => 'checkbox',
4364   },
4365
4366   {
4367     'key'         => 'cust_main-auto_standardize_address',
4368     'section'     => 'UI',
4369     'description' => 'When using USPS web tools, automatically standardize the address without asking.',
4370     'type'        => 'checkbox',
4371   },
4372
4373   {
4374     'key'         => 'cust_main-require_censustract',
4375     'section'     => 'UI',
4376     'description' => 'Customer is required to have a census tract.  Useful for FCC form 477 reports. See also: cust_main-auto_standardize_address',
4377     'type'        => 'checkbox',
4378   },
4379
4380   {
4381     'key'         => 'cust_main-no_city_in_address',
4382     'section'     => 'UI',
4383     'description' => 'Turn off City for billing & shipping addresses',
4384     'type'        => 'checkbox',
4385   },
4386
4387   {
4388     'key'         => 'census_year',
4389     'section'     => 'UI',
4390     'description' => 'The year to use in census tract lookups.  NOTE: you need to select 2012 or 2013 for Year 2010 Census tract codes.  A selection of 2011 provides Year 2000 Census tract codes.  Use the freeside-censustract-update tool if exisitng customers need to be changed.',
4391     'type'        => 'select',
4392     'select_enum' => [ qw( 2013 2012 2011 ) ],
4393   },
4394
4395   {
4396     'key'         => 'tax_district_method',
4397     'section'     => 'taxation',
4398     'description' => 'The method to use to look up tax district codes.',
4399     'type'        => 'select',
4400     #'select_hash' => [ FS::Misc::Geo::get_district_methods() ],
4401     #after RT#13763, using FS::Misc::Geo here now causes a dependancy loop :/
4402     'select_hash' => [
4403                        ''         => '',
4404                        'wa_sales' => 'Washington sales tax',
4405                      ],
4406   },
4407
4408   {
4409     'key'         => 'company_latitude',
4410     'section'     => 'UI',
4411     'description' => 'Your company latitude (-90 through 90)',
4412     'type'        => 'text',
4413   },
4414
4415   {
4416     'key'         => 'company_longitude',
4417     'section'     => 'UI',
4418     'description' => 'Your company longitude (-180 thru 180)',
4419     'type'        => 'text',
4420   },
4421
4422   {
4423     'key'         => 'geocode_module',
4424     'section'     => '',
4425     'description' => 'Module to geocode (retrieve a latitude and longitude for) addresses',
4426     'type'        => 'select',
4427     'select_enum' => [ 'Geo::Coder::Googlev3' ],
4428   },
4429
4430   {
4431     'key'         => 'geocode-require_nw_coordinates',
4432     'section'     => 'UI',
4433     'description' => 'Require latitude and longitude in the North Western quadrant, e.g. for North American co-ordinates, etc.',
4434     'type'        => 'checkbox',
4435   },
4436
4437   {
4438     'key'         => 'disable_acl_changes',
4439     'section'     => '',
4440     'description' => 'Disable all ACL changes, for demos.',
4441     'type'        => 'checkbox',
4442   },
4443
4444   {
4445     'key'         => 'disable_settings_changes',
4446     'section'     => '',
4447     'description' => 'Disable all settings changes, for demos, except for the usernames given in the comma-separated list.',
4448     'type'        => [qw( checkbox text )],
4449   },
4450
4451   {
4452     'key'         => 'cust_main-edit_agent_custid',
4453     'section'     => 'UI',
4454     'description' => 'Enable editing of the agent_custid field.',
4455     'type'        => 'checkbox',
4456   },
4457
4458   {
4459     'key'         => 'cust_main-default_agent_custid',
4460     'section'     => 'UI',
4461     'description' => 'Display the agent_custid field when available instead of the custnum field.',
4462     'type'        => 'checkbox',
4463   },
4464
4465   {
4466     'key'         => 'cust_main-title-display_custnum',
4467     'section'     => 'UI',
4468     'description' => 'Add the display_custom (agent_custid or custnum) to the title on customer view pages.',
4469     'type'        => 'checkbox',
4470   },
4471
4472   {
4473     'key'         => 'cust_bill-default_agent_invid',
4474     'section'     => 'UI',
4475     'description' => 'Display the agent_invid field when available instead of the invnum field.',
4476     'type'        => 'checkbox',
4477   },
4478
4479   {
4480     'key'         => 'cust_main-auto_agent_custid',
4481     'section'     => 'UI',
4482     'description' => 'Automatically assign an agent_custid - select format',
4483     'type'        => 'select',
4484     'select_hash' => [ '' => 'No',
4485                        '1YMMXXXXXXXX' => '1YMMXXXXXXXX',
4486                      ],
4487   },
4488
4489   {
4490     'key'         => 'cust_main-custnum-display_prefix',
4491     'section'     => 'UI',
4492     'description' => 'Prefix the customer number with this string for display purposes.',
4493     'type'        => 'text',
4494     'per_agent'   => 1,
4495   },
4496
4497   {
4498     'key'         => 'cust_main-custnum-display_special',
4499     'section'     => 'UI',
4500     'description' => 'Use this customer number prefix format',
4501     'type'        => 'select',
4502     'select_hash' => [ '' => '',
4503                        'CoStAg' => 'CoStAg (country, state, agent name or display_prefix)',
4504                        'CoStCl' => 'CoStCl (country, state, class name)' ],
4505   },
4506
4507   {
4508     'key'         => 'cust_main-custnum-display_length',
4509     'section'     => 'UI',
4510     'description' => 'Zero fill the customer number to this many digits for display purposes.',
4511     'type'        => 'text',
4512   },
4513
4514   {
4515     'key'         => 'cust_main-default_areacode',
4516     'section'     => 'UI',
4517     'description' => 'Default area code for customers.',
4518     'type'        => 'text',
4519   },
4520
4521   {
4522     'key'         => 'order_pkg-no_start_date',
4523     'section'     => 'UI',
4524     'description' => 'Don\'t set a default start date for new packages.',
4525     'type'        => 'checkbox',
4526   },
4527
4528   {
4529     'key'         => 'part_pkg-delay_start',
4530     'section'     => '',
4531     'description' => 'Enabled "delayed start" option for packages.',
4532     'type'        => 'checkbox',
4533   },
4534
4535   {
4536     'key'         => 'part_pkg-delay_cancel-days',
4537     'section'     => '',
4538     'description' => 'Expire packages in this many days when using delay_cancel (default is 1)',
4539     'type'        => 'text',
4540     'validate'    => sub { (($_[0] =~ /^\d*$/) && (($_[0] eq '') || $_[0]))
4541                            ? 'Must specify an integer number of days'
4542                            : '' }
4543   },
4544
4545   {
4546     'key'         => 'mcp_svcpart',
4547     'section'     => '',
4548     'description' => 'Master Control Program svcpart.  Leave this blank.',
4549     'type'        => 'text', #select-part_svc
4550   },
4551
4552   {
4553     'key'         => 'cust_bill-max_same_services',
4554     'section'     => 'invoicing',
4555     '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.',
4556     'type'        => 'text',
4557   },
4558
4559   {
4560     'key'         => 'cust_bill-consolidate_services',
4561     'section'     => 'invoicing',
4562     'description' => 'Consolidate service display into fewer lines on invoices rather than one per service.',
4563     'type'        => 'checkbox',
4564   },
4565
4566   {
4567     'key'         => 'suspend_email_admin',
4568     'section'     => '',
4569     'description' => 'Destination admin email address to enable suspension notices',
4570     'type'        => 'text',
4571   },
4572
4573   {
4574     'key'         => 'unsuspend_email_admin',
4575     'section'     => '',
4576     'description' => 'Destination admin email address to enable unsuspension notices',
4577     'type'        => 'text',
4578   },
4579   
4580   {
4581     'key'         => 'selfservice-head',
4582     'section'     => 'self-service',
4583     'description' => 'HTML for the HEAD section of the self-service interface, typically used for LINK stylesheet tags',
4584     'type'        => 'textarea', #htmlarea?
4585     'per_agent'   => 1,
4586   },
4587
4588
4589   {
4590     'key'         => 'selfservice-body_header',
4591     'section'     => 'self-service',
4592     'description' => 'HTML header for the self-service interface',
4593     'type'        => 'textarea', #htmlarea?
4594     'per_agent'   => 1,
4595   },
4596
4597   {
4598     'key'         => 'selfservice-body_footer',
4599     'section'     => 'self-service',
4600     'description' => 'HTML footer for the self-service interface',
4601     'type'        => 'textarea', #htmlarea?
4602     'per_agent'   => 1,
4603   },
4604
4605
4606   {
4607     'key'         => 'selfservice-body_bgcolor',
4608     'section'     => 'self-service',
4609     'description' => 'HTML background color for the self-service interface, for example, #FFFFFF',
4610     'type'        => 'text',
4611     'per_agent'   => 1,
4612   },
4613
4614   {
4615     'key'         => 'selfservice-box_bgcolor',
4616     'section'     => 'self-service',
4617     'description' => 'HTML color for self-service interface input boxes, for example, #C0C0C0',
4618     'type'        => 'text',
4619     'per_agent'   => 1,
4620   },
4621
4622   {
4623     'key'         => 'selfservice-stripe1_bgcolor',
4624     'section'     => 'self-service',
4625     'description' => 'HTML color for self-service interface lists (primary stripe), for example, #FFFFFF',
4626     'type'        => 'text',
4627     'per_agent'   => 1,
4628   },
4629
4630   {
4631     'key'         => 'selfservice-stripe2_bgcolor',
4632     'section'     => 'self-service',
4633     'description' => 'HTML color for self-service interface lists (alternate stripe), for example, #DDDDDD',
4634     'type'        => 'text',
4635     'per_agent'   => 1,
4636   },
4637
4638   {
4639     'key'         => 'selfservice-text_color',
4640     'section'     => 'self-service',
4641     'description' => 'HTML text color for the self-service interface, for example, #000000',
4642     'type'        => 'text',
4643     'per_agent'   => 1,
4644   },
4645
4646   {
4647     'key'         => 'selfservice-link_color',
4648     'section'     => 'self-service',
4649     'description' => 'HTML link color for the self-service interface, for example, #0000FF',
4650     'type'        => 'text',
4651     'per_agent'   => 1,
4652   },
4653
4654   {
4655     'key'         => 'selfservice-vlink_color',
4656     'section'     => 'self-service',
4657     'description' => 'HTML visited link color for the self-service interface, for example, #FF00FF',
4658     'type'        => 'text',
4659     'per_agent'   => 1,
4660   },
4661
4662   {
4663     'key'         => 'selfservice-hlink_color',
4664     'section'     => 'self-service',
4665     'description' => 'HTML hover link color for the self-service interface, for example, #808080',
4666     'type'        => 'text',
4667     'per_agent'   => 1,
4668   },
4669
4670   {
4671     'key'         => 'selfservice-alink_color',
4672     'section'     => 'self-service',
4673     'description' => 'HTML active (clicked) link color for the self-service interface, for example, #808080',
4674     'type'        => 'text',
4675     'per_agent'   => 1,
4676   },
4677
4678   {
4679     'key'         => 'selfservice-font',
4680     'section'     => 'self-service',
4681     'description' => 'HTML font CSS for the self-service interface, for example, 0.9em/1.5em Arial, Helvetica, Geneva, sans-serif',
4682     'type'        => 'text',
4683     'per_agent'   => 1,
4684   },
4685
4686   {
4687     'key'         => 'selfservice-no_logo',
4688     'section'     => 'self-service',
4689     'description' => 'Disable the logo in self-service',
4690     'type'        => 'checkbox',
4691     'per_agent'   => 1,
4692   },
4693
4694   {
4695     'key'         => 'selfservice-title_color',
4696     'section'     => 'self-service',
4697     'description' => 'HTML color for the self-service title, for example, #000000',
4698     'type'        => 'text',
4699     'per_agent'   => 1,
4700   },
4701
4702   {
4703     'key'         => 'selfservice-title_align',
4704     'section'     => 'self-service',
4705     'description' => 'HTML alignment for the self-service title, for example, center',
4706     'type'        => 'text',
4707     'per_agent'   => 1,
4708   },
4709   {
4710     'key'         => 'selfservice-title_size',
4711     'section'     => 'self-service',
4712     'description' => 'HTML font size for the self-service title, for example, 3',
4713     'type'        => 'text',
4714     'per_agent'   => 1,
4715   },
4716
4717   {
4718     'key'         => 'selfservice-title_left_image',
4719     'section'     => 'self-service',
4720     'description' => 'Image used for the top of the menu in the self-service interface, in PNG format.',
4721     'type'        => 'image',
4722     'per_agent'   => 1,
4723   },
4724
4725   {
4726     'key'         => 'selfservice-title_right_image',
4727     'section'     => 'self-service',
4728     'description' => 'Image used for the top of the menu in the self-service interface, in PNG format.',
4729     'type'        => 'image',
4730     'per_agent'   => 1,
4731   },
4732
4733   {
4734     'key'         => 'selfservice-menu_disable',
4735     'section'     => 'self-service',
4736     'description' => 'Disable the selected menu entries in the self-service menu',
4737     'type'        => 'selectmultiple',
4738     'select_enum' => [ #false laziness w/myaccount_menu.html
4739                        'Overview',
4740                        'Purchase',
4741                        'Purchase additional package',
4742                        'Recharge my account with a credit card',
4743                        'Recharge my account with a check',
4744                        'Recharge my account with a prepaid card',
4745                        'View my usage',
4746                        'Create a ticket',
4747                        'Setup my services',
4748                        'Change my information',
4749                        'Change billing address',
4750                        'Change service address',
4751                        'Change payment information',
4752                        'Change password(s)',
4753                        'Logout',
4754                      ],
4755     'per_agent'   => 1,
4756   },
4757
4758   {
4759     'key'         => 'selfservice-menu_skipblanks',
4760     'section'     => 'self-service',
4761     'description' => 'Skip blank (spacer) entries in the self-service menu',
4762     'type'        => 'checkbox',
4763     'per_agent'   => 1,
4764   },
4765
4766   {
4767     'key'         => 'selfservice-menu_skipheadings',
4768     'section'     => 'self-service',
4769     'description' => 'Skip the unclickable heading entries in the self-service menu',
4770     'type'        => 'checkbox',
4771     'per_agent'   => 1,
4772   },
4773
4774   {
4775     'key'         => 'selfservice-menu_bgcolor',
4776     'section'     => 'self-service',
4777     'description' => 'HTML color for the self-service menu, for example, #C0C0C0',
4778     'type'        => 'text',
4779     'per_agent'   => 1,
4780   },
4781
4782   {
4783     'key'         => 'selfservice-menu_fontsize',
4784     'section'     => 'self-service',
4785     'description' => 'HTML font size for the self-service menu, for example, -1',
4786     'type'        => 'text',
4787     'per_agent'   => 1,
4788   },
4789   {
4790     'key'         => 'selfservice-menu_nounderline',
4791     'section'     => 'self-service',
4792     'description' => 'Styles menu links in the self-service without underlining.',
4793     'type'        => 'checkbox',
4794     'per_agent'   => 1,
4795   },
4796
4797
4798   {
4799     'key'         => 'selfservice-menu_top_image',
4800     'section'     => 'self-service',
4801     'description' => 'Image used for the top of the menu in the self-service interface, in PNG format.',
4802     'type'        => 'image',
4803     'per_agent'   => 1,
4804   },
4805
4806   {
4807     'key'         => 'selfservice-menu_body_image',
4808     'section'     => 'self-service',
4809     'description' => 'Repeating image used for the body of the menu in the self-service interface, in PNG format.',
4810     'type'        => 'image',
4811     'per_agent'   => 1,
4812   },
4813
4814   {
4815     'key'         => 'selfservice-menu_bottom_image',
4816     'section'     => 'self-service',
4817     'description' => 'Image used for the bottom of the menu in the self-service interface, in PNG format.',
4818     'type'        => 'image',
4819     'per_agent'   => 1,
4820   },
4821   
4822   {
4823     'key'         => 'selfservice-view_usage_nodomain',
4824     'section'     => 'self-service',
4825     'description' => 'Show usernames without their domains in "View my usage" in the self-service interface.',
4826     'type'        => 'checkbox',
4827   },
4828
4829   {
4830     'key'         => 'selfservice-login_banner_image',
4831     'section'     => 'self-service',
4832     'description' => 'Banner image shown on the login page, in PNG format.',
4833     'type'        => 'image',
4834   },
4835
4836   {
4837     'key'         => 'selfservice-login_banner_url',
4838     'section'     => 'self-service',
4839     'description' => 'Link for the login banner.',
4840     'type'        => 'text',
4841   },
4842
4843   {
4844     'key'         => 'ng_selfservice-menu',
4845     'section'     => 'self-service',
4846     'description' => 'Custom menu for the next-generation self-service interface.  Each line is in the format "link Label", for example "main.php Home".  Sub-menu items are listed on subsequent lines.  Blank lines terminate the submenu.', #more docs/examples would be helpful
4847     'type'        => 'textarea',
4848   },
4849
4850   {
4851     'key'         => 'signup-no_company',
4852     'section'     => 'self-service',
4853     'description' => "Don't display a field for company name on signup.",
4854     'type'        => 'checkbox',
4855   },
4856
4857   {
4858     'key'         => 'signup-recommend_email',
4859     'section'     => 'self-service',
4860     'description' => 'Encourage the entry of an invoicing email address on signup.',
4861     'type'        => 'checkbox',
4862   },
4863
4864   {
4865     'key'         => 'signup-recommend_daytime',
4866     'section'     => 'self-service',
4867     'description' => 'Encourage the entry of a daytime phone number on signup.',
4868     'type'        => 'checkbox',
4869   },
4870
4871   {
4872     'key'         => 'signup-duplicate_cc-warn_hours',
4873     'section'     => 'self-service',
4874     'description' => 'Issue a warning if the same credit card is used for multiple signups within this many hours.',
4875     'type'        => 'text',
4876   },
4877
4878   {
4879     'key'         => 'svc_phone-radius-password',
4880     'section'     => 'telephony',
4881     'description' => 'Password when exporting svc_phone records to RADIUS',
4882     'type'        => 'select',
4883     'select_hash' => [
4884       '' => 'Use default from svc_phone-radius-default_password config',
4885       'countrycode_phonenum' => 'Phone number (with country code)',
4886     ],
4887   },
4888
4889   {
4890     'key'         => 'svc_phone-radius-default_password',
4891     'section'     => 'telephony',
4892     'description' => 'Default password when exporting svc_phone records to RADIUS',
4893     'type'        => 'text',
4894   },
4895
4896   {
4897     'key'         => 'svc_phone-allow_alpha_phonenum',
4898     'section'     => 'telephony',
4899     'description' => 'Allow letters in phone numbers.',
4900     'type'        => 'checkbox',
4901   },
4902
4903   {
4904     'key'         => 'svc_phone-domain',
4905     'section'     => 'telephony',
4906     'description' => 'Track an optional domain association with each phone service.',
4907     'type'        => 'checkbox',
4908   },
4909
4910   {
4911     'key'         => 'svc_phone-phone_name-max_length',
4912     'section'     => 'telephony',
4913     'description' => 'Maximum length of the phone service "Name" field (svc_phone.phone_name).  Sometimes useful to limit this (to 15?) when exporting as Caller ID data.',
4914     'type'        => 'text',
4915   },
4916
4917   {
4918     'key'         => 'svc_phone-random_pin',
4919     'section'     => 'telephony',
4920     'description' => 'Number of random digits to generate in the "PIN" field, if empty.',
4921     'type'        => 'text',
4922   },
4923
4924   {
4925     'key'         => 'svc_phone-lnp',
4926     'section'     => 'telephony',
4927     'description' => 'Enables Number Portability features for svc_phone',
4928     'type'        => 'checkbox',
4929   },
4930
4931   {
4932     'key'         => 'svc_phone-bulk_provision_simple',
4933     'section'     => 'telephony',
4934     'description' => 'Bulk provision phone numbers with a simple number range instead of from DID vendor orders',
4935     'type'        => 'checkbox',
4936   },
4937
4938   {
4939     'key'         => 'default_phone_countrycode',
4940     'section'     => 'telephony',
4941     'description' => 'Default countrycode',
4942     'type'        => 'text',
4943   },
4944
4945   {
4946     'key'         => 'cdr-charged_party-field',
4947     'section'     => 'telephony',
4948     'description' => 'Set the charged_party field of CDRs to this field.',
4949     'type'        => 'select-sub',
4950     'options_sub' => sub { my $fields = FS::cdr->table_info->{'fields'};
4951                            map { $_ => $fields->{$_}||$_ }
4952                            grep { $_ !~ /^(acctid|charged_party)$/ }
4953                            FS::Schema::dbdef->table('cdr')->columns;
4954                          },
4955     'option_sub'  => sub { my $f = shift;
4956                            FS::cdr->table_info->{'fields'}{$f} || $f;
4957                          },
4958   },
4959
4960   #probably deprecate in favor of cdr-charged_party-field above
4961   {
4962     'key'         => 'cdr-charged_party-accountcode',
4963     'section'     => 'telephony',
4964     'description' => 'Set the charged_party field of CDRs to the accountcode.',
4965     'type'        => 'checkbox',
4966   },
4967
4968   {
4969     'key'         => 'cdr-charged_party-accountcode-trim_leading_0s',
4970     'section'     => 'telephony',
4971     'description' => 'When setting the charged_party field of CDRs to the accountcode, trim any leading zeros.',
4972     'type'        => 'checkbox',
4973   },
4974
4975 #  {
4976 #    'key'         => 'cdr-charged_party-truncate_prefix',
4977 #    'section'     => '',
4978 #    'description' => 'If the charged_party field has this prefix, truncate it to the length in cdr-charged_party-truncate_length.',
4979 #    'type'        => 'text',
4980 #  },
4981 #
4982 #  {
4983 #    'key'         => 'cdr-charged_party-truncate_length',
4984 #    'section'     => '',
4985 #    'description' => 'If the charged_party field has the prefix in cdr-charged_party-truncate_prefix, truncate it to this length.',
4986 #    'type'        => 'text',
4987 #  },
4988
4989   {
4990     'key'         => 'cdr-charged_party_rewrite',
4991     'section'     => 'telephony',
4992     'description' => 'Do charged party rewriting in the freeside-cdrrewrited daemon; useful if CDRs are being dropped off directly in the database and require special charged_party processing such as cdr-charged_party-accountcode or cdr-charged_party-truncate*.',
4993     'type'        => 'checkbox',
4994   },
4995
4996   {
4997     'key'         => 'cdr-taqua-da_rewrite',
4998     'section'     => 'telephony',
4999     'description' => 'For the Taqua CDR format, a comma-separated list of directory assistance 800 numbers.  Any CDRs with these numbers as "BilledNumber" will be rewritten to the "CallingPartyNumber" (and CallType "12") on import.',
5000     'type'        => 'text',
5001   },
5002
5003   {
5004     'key'         => 'cdr-taqua-accountcode_rewrite',
5005     'section'     => 'telephony',
5006     'description' => 'For the Taqua CDR format, pull accountcodes from secondary CDRs with matching sessionNumber.',
5007     'type'        => 'checkbox',
5008   },
5009
5010   {
5011     'key'         => 'cdr-taqua-callerid_rewrite',
5012     'section'     => 'telephony',
5013     'description' => 'For the Taqua CDR format, pull Caller ID blocking information from secondary CDRs.',
5014     'type'        => 'checkbox',
5015   },
5016
5017   {
5018     'key'         => 'cdr-asterisk_australia_rewrite',
5019     'section'     => 'telephony',
5020     'description' => 'For Asterisk CDRs, assign CDR type numbers based on Australian conventions.',
5021     'type'        => 'checkbox',
5022   },
5023
5024   {
5025     'key'         => 'cdr-gsm_tap3-sender',
5026     'section'     => 'telephony',
5027     'description' => 'GSM TAP3 Sender network (5 letter code)',
5028     'type'        => 'text',
5029   },
5030
5031   {
5032     'key'         => 'cust_pkg-show_autosuspend',
5033     'section'     => 'UI',
5034     'description' => 'Show package auto-suspend dates.  Use with caution for now; can slow down customer view for large insallations.',
5035     'type'        => 'checkbox',
5036   },
5037
5038   {
5039     'key'         => 'cdr-asterisk_forward_rewrite',
5040     'section'     => 'telephony',
5041     'description' => 'Enable special processing for CDRs representing forwarded calls: For CDRs that have a dcontext that starts with "Local/" but does not match dst, set charged_party to dst, parse a new dst from dstchannel, and set amaflags to "2" ("BILL"/"BILLING").',
5042     'type'        => 'checkbox',
5043   },
5044
5045   {
5046     'key'         => 'mc-outbound_packages',
5047     'section'     => '',
5048     'description' => "Don't use this.",
5049     'type'        => 'select-part_pkg',
5050     'multiple'    => 1,
5051   },
5052
5053   {
5054     'key'         => 'disable-cust-pkg_class',
5055     'section'     => 'UI',
5056     'description' => 'Disable the two-step dropdown for selecting package class and package, and return to the classic single dropdown.',
5057     'type'        => 'checkbox',
5058   },
5059
5060   {
5061     'key'         => 'queued-max_kids',
5062     'section'     => '',
5063     'description' => 'Maximum number of queued processes.  Defaults to 10.',
5064     'type'        => 'text',
5065   },
5066
5067   {
5068     'key'         => 'queued-sleep_time',
5069     'section'     => '',
5070     'description' => 'Time to sleep between attempts to find new jobs to process in the queue.  Defaults to 10.  Installations doing real-time CDR processing for prepaid may want to set it lower.',
5071     'type'        => 'text',
5072   },
5073
5074   {
5075     'key'         => 'queue-no_history',
5076     'section'     => '',
5077     'description' => "Don't recreate the h_queue and h_queue_arg tables on upgrades.  This can save disk space for large installs, especially when using prepaid or multi-process billing.  After turning this option on, drop the h_queue and h_queue_arg tables, run freeside-dbdef-create and restart Apache and Freeside.",
5078     'type'        => 'checkbox',
5079   },
5080
5081   {
5082     'key'         => 'cancelled_cust-noevents',
5083     'section'     => 'billing',
5084     'description' => "Don't run events for cancelled customers",
5085     'type'        => 'checkbox',
5086   },
5087
5088   {
5089     'key'         => 'agent-invoice_template',
5090     'section'     => 'invoicing',
5091     'description' => 'Enable display/edit of old-style per-agent invoice template selection',
5092     'type'        => 'checkbox',
5093   },
5094
5095   {
5096     'key'         => 'svc_broadband-manage_link',
5097     'section'     => 'UI',
5098     'description' => 'URL for svc_broadband "Manage Device" link.  The following substitutions are available: $ip_addr and $mac_addr.',
5099     'type'        => 'text',
5100   },
5101
5102   {
5103     'key'         => 'svc_broadband-manage_link_text',
5104     'section'     => 'UI',
5105     'description' => 'Label for "Manage Device" link',
5106     'type'        => 'text',
5107   },
5108
5109   {
5110     'key'         => 'svc_broadband-manage_link_loc',
5111     'section'     => 'UI',
5112     'description' => 'Location for "Manage Device" link',
5113     'type'        => 'select',
5114     'select_hash' => [
5115       'bottom' => 'Near Unprovision link',
5116       'right'  => 'With export-related links',
5117     ],
5118   },
5119
5120   {
5121     'key'         => 'svc_broadband-manage_link-new_window',
5122     'section'     => 'UI',
5123     'description' => 'Open the "Manage Device" link in a new window',
5124     'type'        => 'checkbox',
5125   },
5126
5127   #more fine-grained, service def-level control could be useful eventually?
5128   {
5129     'key'         => 'svc_broadband-allow_null_ip_addr',
5130     'section'     => '',
5131     'description' => '',
5132     'type'        => 'checkbox',
5133   },
5134
5135   {
5136     'key'         => 'svc_hardware-check_mac_addr',
5137     'section'     => '', #?
5138     'description' => 'Require the "hardware address" field in hardware services to be a valid MAC address.',
5139     'type'        => 'checkbox',
5140   },
5141
5142   {
5143     'key'         => 'tax-report_groups',
5144     'section'     => '',
5145     'description' => 'List of grouping possibilities for tax names on reports, one per line, "label op value" (op can be = or !=).',
5146     'type'        => 'textarea',
5147   },
5148
5149   {
5150     'key'         => 'tax-cust_exempt-groups',
5151     'section'     => 'taxation',
5152     'description' => 'List of grouping possibilities for tax names, for per-customer exemption purposes, one tax name per line.  For example, "GST" would indicate the ability to exempt customers individually from taxes named "GST" (but not other taxes).',
5153     'type'        => 'textarea',
5154   },
5155
5156   {
5157     'key'         => 'tax-cust_exempt-groups-require_individual_nums',
5158     'section'     => 'deprecated',
5159     'description' => 'Deprecated: see tax-cust_exempt-groups-number_requirement',
5160     'type'        => 'checkbox',
5161   },
5162
5163   {
5164     'key'         => 'tax-cust_exempt-groups-num_req',
5165     'section'     => 'taxation',
5166     'description' => 'When using tax-cust_exempt-groups, control whether individual tax exemption numbers are required for exemption from different taxes.',
5167     'type'        => 'select',
5168     'select_hash' => [ ''            => 'Not required',
5169                        'residential' => 'Required for residential customers only',
5170                        'all'         => 'Required for all customers',
5171                      ],
5172   },
5173
5174   {
5175     'key'         => 'cust_main-default_view',
5176     'section'     => 'UI',
5177     'description' => 'Default customer view, for users who have not selected a default view in their preferences.',
5178     'type'        => 'select',
5179     'select_hash' => [
5180       #false laziness w/view/cust_main.cgi and pref/pref.html
5181       'basics'          => 'Basics',
5182       'notes'           => 'Notes',
5183       'tickets'         => 'Tickets',
5184       'packages'        => 'Packages',
5185       'payment_history' => 'Payment History',
5186       'change_history'  => 'Change History',
5187       'jumbo'           => 'Jumbo',
5188     ],
5189   },
5190
5191   {
5192     'key'         => 'enable_tax_adjustments',
5193     'section'     => 'taxation',
5194     'description' => 'Enable the ability to add manual tax adjustments.',
5195     'type'        => 'checkbox',
5196   },
5197
5198   {
5199     'key'         => 'rt-crontool',
5200     'section'     => '',
5201     'description' => 'Enable the RT CronTool extension.',
5202     'type'        => 'checkbox',
5203   },
5204
5205   {
5206     'key'         => 'pkg-balances',
5207     'section'     => 'billing',
5208     'description' => 'Enable per-package balances.',
5209     'type'        => 'checkbox',
5210   },
5211
5212   {
5213     'key'         => 'pkg-addon_classnum',
5214     'section'     => 'billing',
5215     'description' => 'Enable the ability to restrict additional package orders based on package class.',
5216     'type'        => 'checkbox',
5217   },
5218
5219   {
5220     'key'         => 'cust_main-edit_signupdate',
5221     'section'     => 'UI',
5222     'description' => 'Enable manual editing of the signup date.',
5223     'type'        => 'checkbox',
5224   },
5225
5226   {
5227     'key'         => 'svc_acct-disable_access_number',
5228     'section'     => 'UI',
5229     'description' => 'Disable access number selection.',
5230     'type'        => 'checkbox',
5231   },
5232
5233   {
5234     'key'         => 'cust_bill_pay_pkg-manual',
5235     'section'     => 'UI',
5236     'description' => 'Allow manual application of payments to line items.',
5237     'type'        => 'checkbox',
5238   },
5239
5240   {
5241     'key'         => 'cust_credit_bill_pkg-manual',
5242     'section'     => 'UI',
5243     'description' => 'Allow manual application of credits to line items.',
5244     'type'        => 'checkbox',
5245   },
5246
5247   {
5248     'key'         => 'breakage-days',
5249     'section'     => 'billing',
5250     'description' => 'If set to a number of days, after an account goes that long without activity, recognizes any outstanding payments and credits as "breakage" by creating a breakage charge and invoice.',
5251     'type'        => 'text',
5252     'per_agent'   => 1,
5253   },
5254
5255   {
5256     'key'         => 'breakage-pkg_class',
5257     'section'     => 'billing',
5258     'description' => 'Package class to use for breakage reconciliation.',
5259     'type'        => 'select-pkg_class',
5260   },
5261
5262   {
5263     'key'         => 'disable_cron_billing',
5264     'section'     => 'billing',
5265     'description' => 'Disable billing and collection from being run by freeside-daily and freeside-monthly, while still allowing other actions to run, such as notifications and backup.',
5266     'type'        => 'checkbox',
5267   },
5268
5269   {
5270     'key'         => 'svc_domain-edit_domain',
5271     'section'     => '',
5272     'description' => 'Enable domain renaming',
5273     'type'        => 'checkbox',
5274   },
5275
5276   {
5277     'key'         => 'enable_legacy_prepaid_income',
5278     'section'     => '',
5279     'description' => "Enable legacy prepaid income reporting.  Only useful when you have imported pre-Freeside packages with longer-than-monthly duration, and need to do prepaid income reporting on them before they've been invoiced the first time.",
5280     'type'        => 'checkbox',
5281   },
5282
5283   {
5284     'key'         => 'cust_main-exports',
5285     'section'     => '',
5286     'description' => 'Export(s) to call on cust_main insert, modification and deletion.',
5287     'type'        => 'select-sub',
5288     'multiple'    => 1,
5289     'options_sub' => sub {
5290       require FS::Record;
5291       require FS::part_export;
5292       my @part_export =
5293         map { qsearch( 'part_export', {exporttype => $_ } ) }
5294           keys %{FS::part_export::export_info('cust_main')};
5295       map { $_->exportnum => $_->exporttype.' to '.$_->machine } @part_export;
5296     },
5297     'option_sub'  => sub {
5298       require FS::Record;
5299       require FS::part_export;
5300       my $part_export = FS::Record::qsearchs(
5301         'part_export', { 'exportnum' => shift }
5302       );
5303       $part_export
5304         ? $part_export->exporttype.' to '.$part_export->machine
5305         : '';
5306     },
5307   },
5308
5309   #false laziness w/above options_sub and option_sub
5310   {
5311     'key'         => 'cust_location-exports',
5312     'section'     => '',
5313     'description' => 'Export(s) to call on cust_location insert, modification and deletion.',
5314     'type'        => 'select-sub',
5315     'multiple'    => 1,
5316     'options_sub' => sub {
5317       require FS::Record;
5318       require FS::part_export;
5319       my @part_export =
5320         map { qsearch( 'part_export', {exporttype => $_ } ) }
5321           keys %{FS::part_export::export_info('cust_location')};
5322       map { $_->exportnum => $_->exporttype.' to '.$_->machine } @part_export;
5323     },
5324     'option_sub'  => sub {
5325       require FS::Record;
5326       require FS::part_export;
5327       my $part_export = FS::Record::qsearchs(
5328         'part_export', { 'exportnum' => shift }
5329       );
5330       $part_export
5331         ? $part_export->exporttype.' to '.$part_export->machine
5332         : '';
5333     },
5334   },
5335
5336   {
5337     'key'         => 'cust_tag-location',
5338     'section'     => 'UI',
5339     'description' => 'Location where customer tags are displayed.',
5340     'type'        => 'select',
5341     'select_enum' => [ 'misc_info', 'top' ],
5342   },
5343
5344   {
5345     'key'         => 'cust_main-custom_link',
5346     'section'     => 'UI',
5347     'description' => 'URL to use as source for the "Custom" tab in the View Customer page.  The customer number will be appended, or you can insert "$custnum" to have it inserted elsewhere.  "$agentnum" will be replaced with the agent number, "$agent_custid" with be replaced with the agent customer ID (if any), and "$usernum" will be replaced with the employee number.',
5348     'type'        => 'textarea',
5349   },
5350
5351   {
5352     'key'         => 'cust_main-custom_content',
5353     'section'     => 'UI',
5354     'description' => 'As an alternative to cust_main-custom_link (leave it blank), the contant to display on this customer page, one item per line.  Available iems are: small_custview, birthdate, spouse_birthdate, svc_acct, svc_phone and svc_external.',
5355     'type'        => 'textarea',
5356   },
5357
5358   {
5359     'key'         => 'cust_main-custom_title',
5360     'section'     => 'UI',
5361     'description' => 'Title for the "Custom" tab in the View Customer page.',
5362     'type'        => 'text',
5363   },
5364
5365   {
5366     'key'         => 'part_pkg-default_suspend_bill',
5367     'section'     => 'billing',
5368     'description' => 'Default the "Continue recurring billing while suspended" flag to on for new package definitions.',
5369     'type'        => 'checkbox',
5370   },
5371   
5372   {
5373     'key'         => 'qual-alt_address_format',
5374     'section'     => 'UI',
5375     'description' => 'Enable the alternate address format (location type, number, and kind) for qualifications.',
5376     'type'        => 'checkbox',
5377   },
5378
5379   {
5380     'key'         => 'prospect_main-alt_address_format',
5381     'section'     => 'UI',
5382     'description' => 'Enable the alternate address format (location type, number, and kind) for prospects.  Recommended if qual-alt_address_format is set and the main use of propects is for qualifications.',
5383     'type'        => 'checkbox',
5384   },
5385
5386   {
5387     'key'         => 'prospect_main-location_required',
5388     'section'     => 'UI',
5389     'description' => 'Require an address for prospects.  Recommended if the main use of propects is for qualifications.',
5390     'type'        => 'checkbox',
5391   },
5392
5393   {
5394     'key'         => 'note-classes',
5395     'section'     => 'UI',
5396     'description' => 'Use customer note classes',
5397     'type'        => 'select',
5398     'select_hash' => [
5399                        0 => 'Disabled',
5400                        1 => 'Enabled',
5401                        2 => 'Enabled, with tabs',
5402                      ],
5403   },
5404
5405   {
5406     'key'         => 'svc_acct-cf_privatekey-message',
5407     'section'     => '',
5408     'description' => 'For internal use: HTML displayed when cf_privatekey field is set.',
5409     'type'        => 'textarea',
5410   },
5411
5412   {
5413     'key'         => 'menu-prepend_links',
5414     'section'     => 'UI',
5415     'description' => 'Links to prepend to the main menu, one per line, with format "URL Link Label (optional ALT popup)".',
5416     'type'        => 'textarea',
5417   },
5418
5419   {
5420     'key'         => 'cust_main-external_links',
5421     'section'     => 'UI',
5422     'description' => 'External links available in customer view, one per line, with format "URL Link Label (optional ALT popup)".  The URL will have custnum appended.',
5423     'type'        => 'textarea',
5424   },
5425   
5426   {
5427     'key'         => 'svc_phone-did-summary',
5428     'section'     => 'invoicing',
5429     'description' => 'Experimental feature to enable DID activity summary on invoices, showing # DIDs activated/deactivated/ported-in/ported-out and total minutes usage, covering period since last invoice.',
5430     'type'        => 'checkbox',
5431   },
5432
5433   {
5434     'key'         => 'svc_acct-usage_seconds',
5435     'section'     => 'invoicing',
5436     'description' => 'Enable calculation of RADIUS usage time for invoices.  You must modify your template to display this information.',
5437     'type'        => 'checkbox',
5438   },
5439   
5440   {
5441     'key'         => 'opensips_gwlist',
5442     'section'     => 'telephony',
5443     'description' => 'For svc_phone OpenSIPS dr_rules export, gwlist column value, per-agent',
5444     'type'        => 'text',
5445     'per_agent'   => 1,
5446     'agentonly'   => 1,
5447   },
5448
5449   {
5450     'key'         => 'opensips_description',
5451     'section'     => 'telephony',
5452     'description' => 'For svc_phone OpenSIPS dr_rules export, description column value, per-agent',
5453     'type'        => 'text',
5454     'per_agent'   => 1,
5455     'agentonly'   => 1,
5456   },
5457   
5458   {
5459     'key'         => 'opensips_route',
5460     'section'     => 'telephony',
5461     'description' => 'For svc_phone OpenSIPS dr_rules export, routeid column value, per-agent',
5462     'type'        => 'text',
5463     'per_agent'   => 1,
5464     'agentonly'   => 1,
5465   },
5466
5467   {
5468     'key'         => 'cust_bill-no_recipients-error',
5469     'section'     => 'invoicing',
5470     'description' => 'For customers with no invoice recipients, throw a job queue error rather than the default behavior of emailing the invoice to the invoice_from address.',
5471     'type'        => 'checkbox',
5472   },
5473
5474   {
5475     'key'         => 'cust_bill-latex_lineitem_maxlength',
5476     'section'     => 'invoicing',
5477     'description' => 'Truncate long line items to this number of characters on typeset invoices, to avoid losing things off the right margin.  Defaults to 50.  ',
5478     'type'        => 'text',
5479   },
5480
5481   {
5482     'key'         => 'invoice_payment_details',
5483     'section'     => 'invoicing',
5484     'description' => 'When displaying payments on an invoice, show the payment method used, including the check or credit card number.  Credit card numbers will be masked.',
5485     'type'        => 'checkbox',
5486   },
5487
5488   {
5489     'key'         => 'cust_main-status_module',
5490     'section'     => 'UI',
5491     'description' => 'Which module to use for customer status display.  The "Classic" module (the default) considers accounts with cancelled recurring packages but un-cancelled one-time charges Inactive.  The "Recurring" module considers those customers Cancelled.  Similarly for customers with suspended recurring packages but one-time charges.', #other differences?
5492     'type'        => 'select',
5493     'select_enum' => [ 'Classic', 'Recurring' ],
5494   },
5495
5496   { 
5497     'key'         => 'username-pound',
5498     'section'     => 'username',
5499     'description' => 'Allow the pound character (#) in usernames.',
5500     'type'        => 'checkbox',
5501   },
5502
5503   { 
5504     'key'         => 'username-exclamation',
5505     'section'     => 'username',
5506     'description' => 'Allow the exclamation character (!) in usernames.',
5507     'type'        => 'checkbox',
5508   },
5509
5510   {
5511     'key'         => 'ie-compatibility_mode',
5512     'section'     => 'UI',
5513     'description' => "Compatibility mode META tag for Internet Explorer, used on the customer view page.  Not necessary in normal operation unless custom content (notes, cust_main-custom_link) is included on customer view that is incompatibile with newer IE verisons.",
5514     'type'        => 'select',
5515     'select_enum' => [ '', '7', 'EmulateIE7', '8', 'EmulateIE8' ],
5516   },
5517
5518   {
5519     'key'         => 'disable_payauto_default',
5520     'section'     => 'UI',
5521     'description' => 'Disable the "Charge future payments to this (card|check) automatically" checkbox from defaulting to checked.',
5522     'type'        => 'checkbox',
5523   },
5524   
5525   {
5526     'key'         => 'payment-history-report',
5527     'section'     => 'UI',
5528     'description' => 'Show a link to the raw database payment history report in the Reports menu.  DO NOT ENABLE THIS for modern installations.',
5529     'type'        => 'checkbox',
5530   },
5531   
5532   {
5533     'key'         => 'svc_broadband-require-nw-coordinates',
5534     'section'     => 'deprecated',
5535     'description' => 'Deprecated; see geocode-require_nw_coordinates instead',
5536     'type'        => 'checkbox',
5537   },
5538   
5539   {
5540     'key'         => 'cust-email-high-visibility',
5541     'section'     => 'UI',
5542     'description' => 'Move the invoicing e-mail address field to the top of the billing address section and highlight it.',
5543     'type'        => 'checkbox',
5544   },
5545   
5546   {
5547     'key'         => 'cust-edit-alt-field-order',
5548     'section'     => 'UI',
5549     'description' => 'An alternate ordering of fields for the New Customer and Edit Customer screens.',
5550     'type'        => 'checkbox',
5551   },
5552
5553   {
5554     'key'         => 'cust_bill-enable_promised_date',
5555     'section'     => 'UI',
5556     'description' => 'Enable display/editing of the "promised payment date" field on invoices.',
5557     'type'        => 'checkbox',
5558   },
5559   
5560   {
5561     'key'         => 'available-locales',
5562     'section'     => '',
5563     'description' => 'Limit available locales (employee preferences, per-customer locale selection, etc.) to a particular set.',
5564     'type'        => 'select-sub',
5565     'multiple'    => 1,
5566     'options_sub' => sub { 
5567       map { $_ => FS::Locales->description($_) }
5568       FS::Locales->locales;
5569     },
5570     'option_sub'  => sub { FS::Locales->description(shift) },
5571   },
5572
5573   {
5574     'key'         => 'cust_main-require_locale',
5575     'section'     => 'UI',
5576     'description' => 'Require an explicit locale to be chosen for new customers.',
5577     'type'        => 'checkbox',
5578   },
5579   
5580   {
5581     'key'         => 'translate-auto-insert',
5582     'section'     => '',
5583     'description' => 'Auto-insert untranslated strings for selected non-en_US locales with their default/en_US values.  Do not turn this on unless translating the interface into a new language.',
5584     'type'        => 'select',
5585     'multiple'    => 1,
5586     'select_enum' => [ grep { $_ ne 'en_US' } FS::Locales::locales ],
5587   },
5588
5589   {
5590     'key'         => 'svc_acct-tower_sector',
5591     'section'     => '',
5592     'description' => 'Track tower and sector for svc_acct (account) services.',
5593     'type'        => 'checkbox',
5594   },
5595
5596   {
5597     'key'         => 'cdr-prerate',
5598     'section'     => 'telephony',
5599     'description' => 'Experimental feature to rate CDRs immediately, rather than waiting until invoice generation time.  Can reduce invoice generation time when processing lots of CDRs.  Currently works with "VoIP/telco CDR rating (standard)" price plans using "Phone numbers (svc_phone.phonenum)" CDR service matching, without any included minutes.',
5600     'type'        => 'checkbox',
5601   },
5602
5603   {
5604     'key'         => 'cdr-prerate-cdrtypenums',
5605     'section'     => 'telephony',
5606     'description' => 'When using cdr-prerate to rate CDRs immediately, limit processing to these CDR types.',
5607     'type'        => 'select-sub',
5608     'multiple'    => 1,
5609     'options_sub' => sub { require FS::Record;
5610                            require FS::cdr_type;
5611                            map { $_->cdrtypenum => $_->cdrtypename }
5612                                FS::Record::qsearch( 'cdr_type', 
5613                                                     {} #{ 'disabled' => '' }
5614                                                   );
5615                          },
5616     'option_sub'  => sub { require FS::Record;
5617                            require FS::cdr_type;
5618                            my $cdr_type = FS::Record::qsearchs(
5619                              'cdr_type', { 'cdrtypenum'=>shift } );
5620                            $cdr_type ? $cdr_type->cdrtypename : '';
5621                          },
5622   },
5623
5624   {
5625     'key'         => 'cdr-minutes_priority',
5626     'section'     => 'telephony',
5627     'description' => 'Priority rule for assigning included minutes to CDRs.',
5628     'type'        => 'select',
5629     'select_hash' => [
5630       ''          => 'No specific order',
5631       'time'      => 'Chronological',
5632       'rate_high' => 'Highest rate first',
5633       'rate_low'  => 'Lowest rate first',
5634     ],
5635   },
5636   
5637   {
5638     'key'         => 'brand-agent',
5639     'section'     => 'UI',
5640     'description' => 'Brand the backoffice interface (currently Help->About) using the company_name, company_url and logo.png configuration settings of the selected agent.  Typically used when selling or bundling hosted access to the backoffice interface.  NOTE: The AGPL software license has specific requirements for source code availability in this situation.',
5641     'type'        => 'select-agent',
5642   },
5643
5644   {
5645     'key'         => 'cust_class-tax_exempt',
5646     'section'     => 'taxation',
5647     'description' => 'Control the tax exemption flag per customer class rather than per indivual customer.',
5648     'type'        => 'checkbox',
5649   },
5650
5651   {
5652     'key'         => 'selfservice-billing_history-line_items',
5653     'section'     => 'self-service',
5654     'description' => 'Return line item billing detail for the self-service billing_history API call.',
5655     'type'        => 'checkbox',
5656   },
5657
5658   {
5659     'key'         => 'selfservice-default_cdr_format',
5660     'section'     => 'self-service',
5661     'description' => 'Format for showing outbound CDRs in self-service.  The per-package option overrides this.',
5662     'type'        => 'select',
5663     'select_hash' => \@cdr_formats,
5664   },
5665
5666   {
5667     'key'         => 'selfservice-default_inbound_cdr_format',
5668     'section'     => 'self-service',
5669     'description' => 'Format for showing inbound CDRs in self-service.  The per-package option overrides this.  Leave blank to avoid showing these CDRs.',
5670     'type'        => 'select',
5671     'select_hash' => \@cdr_formats,
5672   },
5673
5674   {
5675     'key'         => 'selfservice-hide_cdr_price',
5676     'section'     => 'self-service',
5677     'description' => 'Don\'t show the "Price" column on CDRs in self-service.',
5678     'type'        => 'checkbox',
5679   },
5680
5681   {
5682     'key'         => 'selfservice-enable_payment_without_balance',
5683     'section'     => 'self-service',
5684     'description' => 'Allow selfservice customers to make payments even if balance is zero or below (resulting in an unapplied payment and negative balance.)',
5685     'type'        => 'checkbox',
5686   },
5687
5688   {
5689     'key'         => 'selfservice-announcement',
5690     'section'     => 'self-service',
5691     'description' => 'HTML announcement to display to all authenticated users on account overview page',
5692     'type'        => 'textarea',
5693   },
5694
5695   {
5696     'key'         => 'logout-timeout',
5697     'section'     => 'UI',
5698     'description' => 'If set, automatically log users out of the backoffice after this many minutes.',
5699     'type'       => 'text',
5700   },
5701   
5702   {
5703     'key'         => 'spreadsheet_format',
5704     'section'     => 'UI',
5705     'description' => 'Default format for spreadsheet download.',
5706     'type'        => 'select',
5707     'select_hash' => [
5708       'XLS' => 'XLS (Excel 97/2000/XP)',
5709       'XLSX' => 'XLSX (Excel 2007+)',
5710     ],
5711   },
5712
5713   {
5714     'key'         => 'report-cust_pay-select_time',
5715     'section'     => 'UI',
5716     'description' => 'Enable time selection on payment and refund reports.',
5717     'type'        => 'checkbox',
5718   },
5719
5720   {
5721     'key'         => 'authentication_module',
5722     'section'     => 'UI',
5723     'description' => '"Internal" is the default , which authenticates against the internal database.  "Legacy" is similar, but matches passwords against a legacy htpasswd file.',
5724     'type'        => 'select',
5725     'select_enum' => [qw( Internal Legacy )],
5726   },
5727
5728   {
5729     'key'         => 'external_auth-access_group-template_user',
5730     'section'     => 'UI',
5731     'description' => 'When using an external authentication module, specifies the default access groups for autocreated users, via a template user.',
5732     'type'        => 'text',
5733   },
5734
5735   {
5736     'key'         => 'allow_invalid_cards',
5737     'section'     => '',
5738     'description' => 'Accept invalid credit card numbers.  Useful for testing with fictitious customers.  There is no good reason to enable this in production.',
5739     'type'        => 'checkbox',
5740   },
5741
5742   {
5743     'key'         => 'default_credit_limit',
5744     'section'     => 'billing',
5745     'description' => 'Default customer credit limit',
5746     'type'        => 'text',
5747   },
5748
5749   {
5750     'key'         => 'api_shared_secret',
5751     'section'     => 'API',
5752     'description' => 'Shared secret for back-office API authentication',
5753     'type'        => 'text',
5754   },
5755
5756   {
5757     'key'         => 'xmlrpc_api',
5758     'section'     => 'API',
5759     'description' => 'Enable the back-office API XML-RPC server (on port 8008).',
5760     'type'        => 'checkbox',
5761   },
5762
5763 #  {
5764 #    'key'         => 'jsonrpc_api',
5765 #    'section'     => 'API',
5766 #    'description' => 'Enable the back-office API JSON-RPC server (on port 8081).',
5767 #    'type'        => 'checkbox',
5768 #  },
5769
5770   {
5771     'key'         => 'api_credit_reason',
5772     'section'     => 'API',
5773     'description' => 'Default reason for back-office API credits',
5774     'type'        => 'select-sub',
5775     #false laziness w/api_credit_reason
5776     'options_sub' => sub { require FS::Record;
5777                            require FS::reason;
5778                            my $type = qsearchs('reason_type', 
5779                              { class => 'R' }) 
5780                               or return ();
5781                            map { $_->reasonnum => $_->reason }
5782                                FS::Record::qsearch('reason', 
5783                                  { reason_type => $type->typenum } 
5784                                );
5785                          },
5786     'option_sub'  => sub { require FS::Record;
5787                            require FS::reason;
5788                            my $reason = FS::Record::qsearchs(
5789                              'reason', { 'reasonnum' => shift }
5790                            );
5791                            $reason ? $reason->reason : '';
5792                          },
5793   },
5794
5795   {
5796     'key'         => 'part_pkg-term_discounts',
5797     'section'     => 'billing',
5798     'description' => 'Enable the term discounts feature.  Recommended to keep turned off unless actually using - not well optimized for large installations.',
5799     'type'        => 'checkbox',
5800   },
5801
5802   {
5803     'key'         => 'prepaid-never_renew',
5804     'section'     => 'billing',
5805     'description' => 'Prepaid packages never renew.',
5806     'type'        => 'checkbox',
5807   },
5808
5809   {
5810     'key'         => 'agent-disable_counts',
5811     'section'     => 'UI',
5812     'description' => 'On the agent browse page, disable the customer and package counts.  Typically used for very large databases when this page takes too long to render.',
5813     'type'        => 'checkbox',
5814   },
5815
5816   {
5817     'key'         => 'tollfree-country',
5818     'section'     => 'telephony',
5819     'description' => 'Country / region for toll-free recognition',
5820     'type'        => 'select',
5821     'select_hash' => [ ''   => 'NANPA (US/Canada)',
5822                        'AU' => 'Australia',
5823                        'NZ' => 'New Zealand',
5824                      ],
5825   },
5826
5827   {
5828     'key'         => 'old_fcc_report',
5829     'section'     => '',
5830     'description' => 'Use the old (pre-2014) FCC Form 477 report format.',
5831     'type'        => 'checkbox',
5832   },
5833
5834   {
5835     'key'         => 'cust_main-default_commercial',
5836     'section'     => 'UI',
5837     'description' => 'Default for new customers is commercial rather than residential.',
5838     'type'        => 'checkbox',
5839   },
5840
5841   {
5842     'key'         => 'default_appointment_length',
5843     'section'     => 'UI',
5844     'description' => 'Default appointment length, in minutes (30 minute granularity).',
5845     'type'        => 'text',
5846   },
5847
5848   # for internal use only; test databases should declare this option and
5849   # everyone else should pretend it doesn't exist
5850   #{
5851   #  'key'         => 'no_random_ids',
5852   #  'section'     => '',
5853   #  'description' => 'Replace random identifiers in UI code with a static string, for repeatable testing. Don\'t use in production.',
5854   #  'type'        => 'checkbox',
5855   #},
5856
5857 );
5858
5859 1;
5860