Postfix 3.10.0 and later log the removal of the associated queue
entry when a connection terminates abnormally:
https://www.postfix.org/announcements/postfix-3.10.0.html
We don't need to do anything with this information, so we add the
pattern to the ignore list.
push @ignore_list, qr/ old session$/;
push @ignore_list, qr/fingerprint=/;
push @ignore_list, qr/TLS cipher list "/;
+
+ # Added in postfix-3.10.0
+ push @ignore_list, qr/^removed \(canceled\)$/;
}
# Evaluates a given line against the list of ignore patterns.