Skip to main content

Emails from

Comments

3 comments

  • quietFinn
    [quote="bijojerome, post: 1464571"> I could see there is no mail scripts in /home/user21 . Also, the user does not have shell access.
    Check directory /home/user21/public_html including all subdirectories.
    0
  • cPanelMichael
    Hello :) Are you positive there are no files in the account's home directory or within any subdirectories beneath it with the ability to send emails? Try using the "grep" command to search for "mail" within these files to help figure out which script is responsible. Thank you.
    0
  • Aaron.Edwards
    Yes, check for the word "mail" under the directory : /home/user21/public_html # grep -irl 'mail' /home/user21/public_html/ There should be some spam script hidden under this directory or so. Try the below and see whether you got a company with the "user21" on your server ? tail -3000 /var/log/exim_mainlog |grep 'rejected RCPT' |awk '{print$4}'|awk -F\[ '{print $2}'|awk -F\] '{print $1} '|sort | uniq -c | sort -k 1 -nr | head -n 5
    0

Please sign in to leave a comment.