nntp is the Network News Transport Protocol used to transfer USENET news around.
0
votes
0answers
12 views
Download and store Usenet messages for yEnc decoding (yDec)
I'm trying to download (and reconstruct) binary files from Usenet (NNTP) with node.js, using mscdex's node-nntp. I'm parsing nzb-files (XML) to find the correct messages and I'm able to download those ...
1
vote
1answer
58 views
Seeking example of how to use nntp package
I still quite new to the whole monad/IO thing, and I am having trouble using the nntp package.
Could someone show me an example of how to use it please?
eg. How to get a list of article IDs of a group ...
0
votes
1answer
64 views
Delphi IdNNTP: download a file from Usenet according to NZB-file
I have a NZB file, something like this:
<?xml version="1.0" encoding="utf-8" ?>
<nzb xmlns="http://www.newzbin.com/DTD/2003/nzb">
<head>
<meta type="title">Your ...
0
votes
1answer
15 views
What is the best way to determine what articles are available for a given usenet group?
I was wondering what the most efficient way is to get the available articles for a given nntp group. The method I have implemented works as follows:
(i) Select the group:
GROUP group.name.subname
...
0
votes
0answers
41 views
is the GNU javax.mail.Folder root folder for Store empty?
I'm using GNU NNTP and am running into a problem with loading the folders. Now, I do see my FQDN and NNTP server, Leafnode, in the stacktrace below, so that appears to be loading correctly.
here ...
0
votes
1answer
77 views
Erlang supervisor:start_child parameters
I'm trying to understand this bit of supervisor code from ErlNNTP and I can't make sense of it even after reading the erlang documentation (Erlang n00b) on start-child ...
0
votes
1answer
16 views
what is the exact syntax for the nntp command LIST HEADERS
I have gone through all the RFC documentation for the syntax of command LIST HEADERS
I have found something at https://tools.ietf.org/html/rfc3977#section-8.6 but it seems
to be incomplete.
There I ...
1
vote
0answers
73 views
Know any embeddable NNTP servers?
I'm writing a bit of code that uses the Apache NNTP Client to fetch articles from an NNTP server. Once the code ships, we'll use an Apache James server to read the articles from. But to test the code, ...
1
vote
2answers
201 views
bridge/gateway for news (NNTP) to web forum
I am looking for a discussion forum suitable for "geeks" and not so technically versed users alike.
For years we have been using a newsserver (NNTP) that the geeks are happy with (using Thunderbird ...
2
votes
0answers
77 views
how to Flag.DELETED a message with GNU NNTP
I'm using GNU javamail to read NNTP messages:
public List<Message> getMessages(Newsgroup newsgroup) throws MessagingException {
LOG.fine("fetching.." + newsgroup);
folder = ...
2
votes
1answer
127 views
persist e-mail in a RDBMS
I'm considering using dbmail, Archiveopteryx, manitou or James to persist javax.mail.Message objects, not exactly e-mail per se. However, I'm guessing that, in the case of dbmail specifically, it's ...
0
votes
0answers
122 views
NNTP xref header for article message number?
I'm using GNU NNTP to connect to Leafnode on localhost, which uses javax.mail.Message. This creates a situation where the message numbers will not persist across sessions, or even re-opening a folder ...
0
votes
1answer
193 views
is there an alternate to javax.mail.search?
I'm using GNU NNTP to connect to leafnode, which is an NNTP server, on localhost. The GNU API utilizes javax.mail.Message, which comes with the following caveat:
From the Message API:
..the ...
0
votes
1answer
199 views
What are the standard headers in NNTP?
After looking at the NNTP standard, I have figured out how to extract a header from the message, how to fold headers, and how to separate the header label from the header text. What I can't find is ...
0
votes
2answers
81 views
are USENET or NNTP articles loaded in chronological or reverse chronological order?
sample newsrc:
thufir@dur:~$ cat .newsrc
gwene.com.androidcentral: 1-99999999
gwene.com.blogspot.emacsworld: 1-99999999
gwene.com.blogspot.googlecode: 1-99999999
gwene.com.blogspot.googlereader: ...
0
votes
2answers
74 views
Why can't I connect to an NNTP server?
I'm trying to use PHP's imap_open function to connect to an NNTP server but have so far been entirely unsuccessful. (PHP documentation states that this is possible, despite IMAP access being the ...
0
votes
2answers
60 views
How to debug something that works and not at random?
I'm using the Net_NNTP ->post() function. This posts a message to a NNTP server. Sometimes however (30-50% of the cases) the lasts 1 or 2 characters of every line of the message are truncated. ...
1
vote
1answer
82 views
gnu.mail.providers.nntp newsrc
Referencing the API docs for gnu.mail.providers.nntp, I'm trying to generate a list of folders on localhost nntp where I run leafnode.
However, it seems that ${user.home}/.newsrc isn't loading ...
1
vote
0answers
82 views
How does the NNTP peering protocol works?
I can't find any doc online and i got lost on the RFC.
Could someone please explain me how does a NNTP server peering with another accept news?
I can only use my imagination:
telnet nntp-server ...
0
votes
1answer
225 views
newsgroup nntp protocol talk with fsockopen - how to get size
In the code below I can get a list of "message-id"s in a group I selected earlier.
Now with that info I can retreive the header with
head "message-ID"
how do I find out what the size of the article ...
0
votes
1answer
106 views
PHP and NNTP problems using imap_open
I am having a bit of trouble with NNTP and PHP (following the directions in the PHP manual, I threw in this quick test:
<?php
$server = "{news.newsserver.com/nntp:119}";
if ($nntp = ...
0
votes
1answer
82 views
Program gets stuck attempting to create NNTP connection
My program starts a connection to a usenet server like this:
s = nntplib.NNTP(self.nserver, 119, self.nuser, self.npass)
But sometimes there's a problem. The connection is not made and the program ...
0
votes
1answer
168 views
Python error while connecting to nntp server
Traceback (most recent call last):
File "<pyshell#27>", line 1, in <module>
server = NNTP('http://www.news.readfreenews.net')
File "C:\Python27\lib\nntplib.py", line 112, in ...
0
votes
1answer
227 views
Posting large files to usenet using Python & nntplib: How are large files split?
I'm intrigued by uBackup, using Usenet for backing up large files.
I thought it would be a good idea to use python for this, but I'm having problems understanding the correct protocol for posting ...
2
votes
1answer
504 views
Java & NNTP : How to post binary file?
I asked Google several times without answer. So, I decide to ask you my question.
How can I send (post) a binary file to a newsgroup server using Java ?
0
votes
1answer
43 views
mail reader that uses gzipped archives from http instead of an nntp server
Is there a mail client that can be configured to use gzipped archives of mailing lists directly from where the mailing list is hosted rather than a central nntp server ?
nntp is either not free, or ...
0
votes
1answer
87 views
.net: does anyone know a free library to download nntp messages
I'm using ip*works for downloading newsgroup messages and inserting them into a database. ipworks is "comfortable" to use because it automatically splits nntp data return into different objects (or ...
1
vote
1answer
297 views
Is it possible to post binaries to usenet with Python?
I'm trying to use the nntplib that comes with python to make some posts to usenet. However I can't figure out how to post binary files using the .post method.
I can post plain text files just fine, ...
3
votes
1answer
180 views
NNTP usenet download messages
I would like to download usenet messages to my personal Mysql database, so without using any newsreader.
At the moment i'm using IpWorks component for .NET . I've created a simple app in Vb.Net, It ...
0
votes
2answers
275 views
NNTP (usenet newsgroup) downloader for .NET
I would like to try to download usenet newsgroup messages. Anybody know how? I'd take a look at IPWorks but I don't understand how to download it. Any suggestions?
2
votes
1answer
113 views
Hashing SMTP and NNTP messages?
I want to store and index all of my historical e-mail and news as individual message files, using some computed hash code based on the message body+headers. Then I'll index on other things as well -- ...
0
votes
1answer
688 views
NNTP client - Java - Download Article is downloaded 3 extra garbage bytes randomly [closed]
I wrote this NNTP client... and I am trying to use it as part of a bigger project, but it seems that the downloadArticle(string msgID) is downloading some extra bytes, but randomly. For example, one ...
0
votes
1answer
58 views
L&H_Reader news reader? What's this?
A message source shows
User-Agent: L&H_Reader
What news reader is this?
0
votes
1answer
152 views
Good backend for downloading nzb files to seperate directories
I'm laying out a download management that will segregate each users downloads, separate watched directories each download to their own folders, can't see each others queues, etc.
I wanted to use ...
0
votes
1answer
61 views
storing the data in to news server
how to store the data(articles,news etc) in to the nntp news server using c#.
3
votes
1answer
992 views
Any good C++/C NNTP libs?
I came across some crusty and limited efforts awhile back but I was wondering if there was something truly functional that I missed, preferably in C++ but C is better than nothing.
0
votes
1answer
169 views
NNTP command to get count of available newsgroups
Is there an NNTP command to return the count of NewsGroups on an USENET server? (Without having to retrieving the entire list.)
3
votes
3answers
2k views
What PHP class to use for accessing NNTP
I'd like to access NNTP servers, groups, and messages through PHP. Is there any existing class you'd recommend? Preferably PHP5 and good OOP.
1
vote
2answers
446 views
Best nntp to web gateway?
My company uses usenet groups on an internal nntp server and I would like to add a web server to this that would allow the usual browsing and searching but in addition provide an archive of old ...
12
votes
8answers
2k views
Is NNTP dead?
If its dead, is there a successor?
For those who didn't know:
The Network News Transfer Protocol or NNTP is an Internet application protocol used primarily for reading and posting Usenet articles ...
2
votes
2answers
672 views
