So, i realize this isnt the typical question asked here but i figured if anybody knew it would be a developer here so i figured ill ask.
Creating a C# NNTP application, nothing special.
Connect fine, authenticate fine, issue the group command fine.
My question comes with why i always get a 423 Article does not exist in group error when i try to issue a BODY command...looking at the Sabnzbd logs you just issue something like BODY [email protected]
If i issue that myself i get back that its not found. Is there something i need to do beyond issuing the GROUP command to point to that group for my BODY commands?
Ive looked at a ton of examples and they all just use ARTICLE or BODY followed by the messageID followed by just a regular integer article number, which if i do works fine..when i try issuing it with a NZB style messageID it never works.
Any help?
NNTP Coding Question
Re: NNTP Coding Question
Try this (including the characters)
Code: Select all
BODY <MESSAGEIDHERE>\r\n
Re: NNTP Coding Question
I will later today, cant believe i didnt try that to begin with i tried so many variations.
I misread the NZB spec as the message ID was everything without the 's...they instead show the messageid without the 's...
Thanks.
I misread the NZB spec as the message ID was everything without the 's...they instead show the messageid without the 's...
Thanks.