X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FConf.pm;h=e45793b51feaff3df15731b0bf83e1cf250e28f3;hb=8556d71539c53a4016b0d32d1e4fed8f17d7a853;hp=d676d4e8c2c5c808b5b86ed38dfc8865420c9060;hpb=2041a9143fac20b79ead4a1ae01224dedf5b27c2;p=freeside.git diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index d676d4e8c..e45793b51 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -637,6 +637,20 @@ httemplate/docs/config.html }, { + 'key' => 'password-noampersand', + 'section' => 'password', + 'description' => 'Disallow ampersands in passwords', + 'type' => 'checkbox', + }, + + { + 'key' => 'password-noexclamation', + 'section' => 'password', + 'description' => 'Disallow exclamations in passwords (Not setting this could break old text Livingston or Cistron Radius servers)', + 'type' => 'checkbox', + }, + + { 'key' => 'qmailmachines', 'section' => 'deprecated', 'description' => 'DEPRECATED, add qmail and shellcommands exports instead. This option used to export `/var/qmail/control/virtualdomains\', `/var/qmail/control/recipientmap\', and `/var/qmail/control/rcpthosts\'. Setting this option (even if empty) also turns on user `.qmail-extension\' file maintenance in conjunction with the shellmachine option.', @@ -1050,7 +1064,7 @@ httemplate/docs/config.html { 'key' => 'signup_server-realtime', 'section' => '', - 'description' => 'Run billing for signup server signups immediately, and suspend accounts which subsequently have a balance.', + 'description' => 'Run billing for signup server signups immediately, and do not provision accounts which subsequently have a balance.', 'type' => 'checkbox', }, @@ -1306,6 +1320,49 @@ httemplate/docs/config.html 'select_enum' => [ 'generic', 'artera_turbo', ], }, + { + 'key' => 'ticket_system', + 'section' => '', + 'description' => 'Ticketing system integraiton. RT_Internal uses the built-in RT ticketing system (use make create-rt to create the necessary tables). RT_Libs uses the built-in RT libraries to access an RT installation in a separate database (local or remote). RT_External uses RT\'s XML interface and RTx::Atom to access an RT installation in a separate database (local or remote).', + 'type' => 'select', + 'select_enum' => [ '', qw(RT_Internal RT_Libs RT_External) ], + }, + + { + 'key' => 'ticket_system-default_queueid', + 'section' => '', + 'description' => 'Default queue number used when creating new customer tickets.', + 'type' => 'text', + }, + + { + 'key' => 'ticket_system-custom_priority_field', + 'section' => '', + 'description' => 'Custom field from the ticketing system to use as a custom priority classification.', + 'type' => 'text', + }, + + { + 'key' => 'ticket_system-custom_priority_field-values', + 'section' => '', + 'description' => 'Values for the custom field from the ticketing system tobreak down and sort customer ticket lists.', + 'type' => 'textarea', + }, + + { + 'key' => 'ticket_system-custom_priority_field_queue', + 'section' => '', + 'description' => 'Ticketing system queue in which the custom field specified in ticket_system-custom_priority_field is located.', + 'type' => 'text', + }, + + { + 'key' => 'company_name', + 'section' => 'required', + 'description' => 'Your company name', + 'type' => 'text', + }, + ); 1;