diff src/dnsbl.h @ 163:97d7da45fe2a

spamassassin changes
author carl
date Sun, 26 Aug 2007 19:03:17 -0700
parents c7fc218686f5
children 9b129ed78d7d
line wrap: on
line diff
--- a/src/dnsbl.h	Sat Jul 14 12:25:17 2007 -0700
+++ b/src/dnsbl.h	Sun Aug 26 19:03:17 2007 -0700
@@ -10,6 +10,7 @@
 #define dnsbl_include
 
 #include "context.h"
+#include "spamass.h"
 
 extern int debug_syslog;
 
@@ -26,6 +27,7 @@
 	int 	fd; 					// to talk to dns resolvers process
 	bool	err;					// did we get any errors on the resolver socket?
 	int 	ip; 					// ip4 address of the smtp client
+	char	*helo;					// helo from client
 	map<DNSBLP, bool> checked;		// map of dnsblp to result of (ip listed on that dnsbl)
 	// message specific data
 	char	*mailaddr;		// envelope from value
@@ -41,6 +43,7 @@
 	char		*uribl_suffix;			// for uribl body filtering based on hostnames in the body
 	char		*uribl_message; 		// ""
 	string_set	*content_host_ignore;	// ""
+	SpamAssassin	*assassin;
 
 
 	mlfiPriv();
@@ -54,6 +57,7 @@
 };
 
 void my_syslog(mlfiPriv *priv, char *text);
+void my_syslog(mlfiPriv *priv, string text);
 void my_syslog(char *text);
 
 #endif