メールログ解析ツール : pflogsumm2017/04/26 |
Postfix ログレポートツール pflogsumm をインストールします。
|
|
[1] | pflogsumm パッケージをインストールします。 |
root@mail:~#
apt -y install pflogsumm # 昨日分のメールログのサマリーを出力 root@mail:~# perl /usr/sbin/pflogsumm -d yesterday /var/log/mail.log
Postfix log summaries for Apr 27 Grand Totals ------------ messages 11 received 7 delivered 0 forwarded 2 deferred (4 deferrals) 0 bounced 0 rejected (0%) 0 reject warnings 0 held 0 discarded (0%) 5740 bytes received 4506 bytes delivered 2 senders 2 sending hosts/domains 2 recipients 2 recipient hosts/domains Per-Hour Traffic Summary ------------------------ time received delivered deferred bounced rejected -------------------------------------------------------------------- 0000-0100 0 0 0 0 0 0100-0200 0 0 0 0 0 0200-0300 0 0 0 0 0 0300-0400 0 0 0 0 0 0400-0500 0 0 0 0 0 0500-0600 0 0 0 0 0 0600-0700 0 0 0 0 0 0700-0800 0 0 0 0 0 0800-0900 0 0 0 0 0 0900-1000 0 0 0 0 0 1000-1100 0 0 0 0 0 1100-1200 0 0 0 0 0 1200-1300 0 0 0 0 0 1300-1400 0 0 0 0 0 1400-1500 4 4 0 0 0 1500-1600 7 3 4 0 0 1600-1700 0 0 0 0 0 1700-1800 0 0 0 0 0 1800-1900 0 0 0 0 0 1900-2000 0 0 0 0 0 2000-2100 0 0 0 0 0 2100-2200 0 0 0 0 0 2200-2300 0 0 0 0 0 2300-2400 0 0 0 0 0 Host/Domain Summary: Message Delivery -------------------------------------- sent cnt bytes defers avg dly max dly host/domain -------- ------- ------- ------- ------- ----------- 6 3888 4 0.2 s 3.5 m mail.srv.world 1 618 0 0.1 s 0.1 s srv.world Host/Domain Summary: Messages Received --------------------------------------- msg cnt bytes host/domain -------- ------- ----------- 8 5118 srv.world 1 622 mail.virtual.host Senders by message count ------------------------ 8 ubuntu@srv.world 1 ubuntu@mail.virtual.host Recipients by message count --------------------------- 6 ubuntu@mail.srv.world 1 zapus@srv.world Senders by message size ----------------------- 5118 ubuntu@srv.world 622 ubuntu@mail.virtual.host Recipients by message size -------------------------- 3888 ubuntu@mail.srv.world 618 zapus@srv.world message deferral detail ----------------------- smtp (total: 4) 2 Local Error (in reply to end of DATA command 2 lost connection with 127.0.0.1[127.0.0.1] while receiving the ... message bounce detail (by relay): none message reject detail: none message reject warning detail: none message hold detail: none message discard detail: none smtp delivery failures: none Warnings -------- master (total: 3) 1 process /usr/lib/postfix/sbin/smtpd pid 956 exit status 1 1 process /usr/lib/postfix/sbin/smtpd pid 977 exit status 1 1 /usr/lib/postfix/sbin/smtpd: bad command startup -- throttling smtpd (total: 8) 6 TLS library problem: error:14094418:SSL routines:ssl3_read_byte... 2 SASL: Connect to private/auth failed: Connection refused Fatal Errors ------------ smtpd (total: 2) 2 no SASL authentication mechanisms Panics: none Master daemon messages ---------------------- 5 daemon started -- version 3.1.4, configuration /etc/postfix 3 terminating on signal 15
root@mail:~#
crontab -e # 毎日午前1時に昨日分のメールログのサマリーをroot宛てにメール送信 00 01 * * * perl /usr/sbin/pflogsumm -e -d yesterday /var/log/mail.log | mail -s 'Logwatch for Postfix' root
|
Sponsored Link |