X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FConf.pm;h=8ce51385bb312b9c71281c32c1e3bec29924d150;hb=583902ab51f62551fe3620d98d42e72620edfa76;hp=e45793b51feaff3df15731b0bf83e1cf250e28f3;hpb=8556d71539c53a4016b0d32d1e4fed8f17d7a853;p=freeside.git diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index e45793b51..8ce51385b 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -1323,7 +1323,7 @@ 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) ], }, @@ -1345,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', }, @@ -1363,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;