I have an FTP folder and when a user uploads a file, I'd like to receive an email. Is there a daemon that will do that?
Asked
Active
Viewed 196 times
4 Answers
1
You can do something like it's suggested on this question.
-
Agreed - I was going to suggest something using inotify... – EEAA Sep 08 '10 at 04:16
0
I usually leave a tail -f
running against a log in a terminal for situations like that.
You could configure logtwatch to watch the log for a string and e-Mail. Also, more recent versions of syslog-ng support similar functionality.
Additional solutions could include a host based IDS or the Linux auditing system. However, host IDS are typically not realtime and auditd/auditctl does not provide anything that the log solutions would not for this particular application.

Warner
- 23,756
- 2
- 59
- 69