diff -r 2fdc9cc89502 -r 15d14b110240 org/sonews/util/io/ArticleWriter.java --- a/org/sonews/util/io/ArticleWriter.java Wed Jul 22 14:04:05 2009 +0200 +++ b/org/sonews/util/io/ArticleWriter.java Sat May 01 14:27:30 2010 +0200 @@ -65,7 +65,7 @@ this.out.write("\r\n.\r\n".getBytes()); this.out.flush(); String line = inr.readLine(); - if(line == null || !line.startsWith("240 ")) + if(line == null || !line.startsWith("240 ") || !line.startsWith("441 ")) { throw new IOException(line); }