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?
|
feedback
|
|
You can do something like it's suggested on this question. | |||
|
feedback
|
|
I usually leave a 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. | |||
|
feedback
|
|
| |||
|
feedback
|
|
You could use incron for that purpose, which will use the inotify API of the Linux kernel. You can create a rule which sends a mail to you every time a file is created (or modified, or deleted, or accessed...) in a certain directory. | |||
|
feedback
|