Hi,

iam using Rebex.net.dll but it is giving an error at imap.connect() method

Imap imap = new Imap();
         imap.Connect("imap.gmail.com",993);// here i am getting time out excedded error..
        imap.Login("yeleti.moss2007@gmail.com", "***", ImapAuthentication.Auto);

Please tell me why iam getting this error.....

asked 01 Nov '10, 14:22

janu's gravatar image

janu
16
accept rate: 0%

edited 02 Nov '10, 12:58

Rebex%20KB's gravatar image

Rebex KB ♦♦
258519


Gmail's IMAP server uses implicit SSL, which means that ImapSecurity.Implicit needs to be specified when calling the Imap object's Connect method.

Please have a look at How to connect to gmail using IMAP for more information and sample code.

link

answered 02 Nov '10, 10:41

Vit%20Zyka's gravatar image

Vit Zyka
912
accept rate: 8%

edited 03 Nov '10, 10:22

Martin%20Vobr's gravatar image

Martin Vobr ♦♦
335310

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×76

Asked: 01 Nov '10, 14:22

Seen: 399 times

Last updated: 26 Sep '11, 10:55