[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

zmailer bug reports..



I feel a bit funny, sending things like this to a huge mailing list.
Is there some better address?

Anyway, here's another anomaly: Sometimes the SMTP server doesn't
reply to VRFY and EXPN.  Uncompiled patch explains better than words:

--- smtpserver.c	Mon Apr 15 21:40:51 1996
+++ /tmp/smtpserver.c	Sat Apr 27 20:55:25 1996
@@ -1632,7 +1632,8 @@
 		  if ((s = router(RKEY_VERIFY, 0, cp)) != NULL) {
 		    printf("%s\r\n", s);
 		    free(s);
-		  }
+		  } else
+		    type(501, "Unable to verify that address");
 		} else
 		  type(252, (char *)NULL);
 		fflush(stdout);
@@ -1662,7 +1663,8 @@
 		  if ((s = router(RKEY_EXPAND, 0, cp)) != NULL) {
 		    printf("%s\r\n", s);
 		    free(s);
-		  }
+		  } else
+		    type(501, "Unable to verify that address");
 		} else
 		  type(502, (char *)NULL);
 		fflush(stdout);

To see the bug in effect, ask nic.funet.fi to EXPN 'zmailer'.

--Arnt