Reputation: 273632
I have an application that sends email by relaying it through sendmail.
Can I see mails sent in the past? Are they kept somewhere, perhaps in the logs. I don't necessarily need the complete email, body, attachments, etc.
Upvotes: 0
Views: 2277
Reputation: 8357
sendmail does offer the ability to log every action issued on the service to a file, so you could check whether your sendmail version on your system is indeed doing that. If I recall correctly (it's been a while) it logs who (unix user) sent what to whom.
Upvotes: 3