mailboxes / folders listings with imap
- To: mutt-users@xxxxxxxx
- Subject: mailboxes / folders listings with imap
- From: rektide <rektide@xxxxxxxxx>
- Date: Thu, 24 Apr 2008 17:52:13 -0600
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:to:subject:from:content-type:mime-version:content-transfer-encoding:message-id:user-agent; bh=a75WyJyeqYF68Txii68jQT2zTuHpci5AhsTDmsM1/qE=; b=rEMfnxsVrby68DMR930tdcQmda45lUwyNrGeokXUbyDx2Oc4w4WHk17mJU87iQeh8MUPNHSHrls/Rp7WyhqHI4hhVYhujNb/5UNftGlyXFJ/OpqkgZ0cOyvlRhUHCuvMVoWMJoFX6RWpx3fPKTaRytyfKoMqghcWrLsUjQgE21Y=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:to:subject:from:content-type:mime-version:content-transfer-encoding:message-id:user-agent; b=qZLhTyEpMS294tFQ82QQZtfPbOnyeTkJRt8rP0/qzPAFsBjwGjUOQSXu8hs2oh13vhL46PMZUtjPgAYUHKyZmzksSH8XRet55O1TczDLelFuLxvEIkDCXJXGaqWavC9GrJVh6sxBbwOElmgZe5PRG9M4aD/G8x/3y7VUu64oTbw=
- List-post: <mailto:mutt-users@mutt.org>
- List-unsubscribe: send mail to majordomo@mutt.org, body only "unsubscribe mutt-users"
- Sender: owner-mutt-users@xxxxxxxx
- User-agent: Opera Mail/9.50 (Win32)
I just switched over from using maildir++ to having a Dovecot IMAP server
hosting my mail.
I used to run a .muttrc that had some nice capabilities for letting me
browse through folders:
#mailboxes `\
#echo -n "+ "; \
#for file in ~/.maildir/.*; do \
# box=$(basename $file); \
# if [ ! $box = '.' -a ! $box = '..' -a ! $box = '.customflags' -a ! $box
= '.subscriptions' ]; then \
# echo -n "+$box "; \
# fi; \
#done`
#
#macro index c "<change-folder>?<toggle-mailboxes>" "open a different
folder"
#macro pager c "<change-folder>?<toggle-mailboxes>" "open a different
folder"
#
#macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a
mailbox"
#macro index M "<save-message>?<toggle-mailboxes>" "move a message to a
mailbox"
I dont know exactly what my old .muttrc script did, but is there any way
to restore its functionality? All I'm really looking for is the ability
to list and navigate between different folders. This code doesnt work
with imap as there is no ~/.maildir/ anymore to populate the list of
folders from.
Sorry know its vague, hope I'm making sense, hope someone can point me in
the right direction.
rektide