-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsites.h
71 lines (62 loc) · 2.39 KB
/
sites.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
rblcheck DNSBL systems
Add new sites to this listing in the format:
// for IP-based DNSBLs
SITE("site.example.com")
// for domain-based DNSBLs
URI_SITE("site.example.com")
Do not add any extra whitespace, and make sure you place quotes
around the address. Use C comments in this file if you want to
add comments about each site. Uncomment the sites you want to use
by default. The listings are checked in the order they are listed
here.
These listings are provided as a convenience, and examples of how to
add new listings. I'll try to keep them updated if at all possible,
but you should not rely blindly on these values being correct, nor
should you rely on someone else's judgement about the "goodness" of
a particular list; test them, and see if their policies suit your
tastes. DNSBL-style systems tend to move around a bit, so you should
check the service websites regularly for updates.
In other words, if you use one of these, and the world ends, don't
blame me. You're using them at your own risk. If they break, you get
to keep both pieces.
*/
#ifdef SPAMHAUS_DQS_KEY
/* https://www.spamhaus.org/zen/ */
/* Spamhaus Zen is only available to Spamhaus Data Query Service customers
* and replaces SBL+XBL+PBL. */
URI_SITE(SPAMHAUS_DQS_KEY ".zen.dq.spamhaus.net");
#else
/* https://www.spamhaus.org/sbl/ */
SITE("sbl.spamhaus.org");
/* https://www.spamhaus.org/xbl/ */
SITE("xbl.spamhaus.org");
/* https://www.spamhaus.org/pbl/ */
SITE("pbl.spamhaus.org");
#endif
/* https://www.spamcop.net/bl.shtml */
SITE("bl.spamcop.net");
/* https://psbl.org/ */
SITE("psbl.surriel.com");
/* http://www.sorbs.net/general/using.shtml */
SITE("dul.dnsbl.sorbs.net");
#ifdef SPAMHAUS_DQS_KEY
/* https://www.spamhaus.org/dbl/ */
URI_SITE(SPAMHAUS_DQS_KEY ".dbl.dq.spamhaus.net");
#else
/* https://www.spamhaus.org/dbl/ */
URI_SITE("dbl.spamhaus.org");
#endif
/* http://www.surbl.org/lists */
URI_SITE("multi.surbl.org");
/* http://uribl.com/about.shtml */
URI_SITE("multi.uribl.com");
/* http://www.msbl.org/ebl.html */
EMAIL_HASH_SITE("ebl.msbl.org");
/* https://www.spamhaus.org/hbl/ */
/* Spamhaus HBL is disabled by default because it is only available to
* Spamhaus Data Query Service customers. */
#ifdef SPAMHAUS_DQS_KEY
FILE_HASH_SITE("_file." SPAMHAUS_DQS_KEY ".hbl.dq.spamhaus.net");
EMAIL_HASH_SITE("_email." SPAMHAUS_DQS_KEY ".hbl.dq.spamhaus.net");
#endif