mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
12 lines
290 B
Plaintext
12 lines
290 B
Plaintext
use strict;
|
|
|
|
# disable the "Received" headers to be added to the mail header
|
|
$allowed_added_header_fields{lc('Received')} = 0;
|
|
|
|
# Hide with whay virus scanner we scan
|
|
$X_HEADER_LINE = "Yes";
|
|
|
|
#------------ Do not modify anything below this line -------------
|
|
1; # ensure a defined return
|
|
|