Page 1 of 1

NNTP Coding Question

Posted: December 16th, 2009, 11:41 pm
by arsenic0
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?

Re: NNTP Coding Question

Posted: December 17th, 2009, 2:55 am
by switch
Try this (including the characters)

Code: Select all

BODY <MESSAGEIDHERE>\r\n

Re: NNTP Coding Question

Posted: December 17th, 2009, 12:10 pm
by arsenic0
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.