head 1.2; access; symbols; locks; strict; comment @# @; 1.2 date 2016.10.17.10.42.21; author wiz; state dead; branches; next 1.1; commitid 3GWzXpp1fI8Gbuqz; 1.1 date 2016.10.10.19.26.31; author wiz; state Exp; branches; next ; commitid vBrAan5Y3HcpjDpz; desc @@ 1.2 log @Updated neomutt to 20161014. 2016-10-14 Richard Russon * Features - sidebar: Make sure INBOX appears first in the list. - notmuch: Synchronise tags to flags * Bug Fixes - updates when pager is open - crash when neither $spoolfile, $folder are set - forgotten-attachment: fix empty regex expression - status-color when pager_index_lines > 0 - buffer underrun when no menu item is selected - crash handling keywords/labels * Docs - update notmuch references * Build - update references to 1.7.1 - strfcpy() improvement * Upstream - automatic post-release commit for mutt-1.7.1 - Mark IMAP fast-trash'ed messages as read before copying. (see #3860) - Updated Czech translation. - Preserve forwarded attachment names in d_filename. @ text @$NetBSD: patch-doc_muttrc.forgotten-attachment,v 1.1 2016/10/10 19:26:31 wiz Exp $ forgotten-attachment: fix empty regex expression The original regex was of the form "abc(|def)" to check for both "abc" and "abcdef". Unfortunately, the regex libraries on BSDs/MacOS don't like this use of an empty sub-expression. Expanding the regex to: "(abc|abcdef)" fixes the problem. https://github.com/neomutt/neomutt/commit/3bc69ca25077b171f1ae9beee484629c5b5c6482 --- doc/muttrc.forgotten-attachment.orig 2016-10-03 11:27:32.000000000 +0000 +++ doc/muttrc.forgotten-attachment @@@@ -16,7 +16,7 @@@@ set abort_noattach = no # Search for the following regular expression in the body of the email # English: attach, attached, attachment, attachments -set attach_keyword = "\\" +set attach_keyword = "\\<(attach|attached|attachments?)\\>" # Nederlands: # set attach_keyword = "\\<(bijvoegen|bijgevoegd|bijlage|bijlagen)\\>" @ 1.1 log @Apply upstream patch: forgotten-attachment: fix empty regex expression The original regex was of the form "abc(|def)" to check for both "abc" and "abcdef". Unfortunately, the regex libraries on BSDs/MacOS don't like this use of an empty sub-expression. Expanding the regex to: "(abc|abcdef)" fixes the problem. https://github.com/neomutt/neomutt/commit/3bc69ca25077b171f1ae9beee484629c5b5c6482 Bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @