blob: f1a4b17b2cc376294e13ac19b3b20724bf533b1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# .include - directive to include other config file
.include /etc/rmilter/rmilter.conf.common
# pidfile - path to pid file
# Default: no defaults
pidfile = /run/rmilter/rmilter.pid;
# bind_socket - socket credits for local bind:
# unix:/path/to/file - bind to local socket
# inet:port@host - bind to inet socket
# Default: no defaults
bind_socket = unix:/run/rmilter/rmilter.sock;
# tempdir - path to directory that contains temporary files
# Default: $TMPDIR
tempdir = /tmp;
# include user's configuration, replace this with full path
.try_include /etc/rmilter/rmilter.conf.local
.try_include /etc/rmilter/conf.d/*.conf
|