Saber cuantas veces se han conectado al SMTP los usuarios del servidor


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. cat /var/log/maillog |grep -I smtp_auth | grep -I user | awk '{print $9}' | sort | uniq -c | sort -n

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.