summaryrefslogtreecommitdiffstats
path: root/auxiliary/collate/tlstype.pl
blob: 1e5cf9a42720d71338a81434acd255b8f5b19b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#! /usr/bin/env perl

use strict;
use warnings;

local $/ = "\n\n";

while (<>) {
    my $qid;
    my %tls;
    my $smtp;
    foreach my $line (split("\n")) {
	if ($line =~ m{ postfix(?:\S*?)/qmgr\[\d+\]: (\w+): from=<.*>, size=\d+, nrcpt=\d+ [(]queue active[)]$}) {
	    $qid //= $1;
	    next;
	}
	if ($line =~ m{ postfix(?:\S*?)/smtp\[(\d+)\]: (\S+) TLS connection established to (\S+): (.*)}) {
	    $tls{$1}->{lc($3)} = [$2, $4];
	    next;
	}
	if ($line =~ m{.*? postfix(?:\S*?)/smtp\[(\d+)\]: (\w+): (to=.*), relay=(\S+), (delay=\S+, delays=\S+, dsn=2\.\S+, status=sent .*)}) {
	    next unless $qid eq $2;
	    if (defined($tls{$1}->{lc($4)}) && ($tls{$1}->{lc($4)}->[2] //= $5) eq $5) {
		printf "qid=%s, relay=%s, %s -> %s %s\n", $qid, lc($4), $3, @{$tls{$1}->{lc($4)}}[0..1];
	    } else {
		delete $tls{$1};
		printf "qid=%s, relay=%s, %s -> cleartext\n", $qid, lc($4), $3;
	    }
	}
    }
}