diff -r 2fdc9cc89502 -r e4345a26f81f org/sonews/mlgw/SMTPTransport.java
--- a/org/sonews/mlgw/SMTPTransport.java	Wed Jul 22 14:04:05 2009 +0200
+++ b/org/sonews/mlgw/SMTPTransport.java	Wed Aug 26 10:55:59 2009 +0200
@@ -84,6 +84,10 @@
   public void send(Article article, String mailFrom, String rcptTo)
     throws IOException
   {
+    assert(article != null);
+    assert(mailFrom != null);
+    assert(rcptTo != null);
+
     this.out.println("MAIL FROM: " + mailFrom);
     this.out.flush();
     String line = this.in.readLine();