Search
j0ke.net Open Build Service
>
Projects
>
server:mail
>
ucspi-tcp
> ucspi-tcp-0.88-rblsmtpd-ignore-on-RELAYCLIENT.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File ucspi-tcp-0.88-rblsmtpd-ignore-on-RELAYCLIENT.patch of Package ucspi-tcp (Revision 6)
Currently displaying revision
6
,
show latest
--- rblsmtpd.c 2005-01-30 16:28:09.000000000 +0100 +++ rblsmtpd.c 2005-01-30 16:30:52.000000000 +0100 @@ -195,6 +195,7 @@ { int flagwantdefaultrbl = 1; char *x; + char *y; int opt; ip_init(); @@ -213,6 +214,13 @@ } } + y = env_get("RELAYCLIENT"); + if (y) { + if (!*y) { + decision = 1; + } + } + while ((opt = getopt(argc,argv,"bBcCt:r:a:")) != opteof) switch(opt) { case 'b': flagrblbounce = 1; break;