How to check if server is sending out spam?
Asked Answered
J

2

6

I checked my IP address today because I was getting bounced back emails and I see it has been blacklisted on a few lists. I only use my website to send out customer emails and no newsletter emails; so I don't send many emails out.

I don't know why my dedicated IP address would be blacklisted; is there a way to check my server running Plesk to see if someone is using my IP address to spam?

Thank you!

Junk answered 6/11, 2013 at 23:26 Comment(0)
M
6

prints destination of all email which sent from your server:

 cat  /var/log/maillog | grep  'to=<[a-z0-9_\.-]\+@[\da-z\.-]\+\.[a-z\.]\{2,6\}>' -o
Micromho answered 8/8, 2016 at 13:10 Comment(1)
file could be /var/log/mail.log as per my systemRemove
B
0

Check the outgoing logs on your mail server to see if there are messages in there that you don't recognize.

Ballyhoo answered 9/11, 2013 at 17:28 Comment(1)
How to parse the maillog in var/log ?Cybernetics

© 2022 - 2024 — McMap. All rights reserved.