regex and UTF-8

2009-10-30 Thread Kevin Kammer
I had been trying to create send-hooks and save-hooks, but noticed that, contrary to all the documentation I could find, Mutt was insisting on evaluating my regular expressions as case-sensitive. I was not using any capitalized letters it the regexs. I know that if one or more letters is/are

Re: regex and UTF-8

2009-10-30 Thread Patrick Shanahan
* Kevin Kammer mephi...@fastmail.net [10-30-09 02:15]: :set charset ?charset charset=utf-8 Mutt seems to match the rest of the system, but it still doesn't do case-insensitive regex. However, if I invoke mutt with: From the Fine Manual: 1. Regular Expressions All string

Re: regex and UTF-8

2009-10-30 Thread Kevin Kammer
On Fri, Oct 30, 2009 at 02:32:33AM -0400, Patrick Shanahan wrote: From the Fine Manual: 1. Regular Expressions ... The search is case sensitive if the pattern contains at least one upper case letter, and case insensitive otherwise.

Re: regex and UTF-8

2009-10-30 Thread Christian Brabandt
On Fri, October 30, 2009 7:12 am, Kevin Kammer wrote: I had been trying to create send-hooks and save-hooks, but noticed that, contrary to all the documentation I could find, Mutt was insisting on evaluating my regular expressions as case-sensitive. I was not using any capitalized letters it

Re: regex and UTF-8

