Skip to content

Commit

Permalink
Recognize nullmailer
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Jan 23, 2025
1 parent 16bc93d commit 45489f9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/java/eu/faircode/email/MessageHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -3195,6 +3195,7 @@ static Boolean isTLS(String header, boolean first) {
// (qmail nnn invoked by uid nnn); 1 Jan 2022 00:00:00 -0000
// Postfix: by <host name> (<name>, from userid nnn)
if (header.matches(".*\\(qmail \\d+ invoked by uid \\d+\\).*") ||
header.matches(".*\\(nullmailer pid \\d+ invoked by uid \\d+\\).*") ||
header.matches(".*\\(.*, from userid \\d+\\).*")) {
Log.i("--- phrase");
return true;
Expand Down

0 comments on commit 45489f9

Please sign in to comment.