Changes between Version 15 and Version 16 of Document/Development/Wishlist/Module/Samba

Show
Ignore:
Timestamp:
01/18/10 23:02:55 (3 years ago)
Author:
jacalvo@… (IP: 87.222.134.173)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Document/Development/Wishlist/Module/Samba

    v15 v16  
    4545 
    4646Without 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 
     50Would 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 
     54find <RecycleinPath\*> -atime +<DaysOld> -exec rm -R {} \; 
     55 
     56#Remove empty folders 
     57find /mnt/datos/papelera -depth -type d -empty -exec rmdir {} \; 
     58}}}