X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FConf.pm;h=8ce51385bb312b9c71281c32c1e3bec29924d150;hb=c62991706722410987b249893f1323b4ba0e7a5f;hp=b43fa1ab62c0d9df7feef9ca6e70c06e443d4944;hpb=dda497584a2e12907bba7cf07051fe34ede63b32;p=freeside.git diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index b43fa1ab6..8ce51385b 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -1323,12 +1323,19 @@ httemplate/docs/config.html { '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).', + '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 raw SQL access (and eventually 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.', @@ -1338,7 +1345,7 @@ httemplate/docs/config.html { '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.', + 'description' => 'Values for the custom field from the ticketing system to break down and sort customer ticket lists.', 'type' => 'textarea', }, @@ -1356,6 +1363,33 @@ httemplate/docs/config.html 'type' => 'text', }, + { + 'key' => 'echeck-void', + 'section' => 'billing', + 'description' => 'Enable local-only voiding of echeck payments in addition to refunds against the payment gateway', + 'type' => 'checkbox', + }, + + { + 'key' => 'address2-search', + 'section' => 'UI', + 'description' => 'Enable a "Unit" search box which searches the second address field', + 'type' => 'checkbox', + }, + + { 'key' => 'referral_credit', + 'section' => 'billing', + 'description' => "Enables one-time referral credits in the amount of one month referred customer's recurring fee (irregardless of frequency).", + 'type' => 'checkbox', + }, + + { 'key' => 'selfservice_server-cache_module', + 'section' => '', + '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.', + 'type' => 'select', + 'select_enum' => [ 'Cache::SharedMemoryCache', 'Cache::FileCache', ], # '_Database' ], + }, + ); 1;