info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: nnimap-split-rule regex: match newlines


From: Aurélien Cedeyn
Subject: Re: nnimap-split-rule regex: match newlines
Date: Fri, 15 Dec 2006 20:12:06 +0100
User-agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux)

"Kurt B. Kaiser" <kbk@shore.net> writes:

> I'm trying to split on two headers which are separated by a couple of
> lines.  But I haven't been able to figure out how to match the newlines.
> I have:
>
>         ("INBOX.SomeMailbox"
>          "^From:.*avendor\\(.*[ \t\n]\\)*Subject:.*Order Confirmation")
>
> I started with 
>
> "^From:.*avendor.*Subject:.*Order Confirmation" but '.' doesn't match
> a newline.  I tried progressively more complicated regex but no joy.
>

Hello Kurt,

I think you can do like this :
         ("INBOX.SomeMailbox" "^From:.*avendor)
         ("INBOX.SomeMailbox" "^Subject:.*Order Confirmation")

I don't know if gnus parse line by line or the full message. 
So maybe it's not possible to match newline... 

--
AC


reply via email to

[Prev in Thread] Current Thread [Next in Thread]