i want to enable incoming spf check on zimbra opensource 8.8.15, i have followed the wiki and enabled sfp check with those commands:
Code: Select all
zmlocalconfig -e cbpolicyd_module_checkspf=1
and on sqlite3
i have enabled:
Code: Select all
sqlite> select * from checkspf;
1|6|SPF Policy|1|1|1|Zimbra CheckSPF Policy|0
sqlite>
with this command:
Code: Select all
BEGIN TRANSACTION;
INSERT INTO "checkspf" (PolicyID,Name,UseSPF,RejectFailedSPF,AddSPFHeader,Comment,Disabled) VALUES (6,"SPF Policy",1,1,1,"Zimbra CheckSPF Policy",0);
COMMIT;
but when i try to check if spf check is working correct, i cannot find any log and if i sent a mail without spf it will not blocked...... what i need to check or insert in sqlite3 to enable this check?
thanks a lot for your help
BR