mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
14 lines
397 B
Plaintext
14 lines
397 B
Plaintext
use strict;
|
|
|
|
# Override options set in earlier files, use 50-user to override these
|
|
|
|
# Bounce spam, the default option for buster is D_PASS to deliver
|
|
$final_spam_destiny = D_BOUNCE;
|
|
$final_bad_header_destiny = D_BOUNCE;
|
|
|
|
# Higher log level to get expected messages at startup
|
|
$log_level = 2;
|
|
|
|
#------------ Do not modify anything below this line -------------
|
|
1; # ensure a defined return
|