Re: Mairix search results

2007-10-20 Thread Patrick Shanahan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* Rem P Roberti <[EMAIL PROTECTED]> [10-20-07 20:55]:
> Mairix is installed and working.  I have tried to create a macro which
> would allow me to view the results of the search in the mailbox
> (mfolder) that I have created for Mairix finds.  Here it is:
> 
> macro generic f "=mfolder " "Search results"
> 
> When I invoke the macro I get this message: change-folder>=mfolder is not
> a mailbox.  What am I doing wrong?

what is the result of:  grep set\ folder= ~/.muttrc

- -- 
Patrick Shanahan Plainfield, Indiana, USAHOG # US1244711
http://wahoo.no-ip.org Photo Album:  http://wahoo.no-ip.org/gallery2
Registered Linux User #207535@ http://counter.li.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4-svn4472 (GNU/Linux)

iD8DBQFHGrn8ClSjbQz1U5oRAhlsAKCfmMmd5GfeIwffinrZlqa+pl+ttwCcCJWG
ybhOguex6MYjaxfSsfRjkco=
=lHpt
-END PGP SIGNATURE-


Mairix search results

2007-10-20 Thread Rem P Roberti
Mairix is installed and working.  I have tried to create a macro which
would allow me to view the results of the search in the mailbox
(mfolder) that I have created for Mairix finds.  Here it is:

macro generic f "=mfolder " "Search results"

When I invoke the macro I get this message: change-folder>=mfolder is not
a mailbox.  What am I doing wrong?

Rem


Updating to Ubuntu Gutsy no longer shows message counts

2007-10-20 Thread Bill Moseley
I use mutt to connect to my imap server.

After upgrading my laptop from Feisty to Gutsy today when I get a list
of mailboxes (c-?-) it shows all my subscribed mail boxes but
with zero counts.

Any idea what might have broken?

$ mutt -v
Mutt 1.5.15+20070412 (2007-04-11)
Copyright (C) 1996-2007 Michael R. Elkins and others.
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
Mutt is free software, and you are welcome to redistribute it
under certain conditions; type `mutt -vv' for details.

System: Linux 2.6.20-16-generic (i686)
ncurses: ncurses 5.6.20070716 (compiled with 5.6)
libidn: 1.0 (compiled with 1.0)
Compile options:
-DOMAIN
+DEBUG
-HOMESPOOL  +USE_SETGID  +USE_DOTLOCK  +DL_STANDALONE  
+USE_FCNTL  -USE_FLOCK   +USE_INODESORT   
+USE_POP  +USE_IMAP  +USE_SMTP  -USE_GSS  -USE_SSL_OPENSSL  +USE_SSL_GNUTLS  
+USE_SASL  +HAVE_GETADDRINFO  
+HAVE_REGCOMP  -USE_GNU_REGEX  
+HAVE_COLOR  +HAVE_START_COLOR  +HAVE_TYPEAHEAD  +HAVE_BKGDSET  
+HAVE_CURS_SET  +HAVE_META  +HAVE_RESIZETERM  
+CRYPT_BACKEND_CLASSIC_PGP  +CRYPT_BACKEND_CLASSIC_SMIME  +CRYPT_BACKEND_GPGME  
-EXACT_ADDRESS  -SUN_ATTACHMENT  
+ENABLE_NLS  -LOCALES_HACK  +COMPRESSED  +HAVE_WC_FUNCS  +HAVE_LANGINFO_CODESET 
 +HAVE_LANGINFO_YESEXPR  
+HAVE_ICONV  -ICONV_NONTRANS  +HAVE_LIBIDN  +HAVE_GETSID  +USE_HCACHE  
-ISPELL
SENDMAIL="/usr/sbin/sendmail"
MAILPATH="/var/mail"
PKGDATADIR="/usr/share/mutt"
SYSCONFDIR="/etc"
EXECSHELL="/bin/sh"
MIXMASTER="mixmaster"
To contact the developers, please mail to <[EMAIL PROTECTED]>.
To report a bug, please visit http://bugs.mutt.org/.

patch-1.5.13.cd.ifdef.2
patch-1.5.13.cd.purge_message.3.4
patch-1.5.13.cd.trash_folder.3.4
patch-1.5.13.nt+ab.xtitles.4
patch-1.5.14.rr.compressed.1
patch-1.5.4.vk.pgp_verbose_mime
patch-1.5.6.dw.maildir-mtime.1



-- 
Bill Moseley
[EMAIL PROTECTED]


Re: Sorting headers in message viewer ?

2007-10-20 Thread Dave Evans
On Fri, Oct 19, 2007 at 10:28:37PM +, Dave Evans wrote:
> > Now, if hdr_order was able to intepret lack of an argument as
> > "sort everything in alphabetical order"... Or perhaps a trailing
> > "*" as "sort any other headers in alphabetical order"...
> 
> That would indeed be useful.  Or regexps (e.g. hdr_order ^List- ^X-).

I don't know if this is documented (it's not documented at
http://www.mutt.org/doc/manual/manual-3.html#hdr_order anyway), but the way
that hdr_order works, at least in my Ubuntu mutt package, is as follows:

An array is created which is one longer than the number of entries in
hdr_order.  Each slot except the last in the array will hold the headers which
match the corresponding hdr_order entry; the last slot holds the headers which
did not match any hdr_order entry.  Matching is done on a case-insensitive(?),
string prefix basis.

So for example, given "hdr_order From: To: X- List-",

 slot 1 is all headers which begin with "From:"
 slot 2 is likewise but for "To:";
 slot 3 is likewise but for "X-" (so all the X- headers will go into this
 slot);
 slot 4 is likewise but for "List-" (so all the List- headers go here);
 slot 5 is all the other headers.

Each slot ends up containing a subset of the original headers, in the same
order as the original message.  Finally, the headers from each slot are
output, in order.

So in the example "hdr_order From Date: From: To: Cc: Subject:" (taken from
http://www.mutt.org/doc/manual/manual-3.html#hdr_order ), all the headers
which begin with "From" (e.g. From: From-Foo: Frome:) come first, followed by
the "Date:" header (all of them, if there are multiple Date: headers); the
third item, "From:" is redundant, because anything matching "From:" would
already have matched "From"; then all the "To:" headers, then "Cc:", then
"Subject:", then the rest.

So you can already do something like "hdr_order From: To: Cc: Date: Subject:
X- List- Received:"; this will group all the X- headers together (and likewise
all the List- headers), but it won't sort them.  Still, I hope it helps.

-- 
Dave Evans
http://djce.org.uk/
http://djce.org.uk/pgpkey


signature.asc
Description: Digital signature