On Sat, 18 Jul 2009 01:55:41 +0930, Ron <[email protected]> wrote: > After updating from 1.1.16 with cmusieve, my existing scripts broke because > Resent-Cc is no longer supported in address matches. > > Looking here http://tools.ietf.org/html/rfc5228#section-5.1 it says: > > Implementations MUST restrict the address test to headers that > contain addresses, but MUST include at least From, To, Cc, Bcc, > Sender, Resent-From, and Resent-To, and it SHOULD include any other > header that utilizes an "address-list" structured header body. > > So Resent-Cc is a regression from cmu, but not mandated, hence the wishlist > severity. X-BeenThere was not supported by cmusieve either, but would be > nice to have since most mailing list traffic sets that regardless of what > convoluted To or Cc got it bounced via the list to recipients.
(Forwarding upstream) Stephan - we have received the above Debian bug report (http://bugs.debian.org/537379) regarding the headers used for address matching. I'm fairly sure this fix amounts to the below patch, but would like to confirm and get the patch included upstream first. Thanks, Joel Johnson static const char * const _allowed_headers[] = { /* Required */ "from", "to", "cc", "bcc", "sender", "resent-from", "resent-to", /* Additional (RFC 2822) */ - "reply-to", "resent-reply-to", + "reply-to", "resent-reply-to", "resent-cc", "resent-bcc", /* Non-standard (draft-palme-mailext-headers-08.txt) */ "for-approval", "for-handling", "for-comment", "apparently-to", "errors-to", -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

