diff -r 2fdc9cc89502 -r f2293e8566f5 org/sonews/storage/Article.java --- a/org/sonews/storage/Article.java Wed Jul 22 14:04:05 2009 +0200 +++ b/org/sonews/storage/Article.java Thu Aug 20 18:41:21 2009 +0200 @@ -119,7 +119,7 @@ final Object content = msg.getContent(); if(content instanceof String) { - this.body = ((String)content).getBytes(); + this.body = ((String)content).getBytes(getBodyCharset()); } else if(content instanceof Multipart) // probably subclass MimeMultipart {