+2009-04-07 19:57 +0200 Rocco Rutte <pdmef@gmx.net> (667b0006b586)
+
+ * sendlib.c: Fix b5cbd0dab863, closes #3215.
+
+ Still valgrind reports 'fromcode' as leaking.
+
+2009-04-07 11:32 +0200 Erik Hovland <erik@hovland.org> (d344c6429a48)
+
+ * ChangeLog, sendlib.c: Try to correct usage of tempfile and *tempfile
+
+ Since tempfile is a double pointer checking for tempfile and then
+ dereferencing with *tempfile is not correct.
+
2009-04-06 22:05 +0200 Rocco Rutte <pdmef@gmx.net> (d639baaf57fb)
* doc/manual.xml.head: Manual: Fix typo
!: modified feature, -: deleted feature, +: new feature
hg tip:
+ + ~x pattern also matches against In-Reply-To
+ lower case patterns for string searches perform case-insensitive
search as regex patterns do (except IMAP)
+ $ssl_verify_dates controls whether mutt checks the validity period of
<row><entry>~U</entry><entry>unread messages</entry></row>
<row><entry>~v</entry><entry>messages part of a collapsed thread.</entry></row>
<row><entry>~V</entry><entry>cryptographically verified messages</entry></row>
-<row><entry>~x <emphasis>EXPR</emphasis></entry><entry>messages which contain <emphasis>EXPR</emphasis> in the <quote>References</quote> field</entry></row>
+<row><entry>~x <emphasis>EXPR</emphasis></entry><entry>messages which contain <emphasis>EXPR</emphasis> in the <quote>References</quote> or <quote>In-Reply-To</quote> field</entry></row>
<row><entry>~X [<emphasis>MIN</emphasis>]-[<emphasis>MAX</emphasis>]</entry><entry>messages with <emphasis>MIN</emphasis> to <emphasis>MAX</emphasis> attachments *)</entry></row>
<row><entry>~y <emphasis>EXPR</emphasis></entry><entry>messages which contain <emphasis>EXPR</emphasis> in the <quote>X-Label</quote> field</entry></row>
<row><entry>~z [<emphasis>MIN</emphasis>]-[<emphasis>MAX</emphasis>]</entry><entry>messages with a size in the range <emphasis>MIN</emphasis> to <emphasis>MAX</emphasis> *) **)</entry></row>
cryptographically verified messages
.TP
~x \fIEXPR\fP
-messages which contain \fIEXPR\fP in the \(lqReferences\(rq field
+messages which contain \fIEXPR\fP in the \(lqReferences\(rq or \(lqIn-Reply-To\(rq field
.TP
~X \fIMIN\fP-\fIMAX\fP
messages with MIN - MAX attachments
case M_SIZE:
return (pat->not ^ (h->content->length >= pat->min && (pat->max == M_MAXRANGE || h->content->length <= pat->max)));
case M_REFERENCE:
- return (pat->not ^ match_reference (pat, h->env->references));
+ return (pat->not ^ (match_reference (pat, h->env->references) ||
+ match_reference (pat, h->env->in_reply_to)));
case M_ADDRESS:
return (pat->not ^ match_adrlist (pat, flags & M_MATCH_FULL_ADDRESS, 4,
h->env->from, h->env->sender,