[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Query MS Exchange Inbox

Nick Hird

9/13/2007 3:07:00 PM

I have been looking for some information on the net to use ruby and
query my microsoft exchange inbox. I thought exchange was using IMAP
but i guess i was wrong because i receive an "authentication not
supported" error when i try and login. I tried both authentication
types that i was able to find. So now i am on a quest to find out what
the differences are so i can make my ruby app query my inbox. Any help
would be appreciated.

--Nick

2 Answers

Peña, Botp

9/14/2007 12:44:00 AM

0

From: Nick Hird [mailto:nrhird@gmail.com]
# I have been looking for some information on the net to use ruby and
# query my microsoft exchange inbox. I thought exchange was using IMAP
# but i guess i was wrong because i receive an "authentication not
# supported" error when i try and login. I tried both authentication
# types that i was able to find. So now i am on a quest to find out what
# the differences are so i can make my ruby app query my inbox. Any help
# would be appreciated.

if you're on windows, maybe this may help http://rubyonwindows.blogspot.com/2007/08/automating-outlook-with-ruby-...

kind regards -botp

Kohei Kajimoto

9/14/2007 1:46:00 AM

0

Exchange supports IMAP4 but it's optional and turned off in default.
For the protocol, basic login (+SSL/TLS) and NTLM are supported but
CRAM-MD is not.

Kohei