mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-08-12 15:31:59 +00:00
28 lines
491 B
Perl
Executable File
28 lines
491 B
Perl
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("html_utf8");
|
|
|
|
use Test::More;
|
|
plan tests => 2;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
q{ 1.0 QUOTE_YOUR } => '',
|
|
);
|
|
|
|
%anti_patterns = (
|
|
q{ OPPORTUNITY } => '',
|
|
);
|
|
|
|
tstlocalrules ('
|
|
body OPPORTUNITY /OPPORTUNITY/
|
|
# body QUOTE_YOUR /\x{201c}Your/
|
|
body QUOTE_YOUR /\xE2\x80\x9CYour/
|
|
');
|
|
|
|
sarun ("-L -t < data/spam/009", \&patterns_run_cb);
|
|
ok_all_patterns();
|
|
|