]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Filter/Base.pm
update copyrights for 2018
[public-inbox.git] / lib / PublicInbox / Filter / Base.pm
index 37f1ee7e59ea76d0211f82c42206a6268b792842..5d070132a4101c78408018283eb8734247806974 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # base class for creating per-list or per-project filters
@@ -8,11 +8,14 @@ use warnings;
 use PublicInbox::MsgIter;
 use constant MAX_MID_SIZE => 244; # max term size - 1 in Xapian
 
-my $NO_HTML = '*** We only accept plain-text mail, no HTML ***';
+sub No ($) { "*** We only accept plain-text mail, No $_[0] ***" }
+
 our %DEFAULTS = (
-       reject_suffix => [ qw(exe bat cmd com pif scr vbs cpl zip) ],
-       reject_type => [ "text/html:$NO_HTML", "text/xhtml:$NO_HTML",
-               'application/vnd.ms-*:No proprietary data formats' ],
+       reject_suffix => [ qw(exe bat cmd com pif scr vbs cpl zip swf swfl) ],
+       reject_type => [ 'text/html:'.No('HTML'), 'text/xhtml:'.No('HTML'),
+               'application/vnd.*:'.No('vendor-specific formats'),
+               'image/*:'.No('images'), 'video/*:'.No('video'),
+               'audio/*:'.No('audio') ],
 );
 our $INVALID_FN = qr/\0/;