Displaying 2 results from an estimated 2 matches for "forcenospam".
2015 Aug 13
2
sieve-filter failure problems
I use sieve-filter for postprocessing misclassified mail.
For false positives I use the following script:
require [ "variables", "include", "fileinto" ];
global [ "FORCENOSPAM", "ext", "ext1" ];
set "FORCENOSPAM" "YES";
fileinto "JUNK-PRENOUCE";
if header :matches "Delivered-To" "*+*@*" {
set "ext" "${2}";
set "ext1" "${2}";
}
include :perso...
2015 Aug 16
0
sieve-filter failure problems
Op 8/13/2015 om 4:33 PM schreef Jost Krieger:
> I use sieve-filter for postprocessing misclassified mail.
> For false positives I use the following script:
>
> require [ "variables", "include", "fileinto" ];
>
> global [ "FORCENOSPAM", "ext", "ext1" ];
>
> set "FORCENOSPAM" "YES";
>
> fileinto "JUNK-PRENOUCE";
>
> if header :matches "Delivered-To" "*+*@*" {
> set "ext" "${2}";
> set "ext1"...