summaryrefslogtreecommitdiff
path: root/ledger-smb.conf
blob: 0589278c4da62d7e568067f515b37bb86cb2ec98 (plain)
  1. use vars qw($userspath $spool $memberfile $templates $sendmail $language $sid $latex %printer $gzip);
  2. # path to user configuration files
  3. $userspath = "users";
  4. # spool directory for batch printing
  5. $spool = "spool";
  6. # templates base directory
  7. $templates = "templates";
  8. # member file
  9. $memberfile = "users/members";
  10. # location of sendmail
  11. $sendmail = "| /usr/sbin/sendmail -t";
  12. # set language for login and admin
  13. $language = "";
  14. # Maximum number of invoices that can be printed on a check
  15. $check_max_invoices = 5;
  16. # if you have latex installed set to 1
  17. $latex = 1;
  18. # available printers
  19. %printer = ( Laser => 'lpr -Plaser',
  20. Epson => 'lpr -PEpson',
  21. );
  22. # program to use for file compression
  23. $gzip = "gzip -S .gz";
  24. # if the server can't find gzip, latex, dvips or pdflatex, add the path
  25. $ENV{PATH} .= ":/usr/local/bin:/usr/local/pgsql/bin";
  26. # on mac os X using Fink's Perl libs, add the path
  27. #$ENV{PERL5LIB} .= ":/sw/lib/perl5";
  28. 1;