blob: 15ff8579ba1f3b8deae1d937f7c4f1225b6a7275 (
plain) (
blame)
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
|
# Example plugin build time configuration
#
# This file lists the configuration options that are used when building the
# antispam plugin. All lines starting with # are ignored. Configuration option
# lines must be commented out completely, if they are not to be included,
# i.e. just setting VARIABLE=n is not disabling that variable.
#
# This file is included in Makefile, so variables like CFLAGS and LIBS can also
# be modified from here. In most cases, these lines should use += in order not
# to override previous values of the variables.
#
# IMPORTANT NOTE: If you change the config, you need to run 'make clean'!
# Dovecot build/header directory
# Building the plugin requires configured dovecot sources or having
# configured it with --enable-header-install in which case you can
# point DOVECOT= to the installed headers too.
DOVECOT=../dovecot-1.0.5
#DOVECOT=../dovecot-1.1
#DOVECOT=/usr/include/dovecot
# Dovecot version to build against
DOVECOT_VERSION=1.0
#DOVECOT_VERSION=1.1 # CURRENTLY BROKEN
# backend
# dspam-exec - direct dspam training by calling dspam executable
# signature-log - signature logging using dovecot's dict API
# mailtrain - send mail to special addresses for training
#BACKEND=dspam-exec
#BACKEND=signature-log
#BACKEND=mailtrain
# install directory for 'make install'
INSTALLDIR=/usr/lib/dovecot/modules/imap/
# enable debugging to syslog or stderr
#DEBUG=stderr
#DEBUG=syslog
|