################################################################################ # The number of tickets to be shown per page on the main list ################################################################################ $config{"lines.per.page"} = "25"; ################################################################################ # FULL URLs (NOT PATHs) to the directories: ################################################################################ $config{"css.folder.url"} = "http://www.yourdomain.com/helpdesk/css"; $config{"gfx.folder.url"} = "http://www.yourdomain.com/helpdesk/gfx"; $config{"hd.client.url"} = "http://www.yourdomain.com/cgi-bin/helpdesk/hd.client.cgi"; $config{"upload.folder.url"} = "http://www.yourdomain.com/helpdesk/upload"; ################################################################################ # # FULL PATHs (NOT URLs) to directories: # # Keep the "db" directory outside your root directory for highest security. # If you place it within your root, people might be able to point to the data # files and password files from a browser. The rest of the directories should # be within your root. # ################################################################################ $config{"db.path"} = "/home/username/db"; $config{"tmpl.path"} = "/home/username/www/helpdesk/tmpl"; $config{"upload.path"} = "/home/username/www/helpdesk/upload"; ################################################################################ # Path to your sendmail program ################################################################################ $config{"sendmail"} = "/usr/lib/sendmail -F\"Helpdesk\" -t"; ################################################################################ # # If "send.notification" is set to "0" (default is "1"), no email notification # will be sent to administrator when a new ticket is submitted by the visitor. # Other email notifications (such as notification to visitors) are NOT affected. # ################################################################################ $config{"send.notificaion"} = 1; $config{"notification.email"} = "admin\@yourdomain.com"; $config{"send.from.email"} = "DO-NOT-REPLY"; ################################################################################ # You may edit the categories but make sure both sets have the same number # of entries. Also, do not miss the double quotation marks and commas. ################################################################################ @{ $arr{"categories.full"} } = ( "not specified", "billing", "inquiry", "suggestion", "technical", "other" ); @{ $arr{"categories.re"} } = ( "", "BL", "IQ", "SG", "TS", "OT" ); ################################################################################ # You normally do not need to edit the gender field unless you are in the # sex industry. ################################################################################ @{ $arr{"genders"} } = ( "not specified", "male", "female" ); ################################################################################ # End of configuration ################################################################################