Your message dated Mon, 26 Nov 2012 21:36:47 +0000
with message-id <[email protected]>
and subject line Bug#692576: Removed package(s) from unstable
has caused the Debian Bug report #225343,
regarding rblsmtpd logging improvement
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
225343: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=225343
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ucspi-tcp
Version: 0.88-8

it's not always clear which of several RBLs list an address -- because
several of them do not include descriptive enough info in their TXT
records.  this patch logs the base rbl name along with the record so that
the logs are at least foolproof (which is nice for automatic log
processing).

-dean

--- ucspi-tcp-0.88/rblsmtpd.c.orig      2003-11-16 23:52:05.000000000 -0800
+++ ucspi-tcp-0.88/rblsmtpd.c   2003-12-28 14:48:26.000000000 -0800
@@ -55,6 +55,7 @@

 int decision = 0; /* 0 undecided, 1 accept, 2 reject, 3 bounce */
 static stralloc text; /* defined if decision is 2 or 3 */
+static char *decision_base;

 static stralloc tmp;

@@ -76,6 +77,7 @@
       if (flagfailclosed) {
         if (!stralloc_copys(&text,"temporary RBL lookup error")) nomem();
         decision = 2;
+       decision_base = base;
       }
       return;
     }
@@ -105,15 +107,18 @@
       if (flagfailclosed) {
         if (!stralloc_copys(&text,"temporary RBL lookup error")) nomem();
         decision = 2;
+       decision_base = base;
       }
       return;
     }
   }
-  if (text.len)
+  if (text.len) {
     if (flagrblbounce)
       decision = 3;
     else
       decision = 2;
+    decision_base = base;
+  }
 }

 void antirbl(char *base)
@@ -173,6 +178,10 @@
   buffer_puts(buffer_2,ip_env);
   buffer_puts(buffer_2," pid ");
   buffer_put(buffer_2,strnum,fmt_ulong(strnum,getpid()));
+  if (decision_base) {
+    buffer_puts(buffer_2, " ");
+    buffer_puts(buffer_2,decision_base);
+  }
   buffer_puts(buffer_2,": ");
   buffer_put(buffer_2,message.s,message.len);
   buffer_puts(buffer_2,"\n");


--- End Message ---
--- Begin Message ---
Version: 0.88-15+rm

Dear submitter,

as the package ucspi-tcp-src has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see http://bugs.debian.org/692576

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to