Changes between Version 15 and Version 16 of Document/Development/Wishlist/Module/Samba
- Timestamp:
- 01/18/10 23:02:55 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Document/Development/Wishlist/Module/Samba
v15 v16 45 45 46 46 Without username or password to access to a share, like anonymous FTP. Full thread available at: http://forum.ebox-platform.com/index.php?topic=2262.msg9615 47 48 === Periodic cleanup for Recycle Bin === 49 50 Would be great if recycle bin have an auto cleanup per time. Its very easy to add, with a cron task: 51 52 {{{ 53 #Delete X days old files 54 find <RecycleinPath\*> -atime +<DaysOld> -exec rm -R {} \; 55 56 #Remove empty folders 57 find /mnt/datos/papelera -depth -type d -empty -exec rmdir {} \; 58 }}}