mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-04-29 00:31:54 +00:00
28 lines
448 B
Perl
Executable File
28 lines
448 B
Perl
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("blacklist_autolearn");
|
|
use Test::More tests => 3;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%patterns = (
|
|
|
|
q{ USER_IN_BLACKLIST }, 'blacklisted',
|
|
|
|
|
|
);
|
|
|
|
%anti_patterns = (
|
|
q{ autolearn=ham } => 'autolearned as ham'
|
|
);
|
|
|
|
tstprefs ('
|
|
|
|
blacklist_from *@ximian.com
|
|
|
|
');
|
|
|
|
ok (sarun ("-L -t < data/nice/001", \&patterns_run_cb));
|
|
ok_all_patterns();
|