Moin,
* Marc Wilson <[EMAIL PROTECTED]> [01-12-09 03:00]:
>On Sat, Dec 08, 2001 at 05:30:20PM -0700, Steven Schneider wrote:
>> Right now I have three lines like thus:
>>
>> mailboxes ...
>> mailboxes ...
>> mailboxes ...
>
>How about this? (wrapped, should be all one line in .muttrc)
>
>mailboxes ! `find ~/Mail/ -type f | perl -ne 'chomp; print "$_ " unless
>m/^.*(postponed|sent.mail.*|killfil.*|trash|mbox)$/'`
Or, if you want to avoid Perl:
mailboxes `find ~/Mail -type f -print | grep -Ev
'(log|backup|sent|postponed|trash|index|archiv)' | xargs`
Thorsten
--
Whenever there is a conflict between human rights
and property rights, human rights must prevail.
- Abraham Lincoln