Hastymail2

Hastymail2 is an Open Source IMAP webmail client written in PHP. Our focus is compliance, usability, security, and speed.

Hastymail 2

avatar
CRON for clearing the Attachments Directory

Per the install instructions, I set the following command up as a cron job to clear the attachments directory:

find /home/mydomain/var/hastymail2/attachments/ -cmin +60 -print | xargs rm 

When the cron runs, I get an email that reads:

rm: cannot remove `/home/mydomain/var/hastymail2/attachments/': Is a directorySeems we are missing somesort of file argument, but I'm not very good with system commands ans syntax, so I'm not sure what to change.Jim Craig

 

Reply /Quote
avatar
Re: CRON for clearing the Attachments Directory

Jim,
   Thanks again for the feedback. The command can be adjusted slightly to avoid this by adding a "*" to the end of the attachments dir path:

find /home/mydomain/var/hastymail2/attachments/* -cmin +60 -print | xargs rm

I will update the INSTALL file with this change shortly.

Jason

Reply /Quote
Get Hastymail at SourceForge.net. Fast, secure and Free Open Source software downloads