[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Recipient filtering...
From: |
Joe Maimon |
Subject: |
Re: Recipient filtering... |
Date: |
Wed, 22 Sep 2004 15:46:18 -0400 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7) Gecko/20040616 Mnenhy/0.6.0.101 |
Joe Maimon wrote:
<snip>
This patch adds command line argument -R which accepts as an argument
a program that will be called with a parameter of recpient email
adrress, once per recipient.
(Yes i know, not the most resource cheap way)
When the program exits, the exit code of 0 is taken to mean "filtered
successfully".
If there are no un-filtered recipients, spamass-milter will return to
sendmail a SMFIS_ACCEPT at the start of mlfi_header.
Any and all feedback is most welcome.
Joe
New version of patch has bugfixes, applied against CVS, uses fork() and
more.....
diff -ur spamass-milt/spamass-milter.cpp spamass-milt.jm/spamass-milter.cpp
--- spamass-milt/spamass-milter.cpp 2004-09-21 21:56:08.000000000 -0400
+++ spamass-milt.jm/spamass-milter.cpp 2004-09-22 02:19:19.000000000 -0400
@@ -148,13 +148,15 @@
const char *const debugstrings[] = {
"ALL", "FUNC", "POLL", "UORI", "STR", "MISC", "NET", "SPAMC", "RCPT",
- "COPY",
+ "COPY", "RFIL",
NULL
};
int flag_debug = (1<<D_ALWAYS);
bool flag_reject = false;
int reject_score = -1;
+bool flag_rcpt_filter = false;
+char *rcpt_filter_program = NULL;
bool dontmodifyspam = false; // Don't modify/add body or spam results
headers
bool dontmodify = false; // Don't add SA headers, ever.
bool flag_sniffuser = false;
@@ -180,7 +182,7 @@
main(int argc, char* argv[])
{
int c, err = 0;
- const char *args = "fd:mMp:P:r:u:D:i:b:B:e:x";
+ const char *args = "fd:mMp:P:r:R:u:D:i:b:B:e:x";
char *sock = NULL;
bool dofork = false;
char *pidfilename = NULL;
@@ -231,6 +233,10 @@
flag_reject = true;
reject_score = atoi(optarg);
break;
+ case 'R':
+ flag_rcpt_filter = true;
+ rcpt_filter_program = optarg;
+ break;
case 'u':
flag_sniffuser = true;
defaultuser = strdup(optarg);
@@ -281,6 +287,7 @@
cout << "Usage: spamass-milter -p socket [-b|-B bucket] [-d xx[,yy...]]
[-D host]" << endl;
cout << " [-e defaultdomain] [-f] [-i networks]
[-m] [-M]" << endl;
cout << " [-P pidfile] [-r nn] [-u defaultuser]
[-x]" << endl;
+ cout << " [-R rcpt_filter_program]" << endl;
cout << " [-- spamc args ]" << endl;
cout << " -p socket: path to create socket" << endl;
cout << " -b bucket: redirect spam to this mail address. The orignal"
<< endl;
@@ -298,6 +305,7 @@
cout << " -P pidfile: Put processid in pidfile" << endl;
cout << " -r nn: reject messages with a score >= nn with an SMTP
error.\n"
" use -1 to reject any messages tagged by SA." << endl;
+ cout << " -R cmd: filter out recipients with zero exit status."<< endl;
cout << " -u defaultuser: pass the recipient's username to spamc.\n"
" Uses 'defaultuser' if there are multiple recipients."
<< endl;
cout << " -x: pass email address through alias and virtusertable
expansion." << endl;
@@ -698,6 +706,9 @@
/* allocate a structure to store the IP address (and SA object) in */
sctx = (struct context *)malloc(sizeof(*sctx));
+ if(!sctx)
+ return SMFIS_TEMPFAIL;
+ memset(sctx, '\0', sizeof(*sctx));
if (!hostaddr)
{
/* not a socket; probably a local user calling sendmail
directly */
@@ -709,6 +720,7 @@
}
sctx->assassin = NULL;
sctx->helo = NULL;
+ sctx->rcpts = 0;
/* store a pointer to it with setpriv */
smfi_setpriv(ctx, sctx);
@@ -803,6 +815,13 @@
int rv;
debug(D_FUNC, "mlfi_envrcpt: enter");
+
+ if(flag_rcpt_filter && rcpt_filter_program && rcpt_filter(ctx, envrcpt))
+ {
+ debug(D_FUNC, "mlfi_envrcpt: exit");
+ return SMFIS_CONTINUE;
+ }
+
if (flag_expand)
{
@@ -851,10 +870,19 @@
*/
if (strstr(buf, "... deliverable: mailer "))
{
- char *p=strstr(buf,", user ");
+ char *p=strstr(buf,", user ")+7;
+
/* anything after ", user " is the
email address */
- debug(D_RCPT, "user: %s", p+7);
- assassin->expandedrcpt.push_back(p+7);
+ debug(D_RCPT, "user: %s", p);
+
+ if (flag_rcpt_filter &&
+ rcpt_filter_program &&
+ !(strcasecmp(p, envrcpt[0])) &&
+ rcpt_filter (ctx, &p)
+ )
+ continue;
+
+ assassin->expandedrcpt.push_back(p);
}
}
pclose(p); p = NULL;
@@ -949,6 +977,91 @@
return SMFIS_CONTINUE;
}
+bool
+rcpt_filter(SMFICTX* ctx, char** envrcpt)
+{
+ struct context *sctx = (struct context*)smfi_getpriv(ctx);
+ char * queue_id = smfi_getsymval(ctx,"i");
+ int rcpt_filter_result = 1;
+ int size = 0;
+ char *tmp_rcpt = NULL;
+ int tmp_rcpt_borrowed = 0;
+ int child_pid = 0;
+ int child_status = 0;
+ char *child_argv[3];
+
+ debug(D_FUNC,"%s: rcpt_filter: enter", queue_id);
+
+ sctx->rcpts++;
+ if(!flag_rcpt_filter || !rcpt_filter_program)
+ return false;
+
+ debug(D_RFIL,"%s: rcpt_filter: filtering",queue_id);
+
+ if((tmp_rcpt = strdup(envrcpt[0])) == NULL)
+ return false;
+
+ size = strlen(tmp_rcpt);
+ if(tmp_rcpt[size-1] == '>')
+ {
+ tmp_rcpt[size-1] = '\0';
+ }
+ if(tmp_rcpt[0] == '<')
+ {
+ tmp_rcpt_borrowed = true;
+ tmp_rcpt++;
+ }
+
+ debug(D_RFIL,"%s: rcpt_filter: tmp_rcpt <%s>",queue_id, tmp_rcpt);
+
+ switch((child_pid = fork()))
+ {
+ case 0:
+ // Child
+ child_argv[0] = rcpt_filter_program;
+ child_argv[1] = tmp_rcpt;
+ child_argv[2] = NULL;
+
+ debug(D_RFIL,"%s: rcpt_filter: Child here",queue_id);
+
+ execvp(child_argv[0], child_argv);
+ _exit(errno);
+ break;;
+ case -1:
+ // Failed
+ debug(D_RFIL,"%s: rcpt_filter: fork failed: %d",
queue_id, errno);
+ break;
+ default:
+ // Parent
+ if(waitpid(child_pid, &child_status, 0)<0)
+ debug(D_RFIL, "%s: rcpt_filter: waitpid failed:
%d", queue_id, errno);
+ if(WIFEXITED(child_status))
+ {
+ rcpt_filter_result = WEXITSTATUS(child_status);
+ debug(D_RFIL,"%s: rcpt_filter: Child exit
status %d",queue_id, rcpt_filter_result);
+ }
+ else
+ debug(D_RFIL,"%s: rcpt_filter: Child exited
abnormally",queue_id);
+
+ break;
+ }
+
+ if(tmp_rcpt_borrowed)
+ tmp_rcpt--;
+ free(tmp_rcpt);
+
+ if(!rcpt_filter_result)
+ {
+ debug(D_RFIL,"%s: rcpt_filter, removing rcpt", queue_id);
+ sctx->rcpts--;
+ return true;
+ } else
+ debug(D_RFIL,"%s: rcpt_filter, leaving rcpt", queue_id);
+
+ debug(D_FUNC,"%s: rcpt_filter: leaving normally", queue_id);
+ return false;
+}
+
//
// Gets called repeatedly for all header fields
//
@@ -968,6 +1081,22 @@
SpamAssassin* assassin = ((struct context *)smfi_getpriv(ctx))->assassin;
debug(D_FUNC, "mlfi_header: enter");
+ if ( !(assassin->connected))
+ { //Only once, before SPAMC connects
+ struct context * sctx = (struct context *) smfi_getpriv(ctx);
+ char * queue_id = smfi_getsymval(ctx,"i");
+ if(flag_rcpt_filter && !sctx->rcpts)
+ {
+ debug(D_RFIL,"%s: rcpt_filter, accepting message without
processing", queue_id);
+ mlfi_abort(ctx); // For lack of specific cleanup
+ debug(D_FUNC, "%s: mlfi_header: rcpt_filter leave", queue_id);
+ return SMFIS_ACCEPT;
+ } else
+ debug(D_RFIL, "%s: rcpt_filter, processing message", queue_id);
+
+ debug(D_FUNC, "%s: mlfi_header: rcpt_filter leave", queue_id);
+ }
+
// Check if the SPAMC program has already been run, if not we run it.
if ( !(assassin->connected) )
{
@@ -1199,8 +1328,12 @@
SpamAssassin* assassin = ((struct context *)smfi_getpriv(ctx))->assassin;
debug(D_FUNC, "mlfi_abort");
- ((struct context *)smfi_getpriv(ctx))->assassin=NULL;
- delete assassin;
+ if(assassin)
+ {
+ ((struct context *)smfi_getpriv(ctx))->assassin=NULL;
+ delete assassin;
+ } else
+ debug(D_MISC,"%s: mlfi_abort: assassin is
NULL!",smfi_getsymval(ctx,"i"));
return SMFIS_ACCEPT;
}
diff -ur spamass-milt/spamass-milter.h spamass-milt.jm/spamass-milter.h
--- spamass-milt/spamass-milter.h 2004-09-21 21:56:08.000000000 -0400
+++ spamass-milt.jm/spamass-milter.h 2004-09-22 02:01:10.000000000 -0400
@@ -74,7 +74,7 @@
enum debuglevel
{
D_ALWAYS, D_FUNC, D_POLL, D_UORI, D_STR, D_MISC, D_NET, D_SPAMC, D_RCPT,
- D_COPY,
+ D_COPY, D_RFIL,
D_MAX // must be last
};
@@ -168,6 +168,7 @@
struct in_addr connect_ip; // remote IP address
char *helo;
SpamAssassin *assassin; // pointer to the SA object if we're processing
a message
+ int rcpts; // must be positive if we are to do ANY spamassassin
processing
};
/* This hack is the only way to call pointers to member functions! */
@@ -185,5 +186,6 @@
int ip_in_networklist(struct in_addr ip, struct networklist *list);
void parse_debuglevel(char* string);
char *strlwr(char *str);
+bool rcpt_filter(SMFICTX*, char**);
#endif
Only in spamass-milt.jm/: spamass-milter.o
Only in spamass-milt.jm/: stamp-h.in
Only in spamass-milt.jm/: stamp-h1