Well if you suspect a spammer then you can temporarily add a few rules to your mod_security ruleset for additional logging so you can later investigate.
EG:
HTML Code:
# Find the source of scripts ending email
SecFilterSelective POST_PAYLOAD "@" "pass,log"
If the above generates to much regular data you can narrow it down to certain domains.
HTML Code:
SecFilterSelective POST_PAYLOAD "@(hotmail.com|aol.com|gmail.com|yahoo.com)" "pass,log"
This should only log users filling out forms, etc. It will not deny them. Then go check your audit_log to see what scripts are posting using email accounts in them submitted by user input.
Very handy for finding spammers, written by me, enjoy