Hi All,
I have a huge traffic within last 48 hours more than 580GB generated through POP3
On this forum I find this command:
so this is a result:
So my question, how I can find a user (email) which generate this traffic ?!
Thanks
I have a huge traffic within last 48 hours more than 580GB generated through POP3
On this forum I find this command:
Code:
grep *****co.com /var/log/maillog* | grep retr= | grep -v retr=0 | awk {'print $11'} | cut -d, -f1 | cut -d / -f2 | awk '{t += $1} END { print "total: ", t, " bytes transferred over POP3"}'
Code:
total: 574669361274 bytes transferred over POP3
Thanks