On 2/3/06, <b class="gmail_sendername">Rodney Green</b> &lt;<a href="mailto:rgreen@trayerproducts.com">rgreen@trayerproducts.com</a>&gt; wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello,<br><br>I'm archiving mail to mbox files using the archive rules in MS. I was<br>wondering if anyone knows of software that will move and compress the<br>archived mail to conserve disk space? Any advice is welcome.<br>
</blockquote></div><br>A simple line in crontab will do the job for you.<br><br>0 6 * * * find /yourarchivedir -type f -mtime +10 -exec gzip {} \;<br><br>The above will gzip files older than 10 days. You can do whatever you want with similar commands. No need for extra software. I'm sure others will post more advanced examples, I just wrote a line from memory.
<br clear="all"><br>-- <br>/peter