Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > net::imap extension

Reply
Thread Tools

net::imap extension

 
 
Anders Borch
Guest
Posts: n/a
 
      06-26-2003
hi rubyists!

I recently made a small web-interface to some mail administration, it
was a small and easy operation with the kind help ruby

but... I found that Net::IMAP lacks ACL support, I know that it's not
IMAP (rfc 2060), but it *is* in rfc 2086. GETACL, SETACL, DELETEACL etc.
would be *very* nice to have in net::imap, and are pretty easy to
implement too:

module Net
class IMAP

def setacl (mailbox, user, acl)
send_command ("SETACL", mailbox, user, acl)
end

def getacl (mailbox)
send_command ("GETACL", mailbox)
end

# ...

end
end

my question is this: how to put this in the official Net::IMAP package
distributed with ruby (I think it should be there, if others disagree
then I'll just keep my acl code to myself and shut up about it

/Anders

--
dc -e
4dd*od3*dddn1-89danrn10-dan3+ann6*dan*2*an13dn1+dn2-dn3+5*ddan2/9+an13nap

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
newWizards as an extension and extension point? Elhanan Java 0 01-23-2007 08:11 AM
How to convert a .txt file extension to a .xls file extension? Steve ASP .Net 3 08-25-2006 05:43 PM
New extension? saw extension .emf is it safe to open Jer Computer Support 5 10-08-2005 04:43 PM
C extension=> pow(2,1) gives DIFFERENT answers in different parts of C extension!?!?! Any ideas why? Christian Seberino Python 3 02-05-2004 04:36 AM
Unload extension modules when python22.dll unloads... [using C extension interpreter] Anand Python 3 11-08-2003 05:50 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57