mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
59bc4f7aea
Rspamd adds the name of the authenticated user by default. Setting add_smtp_user to false prevents the login to be leaked.
15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
authenticated_headers = ["authentication-results"];
|
|
skip_local = false;
|
|
skip_authenticated = false;
|
|
|
|
use = ["x-spamd-bar", "x-spam-level", "x-virus", "authentication-results"];
|
|
|
|
routines {
|
|
authentication-results {
|
|
add_smtp_user = false;
|
|
}
|
|
x-virus {
|
|
symbols = ["CLAM_VIRUS", "FPROT_VIRUS", "JUST_EICAR"];
|
|
}
|
|
}
|