« Return to Thread: hiding evolution folders from mutt folder list

Re: hiding evolution folders from mutt folder list

by Jay Daniels-2 :: Rate this Message:

Reply to Author | View in Thread

On Sat, 2009-07-04 at 20:30 +0200, Siggy Brentrup wrote:

> On Sat, Jul 04, 2009 at 01:18:33PM -0400, Jay Daniels wrote:
>
> [...]
>
> > Ok how the heck do I hide all those Evolution generated folders from the
> > mutt folder list?
>
> Here's part of my ~/.muttrc:
>
> set folder=/some/where
>
> mailboxes =INBOX \
>           =ubuntu =ubuntu/users =ubuntu/devel =ubuntu/devel-discuss \
>  =ubuntu/de =ubuntu/motu =ubuntu/security-announce \
>           =maybe-spam =sent
>
> I'm using procmail for delivery to these (maildir format) mailboxes.
>
> Start mutt with
>       mutt -y
> and it shows you a screen with just the defined mailboxes, flagging
> those with new mail in them.  Hitting TAB will switch to a directory
> listing.
>
> HTH
>   Siggy
>

I use sed to filter out mailboxes, but I don't know how to filter out
the Evolution files...

lists `find ~/Maildir -type d -regex "*list.*" -maxdepth 1 -printf "%P "
| sed -
e 's/list//g' -e 's/cse//g' | tr -d '.'`
subscribe `find ~/Maildir -type d -regex "*list.*" ! -regex "*cse.*"
-maxdepth 1
 -printf "%P " | sed 's/list//g' | tr -d '.'`


I have a maildir folder (directory) named alldata, evolution creates a
file called alldata.ev-summary alldata.ev-summary-meta
alldata.ibex.index and alldata.ibex.index.data

Now Evolution does this to all folders.  I wish to hide the above from
displaying in mutt folder list.


jay


--
ubuntu-users mailing list
ubuntu-users@...
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users

 « Return to Thread: hiding evolution folders from mutt folder list