Thus said "maillist" on Thu, 05 Apr 2001 03:48:22 GMT:
> Maybe this could be a config setting with a user overide in prefs, like with
> the trash purge setting.
Maybe you could whip something up with tradition UNIX building blocks
such as ``find'' and ``xargs''? Something like:
for user in /home/*
do
find $user/Maildir/.Sent -type f -mtime +90 -print0 | xargs -0 rm
done
Warning: this is untested so you should probably verify that it does in
fact work. :-) You could always get more elaborate in what you check
since some of the directories in /home may not even have Maildirs.
Andy
--
[-----------[system uptime]--------------------------------------------]
10:03pm up 49 days, 21:06, 4 users, load average: 1.33, 1.23, 1.33