Stephan Soller
Stephan Soller
Hi rspshotgun, that's strange. The easiest way to the message was send properly is to use another newsgroup client (e.g. Thunderbird) and view the message source with it. If you...
Thanks for the detailed report! That is indeed strange. I'll try to reproduce this. In the meantime there is only one error source I can still think of: The send_text()...
Ok, now it gets really strange. Can you also add $text to the var_dump() call? Just to be sure that the body actually arrives at that method. Tomorrow I'll try...
Oh, another very stupid idea: In /public/app/messages/create.php:112 can you replace this line with ``` $message = join("\n", $headers) . "\n\n" . $_POST['body']; ``` with ``` $message = join("\r\n", $headers) ....
Ok, I'm glad the initial bug is finally cornered. I'll go through the source code to fix up all line breaks. Thanks for all your help. I think I should...
Commit 6f96f5e should fix the initial bug. I haven't yet had time to reinstall my NNTP test servers so this is untested yet. Can you checkout the current master and...
I went trough the entire code but apart from the delete message everything used already \r\n line breaks. So it's just the stuff you already patched plus the delete message...
The NntpConnection constructor is some pretty ugly code right now. Especially since the read mode is reset after a successful login. So as it is it probably doesn't work with...