ChinaUnix.net
相关文章推荐:

postfix 日志分析

请问各位,是否有postfix(Mail)日志分析工具? 我在网上找了一些时间,但没找到,还有spamassassin日志分析的工具也较难找。 如有,请指点一下,谢谢。

by zenglingping - 服务器应用 - 2008-09-08 08:06:19 阅读(2705) 回复(5)

相关讨论

#!/bin/sh # statistic recipient echo "Part one : - Top 10 Recipient domain " fgrep to= /var/log/maillog | cut -d\ -f1 | cut -d@ -f2 | sort | uniq -c | sort -nr |head # statistic sender echo "Part two: - Top 10 Sender domain " fgrep from= /var/log/maillog | cut -d\ -f1 | cut -d@ -f2 | sort | uniq -c | sort -nr | head # statistic destination mail total count echo "Part three: Total lines and sizes ...

by pk984813 - Linux文档专区 - 2008-04-05 05:21:21 阅读(830) 回复(0)

#!/bin/sh # statistic recipient echo "Part one : - Top 10 Recipient domain " fgrep to= /var/log/maillog | cut -d\ -f1 | cut -d@ -f2 | sort | uniq -c | sort -nr |head # statistic sender echo "Part two: - Top 10 Sender domain " fgrep from= /var/log/maillog | cut -d\ -f1 | cut -d@ -f2 | sort | uniq -c | sort -nr | head # statistic destination mail total count echo "Part three: Total lines and si...

by ajiangg - Linux文档专区 - 2007-11-07 19:43:49 阅读(698) 回复(0)

postfix Contribs postfix is a new, highly-efficient and highly-secure Mail Transport Agent written by Wietse Venema. It was previously known as VMailer. Visit the postfix home page to find out more. Latter development having been supported by IBM, it can also be found at IBM's alphaWorks Secure Mailer page. This page presents my humble contributions to postfix. Warning: downl...

by alabos - BSD文档中心 - 2006-10-26 17:49:27 阅读(1824) 回复(0)

postfix日志分析脚本 转自CU BLOG :http://blog.chinaunix.net/u/26011/showart_416912.html [quote] #!/bin/sh # statistic recipient echo "Part one : - Top 10 Recipient domain " fgrep to= /var/log/maillog | cut -d\< -f2 | cut -d\> -f1 | cut -d@ -f2 | sort | uniq -c | sort -nr |head # statistic sender echo "Part two: - Top 10 Sender domain " fgrep from= /var/log/maillog | cut -d\< -f2 | cut -d\> -...

by arbor - 服务器应用 - 2008-04-10 07:33:21 阅读(2060) 回复(0)

postfix日志分析工具有如下几种 pflogsumm AWStats Isoqlog mailgraph 等 更多的postfix logfile analysis在postfix.org的网站上有介绍 http://www.postfix.org/addon.html 1 下载 http://jimsun.linxnet.com/postfix_contrib.html 2 安装 Date::Calc #perl -MCPAN -e shell cpan> install Date::Calc 3 安装pflogsumm(安装说明都在README里) tar zxvf pflogsumm-1.1.0.tar.gz cd pflogsumm-1.1.0 cp pflogsumm.pl ...

by ajiangg - Linux文档专区 - 2007-11-05 10:25:43 阅读(889) 回复(0)

转贴于 http://blog.sso.cn/ : 以下是REDHAT AS3下安装: postfix日志分析工具有如下几种 pflogsumm AWStats Isoqlog mailgraph等 更多的postfix logfile analysis在postfix.org的网站上有介绍 http://www.postfix.org/addon.html 1 下载 http://jimsun.linxnet.com/postfix_contrib.html 2 安装 Date::Calc #perl -MCPAN -e shell cpan> install Date::Calc 3 安装pflogsumm(安装说明都在README里) tar zxvf pflogsumm-1.1.0.t...

by pcs - Linux文档专区 - 2005-12-29 09:50:17 阅读(857) 回复(0)

Apr 18 17:03:00 leap postfix/pickup[7384]: 35BC0EDD56: uid=0 from=; Apr 18 17:03:00 leap postfix/cleanup[7420]: 35BC0EDD56: message-id=<20030418090 00.35BC0EDD56@leap.leaper.com.cn>; Apr 18 17:03:00 leap postfix/qmgr[7385]: 35BC0EDD56: from=;, size=295, nrcpt=1 (queue active) Apr 18 17:03:00 leap postfix/local[7424]: 35BC0EDD56: to=;, re ay=local, delay=...

by leaper - 服务器应用 - 2003-04-19 14:09:20 阅读(1232) 回复(5)
by yelanxin - 服务器应用 - 2006-06-30 13:12:08 阅读(1010) 回复(1)

没有域名,能不架设一个只供自己使用postfix 的服务器。 通过163或者gmail 转发邮件?

by yashuer1989 - Linux新手园地 - 2013-05-15 11:01:22 阅读(2143) 回复(11)

咨询一下,我有一个域名ab.com,目前用的,可以正常收发邮件,我现在又申请了ac.com,如果我在DNS上面把mx指向过来,我已在postfix 参数中destnation已设置可以接收ac.com的邮件了,postfix还需要设置其它地方吗 我之前设置的myhostname=ab.com mydomain=ab.com myorigin =$mydomain 这些地方不改会不会有影响,帮我指一下,我该怎么改,谢谢

by dywdycdyy - Linux系统管理 - 2012-06-14 10:31:47 阅读(1173) 回复(1)