You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coverity reports have a pretty long subject. A simple regex-based substitution on the subject will make them look better:
-86 ( 21K) + [Jul 30 20 06:34] [email protected] New Defects reported by Coverity Scan for FreeBSD+86 ( 21K) + [Jul 30 20 06:34] [email protected] Coverity - FreeBSD
The command to achieve that is subjectrx "^New Defects reported by Coverity Scan for (.*)$" "Coverity - %1".
Mailing lists
If you're like me and push mail from different mailing lists in different folders, you don't need to be reminded of which mailing list they belong to by their subject line. I like to modify them like this:
Coverity
Coverity reports have a pretty long subject. A simple regex-based substitution on the subject will make them look better:
The command to achieve that is
subjectrx "^New Defects reported by Coverity Scan for (.*)$" "Coverity - %1"
.Mailing lists
If you're like me and push mail from different mailing lists in different folders, you don't need to be reminded of which mailing list they belong to by their subject line. I like to modify them like this:
The command to achieve that is
subjectrx '(\[[^]]*\] )' '%L%R'
.Use
%1
,%2
, ... to use capture groups in substitutions. Use%L
and%R
to use what comes to the left and to the right of the capture.By: @gahr
The text was updated successfully, but these errors were encountered: