-
Notifications
You must be signed in to change notification settings - Fork 14
/
sql-ledger.conf.default
67 lines (47 loc) · 1.63 KB
/
sql-ledger.conf.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use vars qw($userspath $spool $memberfile $templates $sendmail $images $language $charset $sid $latex $gzip $gpg $dvipdf $pdftk $xelatex @accessfolders $helpful_login);
# 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 -f <%from%> -t";
# location for images
$images = "images";
# set language and charset for login and admin
$language = "";
$charset = "UTF8";
# Oracle
#$sid = "T80509";
#$ENV{"ORACLE_HOME"} = "/usr/local/oracle";
# if you have latex installed set to 1
$latex = 1;
# program to use for file compression
$gzip = "gzip -S .gz";
# use gpg for file encryption
#$gpg = "gpg --homedir /var/www/gnupg --batch --yes";
# use dvipdf instead of pdflatex for PDF
$dvipdf = 1;
# if you have pdftk installed and want to combine PDFs set to 1
$pdftk = 1;
# use xelatex instead of pdflatex for PDF
#$xelatex = 1;
# file access security
# folders with read and write access
@accessfolders = qw|templates css|;
# login security
# 0: users have to enter their full username and correct password
# 1: displays helpful error messages and lists of similar users;
# facilitates attacks on the system, not recommended
$helpful_login = 0;
# if the server can't find gzip or latex 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;