[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby and NNTP attachments

Hal E. Fulton

9/13/2003 8:17:00 AM

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


1 Answer

daz

9/13/2003 11:00:00 AM

0


"Hal Fulton" <hal9000@hypermetrics.com> wrote:

> I''ve been playing with NNTP a day or two.
>
> The lib by Jeff Heard and Ward Wouts seems to work fine

(A port from Python, supporting:
http://www.faqs.org/rfcs/r... )


This (from nazgul):
http://bsd.org.yu/~psy_eye/d...

supports rfc977 and started support for NNTP extensions (?):
http://www.faqs.org/rfcs/rf...


> ... but I''m clueless about attachments.

Is there a club ?


> What''s the deal? Does Usenet universally know MIME
> nowadays, or do we still do uuencoding?

My impression is that MIME is forcing its way in,
rather than becoming accepted.


> Either way, how do I make it work?

I found this helpful:
http://pages.prodigy.net/michael_santovec/...

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 (www.ruby-lang.org).

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 ... :)


> Do I have to worry about a max size?
>

Lots of people don''t worry, but I saw 50K
mentioned as a ''pain threshold'' at one site.


> Thanks for any guidance.
>
> Hal
>
>

A picture of Usenet
http://www.dsv.su.se/~jpalme/e-mail-book/usenet...


daz