diff options
Diffstat (limited to 'ledger-smb.conf.default')
-rw-r--r-- | ledger-smb.conf.default | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/ledger-smb.conf.default b/ledger-smb.conf.default new file mode 100644 index 00000000..cd16e308 --- /dev/null +++ b/ledger-smb.conf.default @@ -0,0 +1,48 @@ +use vars qw($userspath $spool $memberfile $templates $sendmail $language $sid $latex %printer $gzip); + +# path to user configuration files +$userspath = "users"; + +# spool directory for batch printing +$spool = "spool"; + +# 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 = ""; + +# Oracle +#$sid = "T80509"; +#$ENV{"ORACLE_HOME"} = "/usr/local/oracle"; + +# if you have latex installed set to 1 +$latex = 1; + +# available printers +%printer = ( Laser => 'lpr -Plaser', + Epson => 'lpr -PEpson', + ); + +# program to use for file compression +$gzip = "gzip -S .gz"; + +# if the server can't find gzip, latex, dvips or pdflatex, add the path +$ENV{PATH} .= ":/usr/local/bin"; + +# on mac os X using Fink's Perl libs, add the path +#$ENV{PERL5LIB} .= ":/sw/lib/perl5"; + +# DB2, Default dataset is expected to be LEDGER +#$ENV{DB2INSTANCE} = "db2inst1"; +#$ENV{DB2_HOME} = "/opt/IBM/db2/V8.1/"; + + +1; + |