Ask a Question related to Ruby, Design and Development.
-
Hal Fulton #1
Ruby and NNTP attachments
I've been playing with NNTP a day or two.
The lib by Jeff Heard and Ward Wouts seems to work fine
for me, but I'm clueless about attachments.
What's the deal? Does Usenet universally know MIME
nowadays, or do we still do uuencoding?
Either way, how do I make it work? Do I have to worry
about a max size?
Thanks for any guidance.
Hal
Hal Fulton Guest
-
NNTP component
Do you know any NNTP browsers components for ASP? -
CDOSYS NNTP
Is it possible to send/receive nntp messages via CDOSYS without a 3rd party news component? The NNTP links I have found appear to be related to MS... -
imap_open and NNTP
I'm trying to use imap_open to get news from a server that requires a user name and password. I'm using $nntp =... -
Best NNTP lib?
Hello, all. I think I've heard of at least four NNTP libraries in Ruby -- two in the RAA, and (I think) another two not therein. I just want... -
[ANN] ruby-freedb, ruby-serialport, ruby-mp3info moved to Rubyforge
http://ruby-freedb.rubyforge.org/ http://ruby-serialport.rubyforge.org/ http://ruby-mp3info.rubyforge.org/ bye! --... -
daz #2
Re: Ruby and NNTP attachments
"Hal Fulton" <hal9000@hypermetrics.com> wrote:
(A port from Python, supporting:> I've been playing with NNTP a day or two.
>
> The lib by Jeff Heard and Ward Wouts seems to work fine
[url]http://www.faqs.org/rfcs/rfc977.html[/url] )
This (from nazgul):
[url]http://bsd.org.yu/~psy_eye/dwn/nntp.rb[/url]
supports rfc977 and started support for NNTP extensions (?):
[url]http://www.faqs.org/rfcs/rfc2980.html[/url]
Is there a club ?> ... but I'm clueless about attachments.
My impression is that MIME is forcing its way in,> What's the deal? Does Usenet universally know MIME
> nowadays, or do we still do uuencoding?
rather than becoming accepted.
I found this helpful:> Either way, how do I make it work?
[url]http://pages.prodigy.net/michael_santovec/decode.htm[/url]
which suggests that attachment is a concept. It's
really part of the message body.
So, uuencoded attachments are a begin/end block.
How does one uuencode ?
A language which provides support would be most
helpful. One such could be Ruby ([url]www.ruby-lang.org[/url]).
Array#pack "u"
String#unpack "u"
** (I tried not to look surprised:)
(un)pack also seems to provide:
"M" Quoted printable, MIME encoding (see RFC2045)
"m" Base64 encoded string
** (Again, I tried not to ... :)
Lots of people don't worry, but I saw 50K> Do I have to worry about a max size?
>
mentioned as a 'pain threshold' at one site.
A picture of Usenet> Thanks for any guidance.
>
> Hal
>
>
[url]http://www.dsv.su.se/~jpalme/e-mail-book/usenet-news.html[/url]
daz
daz Guest
-
Mike Campbell #3
Re: Ruby and NNTP attachments
> -----Original Message-----
> From: Hal Fulton [mailto:hal9000@hypermetrics.com]
> Sent: Saturday, September 13, 2003 4:17 AM
> To: ruby-talk ML
> Subject: Ruby and NNTP attachments
>
>
> I've been playing with NNTP a day or two.
>
> The lib by Jeff Heard and Ward Wouts seems to work fine
> for me, but I'm clueless about attachments.
>
> What's the deal? Does Usenet universally know MIME
> nowadays, or do we still do uuencoding?
>
> Either way, how do I make it work? Do I have to worry
> about a max size?
I've seen less and less uuencoding over the years, but it's still around.
Something I see a lot of lately in the binary newsgroups is "yenc"
([url]http://www.yenc.org[/url]). As a counterpoint, check out
[url]http://www.exit109.com/~jeremy/news/yenc.html[/url], but I don't think jeremy's doing
much more than tilting at windmills, frankly.
As for size, one accepted "standard" size I see is to break up your posts into
roughly 472500 to 315000 bytes per segment, "for best propagation".
([url]http://www.faqs.org/faqs/music/mp3/newsgroups-faq/[/url] , section 4.13) Your goal
may not BE propogation, so that argument may not be relevant.
Mike Campbell Guest



Reply With Quote

