diff -r 2fdc9cc89502 -r bb6990c0dd1a 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 Thu Aug 20 14:31:19 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();