diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-29 05:29:28 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-29 05:29:28 +0000 |
commit | 25fa6cce726b49c32029d698924c472ace81073e (patch) | |
tree | 1b3eca865a2b7828b9289ffbbe6564a31fea189b /ledger-smb.conf.default | |
parent | fda00ca36161398bc22c4dd230956c9351fcdd4e (diff) |
Switch main config file to using Config::Std
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@374 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'ledger-smb.conf.default')
-rw-r--r-- | ledger-smb.conf.default | 80 |
1 files changed, 36 insertions, 44 deletions
diff --git a/ledger-smb.conf.default b/ledger-smb.conf.default index 07a657db..8e71cfa5 100644 --- a/ledger-smb.conf.default +++ b/ledger-smb.conf.default @@ -1,55 +1,47 @@ -use vars qw($userspath $spool $memberfile $templates $sendmail $language $sid $latex %printer $gzip $GLOBALDBH); +session : DB +logging : 0 -################################# -# Global database parameters -################################# -# These parameters *must* be set correctly -# for LedgerSMB >= 1.2 to work -my $globalDBConnect = 'dbi:Pg:dbname=ledgersmb;host=localhost;port=5432'; -my $globalUserName = "ledgersmb"; -my $globalPassword = "set me to correct password"; +# Set language for login and admin pages +language : -$GLOBALDBH = DBI->connect($globalDBConnect, $globalDBUserName, $globalDBPassword); +# If you have LaTeX installed, set to 1 +latex : 1 -# path to user configuration files -$userspath = "users"; +# Maximum number of invoices that can be printed on a cheque +check_max_invoices : 5 -# spool directory for batch printing -$spool = "spool"; +[environment] +# If the server can't find applications, append to the path +PATH: /usr/local/pgsql/bin +PATH: /usr/local/bin -# templates base directory -$templates = "templates"; +# If on Mac OS X using Fink's Perl libs, append to the path +#PERL5LIB = /sw/lib/perl5 +[paths] +# spool directory for batch printing +spool = spool +# path to user configuration files +userspath = users +# templates base directory +templates = templates # member file -$memberfile = "users/members"; - -# location of sendmail -$sendmail = "| /usr/sbin/sendmail -t"; - -# set language for login and admin -$language = ""; - -# Maximum number of invoices that can be printed on a check -$check_max_invoices = 5; - - -# if you have latex installed set to 1 -$latex = 1; - -# available printers -%printer = ( Laser => 'lpr -Plaser', - Epson => 'lpr -PEpson', - ); +memberfile = users/members +localepath = locale/po +[programs] +sendmail = | /usr/bin/sendmail -t # program to use for file compression -$gzip = "gzip -S .gz"; +gzip = gzip -S .gz -# if the server can't find gzip, latex, dvips or pdflatex, add the path -$ENV{PATH} .= ":/usr/local/bin:/usr/local/pgsql/bin"; - -# on mac os X using Fink's Perl libs, add the path -#$ENV{PERL5LIB} .= ":/sw/lib/perl5"; - - -1; +[printers] +# Available printers +Laser = lpr -Plaser +Epson = lpr -PEpson +[globaldb] +# These paramaters *must* be set correctly +# for LedgerSMB >= 1.2 to work +DBConnect = dbi:Pg:dbname=ledgersmb;host=localhost;port5432 +UserName = ledgersmb +Password = set me to correct password |