Neil W Rickert <[EMAIL PROTECTED]> wrote:

> Copy the 'components' file to your $HOME/Mail directory.  Edit it,
> and add an "Fcc:" line.  The components file is in the 'etc'
> directory of 'nmh'.

That doesn't give you dynamically named folders (he was using 'date'
commands to generate the folder names), but it's easy enough to rotate
the folders with a nightly script.  So, you could have a

        fcc: sent-mail

line in the components file, then have a script that runs every day
(month, whatever) that renames it to something else.

        cd `mhpath +`
        date=`date +'%Y%m%d'`
        mv sent-mail sent-$date
        mkdir sent-mail

Then, you could have that script to other bits of cleanup as well
(e.g. going through and really removing all of the 'rmm'd
messages...the ones that start with "," or "#" or whatever you use).

[EMAIL PROTECTED]

Reply via email to