From exim

This commit is contained in:
M66B 2024-05-13 10:30:42 +02:00
parent e312b06a10
commit b86420ad9d
1 changed files with 2 additions and 1 deletions

View File

@ -3150,7 +3150,8 @@ public class MessageHelper {
}
private static boolean isLocal(String value) {
if (value.contains("localhost") ||
if (value.contains("exim") || // with sa-scanned / with dspam-scanned
value.contains("localhost") ||
value.contains("127.0.0.1") ||
value.contains("[::1]"))
return true;