mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-04-28 16:01:29 +00:00
37 lines
1000 B
Raku
Executable File
37 lines
1000 B
Raku
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
|
|
use SATest; sa_t_init("db_based_welcomelist_ips");
|
|
|
|
use Test::More;
|
|
plan skip_all => "Long running tests disabled" unless conf_bool('run_long_tests');
|
|
plan tests => 8;
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
%is_nonspam_patterns = (
|
|
q{ Subject: Re: [SAtalk] auto-whitelisting}, 'subj',
|
|
);
|
|
%is_spam_patterns = (
|
|
q{ X-Spam-Status: Yes}, 'status',
|
|
);
|
|
|
|
%patterns = %is_nonspam_patterns;
|
|
|
|
ok (sarun ("--remove-addr-from-welcomelist whitelist_test\@whitelist.spamassassin.taint.org", \&patterns_run_cb));
|
|
|
|
# 3 times, to get into the welcomelist:
|
|
ok (sarun ("-L -t < data/nice/002", \&patterns_run_cb));
|
|
ok (sarun ("-L -t < data/nice/002", \&patterns_run_cb));
|
|
ok (sarun ("-L -t < data/nice/002", \&patterns_run_cb));
|
|
|
|
# Now check
|
|
ok (sarun ("-L -t < data/nice/002", \&patterns_run_cb));
|
|
ok_all_patterns();
|
|
|
|
%patterns = %is_spam_patterns;
|
|
ok (sarun ("-L -t < data/spam/007", \&patterns_run_cb));
|
|
ok_all_patterns();
|
|
|