public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/conf/rspamd/local.d/milter_headers.conf
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
use = ["spam-header", "x-spamd-result", "x-rspamd-queue-id", "authentication-results", "fuzzy-hashes"];
2
skip_local = false;
3
skip_authenticated = true;
4
routines {
5
spam-header {
6
header = "X-Spam-Flag";
7
value = "YES";
8
remove = 1;
9
}
10
fuzzy-hashes {
11
header = "X-Rspamd-Fuzzy";
12
}
13
authentication-results {
14
header = "Authentication-Results";
15
add_smtp_user = false;
16
remove = 1;
17
spf_symbols {
18
pass = "R_SPF_ALLOW";
19
fail = "R_SPF_FAIL";
20
softfail = "R_SPF_SOFTFAIL";
21
neutral = "R_SPF_NEUTRAL";
22
temperror = "R_SPF_DNSFAIL";
23
none = "R_SPF_NA";
24
permerror = "R_SPF_PERMFAIL";
25
}
26
dkim_symbols {
27
pass = "R_DKIM_ALLOW";
28
fail = "R_DKIM_REJECT";
29
temperror = "R_DKIM_TEMPFAIL";
30
none = "R_DKIM_NA";
31
permerror = "R_DKIM_PERMFAIL";
32
}
33
dmarc_symbols {
34
pass = "DMARC_POLICY_ALLOW";
35
permerror = "DMARC_BAD_POLICY";
36
temperror = "DMARC_DNSFAIL";
37
none = "DMARC_NA";
38
reject = "DMARC_POLICY_REJECT";
39
softfail = "DMARC_POLICY_SOFTFAIL";
40
quarantine = "DMARC_POLICY_QUARANTINE";
41
}
42
}
43
}