forked from michelvocks/smtpproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults
More file actions
23 lines (18 loc) · 777 Bytes
/
defaults
File metadata and controls
23 lines (18 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# A regular expression matching all e-mail addresses this proxy should
# accept. Careful, if this is not set, all mails are relayed to the
# relay host.
VALID_RECIPIENTS="^test@test.tld$"
# If this is set, all recipients specified by a client will be
# replaced by this single recipient.
OVERRIDE_RECIPIENT="othertest@test.tld"
# Which address to relay mails to. This has to include the port
# number.
RELAY_HOST="mail.tld:25"
# X.509 certificate and key for STARTTLS support
SERVER_CERT="/etc/ssl/certs/ssl-cert-snakeoil.pem"
SERVER_KEY="/etc/ssl/private/ssl-cert-snakeoil.key"
# Which address to listen on. Defaults to :25
LISTEN_ADDRESS=":25"
# Which DNSBL services to query. This is a space-separated list of
# domains.
DNSBL_DOMAINS="zen.spamhaus.org bl.spamcop.net"