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