blob: 345d76f009b336a64fccc7a05cba4ccf33324f46 (
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
41
42
43
44
45
46
47
|
# 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 (select exactly one)
# 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
# crm114-exec - direct crm114 training by calling mailreaver.crm
#BACKEND=dspam-exec
#BACKEND=signature-log
#BACKEND=mailtrain
#BACKEND=crm114-exec
# install directory for 'make install'
INSTALLDIR=/usr/lib/dovecot/modules/imap/
# enable debugging to syslog or stderr
#DEBUG=stderr
#DEBUG=syslog
# plugin name, change only if you need to rename the plugin
# (because, for example, you need two instances for different
# spam filters installed)
PLUGINNAME=antispam
|