Mercurial > dnsbl
annotate src/dnsbl.h @ 163:97d7da45fe2a
spamassassin changes
author | carl |
---|---|
date | Sun, 26 Aug 2007 19:03:17 -0700 |
parents | c7fc218686f5 |
children | 9b129ed78d7d |
rev | line source |
---|---|
143 | 1 /* |
2 | |
152 | 3 Copyright (c) 2007 Carl Byington - 510 Software Group, released under |
4 the GPL version 3 or any later version at your choice available at | |
5 http://www.gnu.org/licenses/gpl-3.0.txt | |
143 | 6 |
7 */ | |
8 | |
119 | 9 #ifndef dnsbl_include |
10 #define dnsbl_include | |
74 | 11 |
12 #include "context.h" | |
163 | 13 #include "spamass.h" |
74 | 14 |
86
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
15 extern int debug_syslog; |
74 | 16 |
17 class recorder; | |
18 class url_scanner; | |
19 | |
20 //////////////////////////////////////////////// | |
119 | 21 // mail filter private data, held for us by sendmail |
74 | 22 // |
23 struct mlfiPriv | |
24 { | |
86
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
25 // connection specific data |
119 | 26 CONFIG *pc; // global filtering configuration |
27 int fd; // to talk to dns resolvers process | |
28 bool err; // did we get any errors on the resolver socket? | |
29 int ip; // ip4 address of the smtp client | |
163 | 30 char *helo; // helo from client |
119 | 31 map<DNSBLP, bool> checked; // map of dnsblp to result of (ip listed on that dnsbl) |
32 // message specific data | |
163 | 33 char *mailaddr; // envelope from value |
34 char *queueid; // sendmail queue id | |
35 char *authenticated; // client authenticated? if so, suppress all dnsbl checks, but check rate limits | |
36 bool have_whites; // have at least one whitelisted recipient? need to accept content and remove all non-whitelisted recipients if it fails | |
37 bool only_whites; // every recipient is whitelisted? | |
38 context_map env_to; // map each non-whitelisted recipient to their filtering context | |
39 recorder *memory; // memory for the content scanner | |
40 url_scanner *scanner; // object to handle body scanning | |
41 char *content_suffix; // for url body filtering based on ip addresses of hostnames in the body | |
42 char *content_message; // "" | |
43 char *uribl_suffix; // for uribl body filtering based on hostnames in the body | |
44 char *uribl_message; // "" | |
45 string_set *content_host_ignore; // "" | |
46 SpamAssassin *assassin; | |
76 | 47 |
74 | 48 |
86
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
49 mlfiPriv(); |
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
50 ~mlfiPriv(); |
119 | 51 void reset(bool final = false); // for a new message |
86
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
52 void get_fd(); |
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
53 void return_fd(); |
119 | 54 int my_read(char *buf, int len); |
55 int my_write(char *buf, int len); | |
86
c1280cd3e248
add multiple debug syslog levels, remove duplicate dnsbl definitions
carl
parents:
76
diff
changeset
|
56 void need_content_filter(char *rcpt, CONTEXT &con); |
74 | 57 }; |
58 | |
119 | 59 void my_syslog(mlfiPriv *priv, char *text); |
163 | 60 void my_syslog(mlfiPriv *priv, string text); |
119 | 61 void my_syslog(char *text); |
74 | 62 |
63 #endif |