Francisco D. Borges <[EMAIL PROTECTED]> wrote on Wed, 26 Apr 2000:
> and if somebody else know a little more about regular expressions could please
> tell me why;
>
> fcc-save-hook "~h ^Reply-To.*postmaster" +outros/listas
>
> don't work.
Without seeing the headers of the message it doesn't match, I'm guessing
here: Because you included upper case letters (the R and T in Reply-To)
in the regular expression, Mutt will be doing a case-sensitive match. So
the above will *not* match:
reply-to: postmaster@wherever
REPLY-TO: postmaster@wherever
Reply-To: Postmaster@wherever
Reply-To: POSTMASTER@wherever
But it will match:
Reply-To: postmaster@wherever
You probably want to do a case-insensitive match, which you can get with
"~h ^reply-to.*postmaster".
I hope that helps,
Mikko
--
// Mikko Hänninen, aka. Wizzu // [EMAIL PROTECTED] // http://www.iki.fi/wiz/
// The Corrs list maintainer // net.freak // DALnet IRC operator /
// Interests: roleplaying, Linux, the Net, fantasy & scifi, the Corrs /
When all else fails, read the instructions.