From 1c10a415924082013101d72f8fea26c644761c57 Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Sun, 2 Jul 2017 10:23:10 +0100 Subject: [PATCH] colour emails with a '+' in them The default highlighting for email addresses didn't recognise '+' characters as being valid. Fixes #496 --- contrib/sample.muttrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/sample.muttrc b/contrib/sample.muttrc index c0675f7d0..d89140099 100644 --- a/contrib/sample.muttrc +++ b/contrib/sample.muttrc @@ -144,7 +144,7 @@ color search default green # how to hilite search patterns in the pager color header brightred default ^(From|Subject): color body magenta default "(ftp|http|https)://[^ ]+" # point out URLs -color body magenta default [-a-z_0-9.]+@[-a-z_0-9.]+ # e-mail addresses +color body magenta default [-a-z_0-9.\+]+@[-a-z_0-9.]+ # e-mail addresses color underline brightgreen default # attributes when using a mono terminal -- 2.40.0