Rev 3 | Rev 31 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | magnus | 1 | # $Cambridge: hermes/src/prayer/defaults/Config,v 1.5 2006/04/05 12:35:35 fanf2 Exp $ |
2 | # |
||
3 | # Prayer - a Webmail Interface |
||
4 | # |
||
5 | # Copyright (c) University of Cambridge 2000 - 2002 |
||
6 | # See the file NOTICE for conditions of use and distribution. |
||
7 | # |
||
8 | # Conventional Configure file. |
||
9 | |||
10 | SSL_ENABLE = true # SSL requires OpenSSL |
||
11 | SESSION_CACHE_ENABLE = true # SSL session cache Requires Berkeley DB 3 or 4 |
||
12 | GZIP_ENABLE = true # Enable on the fly compression of pages |
||
13 | LDAP_ENABLE = true # Add LDAP interface |
||
14 | FENCE_ENABLE = false # Use Electric Fence to catch malloc problems |
||
15 | DIRECT_ENABLE = false # Experimental. Leave this switched off... |
||
16 | MUTEX_SEMAPHORE = true # Use SYSV mutexes rather than file locking |
||
17 | |||
18 | # Following depend on the way that you have configured c-client |
||
19 | CCLIENT_SSL_ENABLE = false # C-client was built with SSL support |
||
20 | CCLIENT_PAM_ENABLE = false # C-client was built with PAM support |
||
21 | CCLIENT_KERB_ENABLE = false # C-client was built with Kerberos support |
||
22 | |||
23 | # Probably don't need the following |
||
24 | ACCOUNTD_ENABLE = true # Only of use in Cambridge at the moment. |
||
25 | ACCOUNTD_SSL_ENABLE = true # Enable SSL support in account management daemon |
||
26 | ACCOUNTD_PAM_ENABLE = true # Enable PAM support in account management daemon |
||
27 | ACCOUNTD_USE_BSD_PTY = true # Use Berkeley PTYs rather than Sys V PTYs |
||
28 | |||
29 | ############################################################################ |
||
30 | # Location of compiler |
||
31 | CC = gcc |
||
32 | # Location of make program (GNU make required) |
||
33 | MAKE = make |
||
34 | # Location of install program (GNU install or compatible required) |
||
35 | INSTALL = install |
||
36 | |||
37 | # Base Compiler options for GCC. |
||
38 | #BASECFLAGS = -Wall -g |
||
39 | #BASELDFLAGS = -g |
||
12 | magnus | 40 | CFLAGS = -Wall -g -O2 |
41 | LDFLAGS = -g -O2 |
||
3 | magnus | 42 | BASE_LIBS = -lcrypt |
43 | |||
44 | # Base Compiler options for Sun SUNWspro compiler |
||
45 | #CC = /opt/SUNWspro/bin/cc |
||
46 | #BASECFLAGS = -fast |
||
47 | #BASELDFLAGS = -s |
||
48 | #BASE_LIBS = -lcrypt -lxnet |
||
49 | |||
50 | ############################################################################ |
||
51 | # Location of various include files and libraries. |
||
52 | ############################################################################ |
||
53 | |||
54 | # Location of c-client library. |
||
55 | # |
||
56 | # Following works if we have a vanilla c-client installation at same level |
||
57 | # as the prayer installation. Relies on a symbolic link ./prayer/c-client |
||
58 | # which points to ../../imap/c-client. This just reduces the amount of |
||
59 | # noise output on each line when building the package. |
||
60 | # |
||
61 | CCLIENT_DIR=/usr/include/c-client |
||
62 | CCLIENT_INCLUDE=-I$(CCLIENT_DIR) |
||
63 | CCLIENT_LIBS=-lc-client |
||
64 | |||
65 | # |
||
66 | # Following works with the mail/cclient port from FreeBSD |
||
67 | # |
||
68 | #CCLIENT_INCLUDE = -I/usr/local/include/c-client |
||
69 | #CCLIENT_LIBS = -L/usr/local/lib -lc-client4 |
||
70 | # |
||
71 | # Complication: |
||
72 | # The FreeBSD port uses PAM and optionally SSL if built WITH_SSL=yes. |
||
73 | # |
||
74 | #CCLIENT_SSL_ENABLE = true |
||
75 | #CCLIENT_KERB_ENABLE = true |
||
76 | |||
77 | ############################################################################ |
||
78 | |||
79 | # Electric fence (required if FENCE_ENABLE set) |
||
80 | FENCE_INCLUDE= |
||
81 | FENCE_LIBS=-lmcheck |
||
82 | |||
83 | # Zlib (required if GZIP_ENABLE set) |
||
84 | Z_INCLUDE = |
||
85 | Z_LIBS = -lz |
||
86 | |||
87 | # LDAP (required if LDAP_ENABLE set) |
||
12 | magnus | 88 | LDAP_INCLUDE = -DLDAP_DEPRECATED |
3 | magnus | 89 | LDAP_LIBS = -lldap |
90 | |||
91 | # Pam (required if CCLIENT_PAM_ENABLE set) |
||
92 | PAM_INCLUDE = |
||
93 | PAM_LIBS = -lpam |
||
94 | |||
95 | # Kerberos (required if CCLIENT_KERB_ENABLE set) |
||
96 | KERB_INCLUDE = |
||
97 | KERB_LIBS = -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err |
||
98 | |||
99 | # SSL definitions (required if SSL_ENABLE or CCLIENT_SSL_ENABLE set) |
||
100 | # |
||
101 | # Following suitable for Linux and FreeBSD which have SSL preinstalled |
||
102 | # (Header files from OpenSSL 0.9.7 want to include various Kerboros stuff) |
||
103 | # |
||
104 | SSL_INCLUDE= |
||
105 | SSL_LIBS=-lssl -lcrypto |
||
106 | OPENSSL=openssl |
||
107 | |||
108 | # Following definitions suitable for our Sun systems. |
||
109 | #SSL_BASE=/opt/local/ssl/current |
||
110 | #SSL_INCLUDE=-I ${SSL_BASE}/include |
||
111 | #SSL_LIBS=-L ${SSL_BASE}/lib -lssl -lcrypto |
||
112 | #OPENSSL=${SSL_BASE}/bin/openssl |
||
113 | |||
114 | # DB definitions (required if SESSION_CACHE_ENABLE set) |
||
115 | # |
||
116 | # Following suitable for Redhat Linux which has DB 3 preinstalled |
||
117 | DB_INCLUDE= |
||
118 | DB_LIBS=-ldb |
||
119 | |||
120 | # Following suitable for FreeBSD with DB 4 package installed |
||
121 | #DB_INCLUDE=-I/usr/local/include/db4 |
||
122 | #DB_LIBS=-L/usr/local/lib -ldb4 |
||
123 | |||
124 | ############################################################################ |
||
125 | |||
126 | # Install location of prayer configuration and support files. The initial |
||
127 | # config file runs prayer processes as user "prayer" and group "prayer". |
||
128 | # If you are using SSL, the certificate file must be readable by RW_USER or |
||
129 | # RW_GROUP. It is important that nothing else can read the certificate file. |
||
130 | |||
131 | # Build root (used by Redhat RPM system) |
||
132 | BROOT=$(CURDIR)/../debian/tmp |
||
133 | |||
134 | # Directory, User and group for read-write files: log files, sockets etc |
||
135 | VAR_PREFIX = /var/lib/prayer |
||
136 | RW_USER = root |
||
137 | RW_GROUP = root |
||
138 | |||
139 | # Root Directory, User and group for read-only configuration files. |
||
140 | # Default configuration and permissions does not allow prayer user to |
||
141 | # update prayer configuration file. |
||
142 | |||
143 | PREFIX = /usr/share/prayer |
||
144 | RO_USER = root |
||
145 | RO_GROUP = root |
||
146 | |||
147 | # Access permissions for general objects (wrt above users and groups) |
||
148 | PUBLIC_EXEC = 0755 |
||
149 | PUBLIC_DIR = 0755 |
||
150 | PUBLIC_FILE = 0644 |
||
151 | |||
152 | # Access permissions for private objects (wrt above users and groups) |
||
153 | PRIVATE_EXEC = 0750 |
||
154 | PRIVATE_DIR = 0750 |
||
155 | PRIVATE_FILE = 0640 |
||
156 | |||
157 | # Location of configuration files and binaries |
||
158 | PRAYER_CONFIG_FILE = /etc/prayer/prayer.cf |
||
159 | BIN_DIR = /usr/sbin |
||
160 | ACCOUNTD_CONFIG_FILE = /etc/prayer/accountd.cf |