2009-10-30 Thread Christian Brabandt
On Fri, October 30, 2009 7:32 am, Patrick Shanahan wrote: From the Fine Manual: 1. Regular Expressions All string patterns in Mutt including those in more complex patterns must be specified using regular expressions (regexp) in the POSIX extended syntax (which is more or less the

mutt and gnupg

2009-10-30 Thread Thomas Göbel
Hi listmates, i have a problem with mutt and gnupg. I have set the gpg-options described here: http://WIKI.mutt.org/?MuttGuide/UseGPG I use mutt with getmail/procmail and msmtp to receive/send mail. And i have two mail-accounts (gmx.de and my university account). If i send me a signed mail from

Re: mutt and gnupg

2009-10-30 Thread Viktor Rosenfeld
Hi, maybe your uni SMTP server is mangling the message body. If they do, the headers should contain a record of the action. For example, some of my incoming mails have the following header: X-MIME-Autoconverted: from quoted-printable to 8bit by ... Anything to that effect in your headers?

Re: mutt and gnupg

2009-10-30 Thread Thomas Göbel
* On 30.10.2009 13:30, Viktor Rosenfeld listuse...@googlemail.com wrote: Hi, maybe your uni SMTP server is mangling the message body. There are no header you described. Everything seems normal. ### Header of mail with bad signature X-Authenticated: #17130798 X-Provags-ID:

Re: regex and UTF-8

2009-10-30 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Friday, October 30 at 02:12 AM, quoth Kevin Kammer: I was not using any capitalized letters it the regexs. I know that if one or more letters is/are capitalized, the expression will be evaluated case-sensitive. Nevertheless, '~f tony'

Re: regex and UTF-8

2009-10-30 Thread bill lam
I also use utf-8 as system locale and charset in muttrc. But I have no problem in default case-insensitive search. eg. ~f kevin can match Kevin. -- regards, GPG key 1024D/4434BAB3 2008-08-24 gpg --keyserver subkeys.pgp.net --recv-keys

Re: regex and UTF-8

2009-10-30 Thread bill lam
On Fri, 30 Oct 2009, Kevin Kammer wrote: $ LC_ALL=C mutt AFAIK, gnu sort perform case sensitive sort for POSIX or C locale, compare output from ls |sort # case insensitive in my locale ls |LC_ALL=C sort# case sensitive -- regards,

How to display patch/diff files with color inside Mutt?

2009-10-30 Thread Horacio Sanson
Does anyone know how to make mutt display patches/diff files in color? I tried using pygmentize that in console colors the diff files correctly but when used from within mutt the text is displayed correctly but not colored. Here is my configuration: My .mailcap file: text/x-diff;pygmentize

Re: manual-2.html

2009-10-30 Thread ed
On Thu, Oct 29, 2009 at 11:11:40AM -0700, Robert Holtzman wrote: On Thu, 29 Oct 2009, ed wrote: Don't know if this has been reported before in the online manual: http://www.mutt.org/doc/manual/manual-2.html: $ diff manual-2.html* 488c488 ^F forget-passphrase whipe PGP

Re: How to display patch/diff files with color inside Mutt?

2009-10-30 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Monday, October 26 at 01:56 PM, quoth Horacio Sanson: I tried using pygmentize that in console colors the diff files correctly but when used from within mutt the text is displayed correctly but not colored. Add this to your muttrc: set

Separate sent folders for different accounts

2009-10-30 Thread Marcin Wlodarczak
Hi, I was wondering if someone could help me to set up separate Sent folders for different accounts. From what I've seen, people tend to use folder-hooks for similar functionality but I would like the appropriate Sent folder to be chosen depending on the From: header, not on the mailbox I am

wrapping long lines

2009-10-30 Thread Brandon Metcalf
This might be better asked in a vi/vim forum, but I figured someone here using mutt has had to solve this problem. When receiving email from Outlook users, lines do not have newline characters. That is, they show up in mutt looking like This is a very long line without newline characters.

Re: wrapping long lines

2009-10-30 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Friday, October 30 at 03:11 PM, quoth Brandon Metcalf: Has anyone implemented some vim goodness to format these lines so they show up like so when replying: Have you investigated the vim command gq? (without the quotes) ~Kyle - -- The liberty

Re: wrapping long lines

2009-10-30 Thread Monte Stevens
On Fri, Oct 30, 2009 at 03:11:16PM -0500, Brandon Metcalf wrote: This might be better asked in a vi/vim forum, but I figured someone here using mutt has had to solve this problem. When receiving email from Outlook users, lines do not have newline characters. That is, they show up in mutt

Re: wrapping long lines

2009-10-30 Thread Monte Stevens
On Fri, Oct 30, 2009 at 05:26:53PM -0300, Monte Stevens wrote: In muttrc: unset markers set smart_wrap Ignore the above -- these two settings are for mutt display, not editor.

Re: wrapping long lines

2009-10-30 Thread Brandon Metcalf
On Fri, Oct 30, 2009 at 03:19:37PM -0500, Kyle Wheeler wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Friday, October 30 at 03:11 PM, quoth Brandon Metcalf: Has anyone implemented some vim goodness to format these lines so they show up like so when replying: Have you

Re: regex and UTF-8

2009-10-30 Thread Kevin Kammer
On Fri, Oct 30, 2009 at 08:43:21AM -0500, Kyle Wheeler wrote: Are you using your system's regex library, or the one that comes with mutt? It's possible that your system's regex library has a bug in it (and it would be nice to eliminate that before blaming mutt for the problem). ~Kyle

Re: regex and UTF-8

2009-10-30 Thread Kevin Kammer
On Sat, Oct 31, 2009 at 12:25:32AM +0800, bill lam wrote: On Fri, 30 Oct 2009, Kevin Kammer wrote: $ LC_ALL=C mutt AFAIK, gnu sort perform case sensitive sort for POSIX or C locale, compare output from ls |sort # case insensitive in my locale ls |LC_ALL=C sort

Re: Subfolders

2009-10-30 Thread Charles Howard
4aea1796.5000...@gmail.com Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Date: Thu=2C 29 Oct 2009 18:30:46 -0400 From: pgenp...@gmail.com Subject: Re: Subfolders To: mutt-users@mutt.org

Re: Separate sent folders for different accounts

2009-10-30 Thread Kevin Kammer
On Fri, Oct 30, 2009 at 08:27:14PM +0100, Marcin Wlodarczak wrote: I was wondering if someone could help me to set up separate Sent folders for different accounts. From what I've seen, people tend to use folder-hooks for similar functionality but I would like the appropriate Sent folder to

Re: wrapping long lines

2009-10-30 Thread Robert Holtzman
On Fri, 30 Oct 2009, Brandon Metcalf wrote: This might be better asked in a vi/vim forum, but I figured someone here using mutt has had to solve this problem. When receiving email from Outlook users, lines do not have newline characters. That is, they show up in mutt looking like

Re: How to display patch/diff files with color inside Mutt?

2009-10-30 Thread Morris, Patrick
Hi Kyle! On Fri, 30 Oct 2009, Kyle Wheeler wrote: On Monday, October 26 at 01:56 PM, quoth Horacio Sanson: I tried using pygmentize that in console colors the diff files correctly but when used from within mutt the text is displayed correctly but not colored. Add this to your muttrc: