diff options
Diffstat (limited to 'src/fh')
-rwxr-xr-x | src/fh | 23 |
1 files changed, 0 insertions, 23 deletions
@@ -1,23 +0,0 @@ -#!/usr/bin/perl -p - -# fh -- filter headers - -BEGIN { - sub header { $_ =~ shift .. not $next =~ /^[ \t]/ } - sub skip { $_ = '' } -} - -($_, $next) = ($next, $_); -skip if header qr/^X-(?!( - Mailer - | Rspamd-\S+ -):)/xi; -skip if header qr/^( - Received - | Received-SPF - | (DKIM|DomainKey)-Signature - | ARC-\S+ - | IronPort-\S+ -):/x; - -END { print $next } |