-
Recently it seems that Google have modified the way that their server responds to the LOGIN command, they now return a list of capabilities after LOGIN before returning the OK authenticated message.
We had code that had been working fine using your library but within the last week or so it just started breaking, without any changes from ourselves.
I've had a look through your source and...
2009-11-11 16:14:16 UTC by hologramx
-
I've noticed that both the ImapCommand.Create() and ImapCommand.Delete functions are creating the command line without the "\r\n" suffix. This would cause the command to not be executed.
also, ImapCommand.IsRespondEnd() does not cater for all possible positive response from the imap server. eg. should include Regex.IsMatch(response, OK _CREATE) as well. (i haven't tested completely...
2009-10-28 06:14:34 UTC by tlaffrey
-
I cant make it work... just trying to connect and keep receiving an error
This is my code:
ImapConnect conn = new ImapConnect("exchange.liveoffice.com", 993, true);
ImapCommand cmd = new ImapCommand(conn);
ImapAuthenticate auth = new ImapAuthenticate(conn, "user", "password");
conn.Open();.
2009-09-29 23:39:52 UTC by osvier
-
Can you post the "CAPABILITY" from exchange. Perhaps if we can detect it we can implement a operation in the authenticate to escape these "special characters". Also in the mean time ill see if dovecot does any better than exchange it may be something that's in all mail servers but i doubt it.
2009-09-25 21:45:44 UTC by newbish
-
The address is: www.guazzi.net/imap.rar.
2009-09-07 15:42:46 UTC by iomeste
-
The address is: www.guazzi.net/imap.rar.
2009-09-07 08:28:42 UTC by iomeste
-
The library does some pretty strong assumptions about encodings: amoung the other things, it assumes that ALL attachments are always encoded in BASE64 (and that non-attachements are NEVER encoded in BASE64). I rewrote this part of the library, as I didn't like the way it mixes transfer and char encodings. If you want to try my version, you can find it here: www.guazzi.net/imap.
2009-09-07 08:27:47 UTC by iomeste
-
Sometimes (randomly) when saving an attachment from an email with the following code:
FileStream lOut = new FileStream(Properties.Settings.Default.AttachmentLocation + lPart.FileName, FileMode.Create);
lCommand.FetchBodyPart(lMessage, lMessage.BodyParts.IndexOf(lPart));
lOut.Write(lPart.DataBinary, 0, (int)lPart.DataBinary.Length);
lOut.Flush();
lOut.Close();
An...
2009-09-07 06:08:19 UTC by emjay88
-
can anyone help me reading the mail content of a particulaer message. I am trying FetchBodyStructure method of the component but no luck to read the actual message content.
your help is most appriciated :)
Thanks
Bharat.
2009-08-28 12:12:55 UTC by tyagibharat
-
A problem appears after calling LIST command to an Exchange mail server. The server returns a list of folders like:
* LIST (\HasChildren) "/" "Filed Mail"
* LIST (\HasNoChildren) "/" "RSS Feeds"
which are parsed just fine with regular expression in ImapFolder class, ParseFolder method with some RegularExpressions. But the server also sends something...
2009-08-28 12:03:55 UTC by garzanti