 |
|
|
 |
|
 |
Thanks! I figured it out that i didn't need the UID part before the sequence.
BTW, is there any support for IMAP IDLE command? I'd love to do push email with this.
Thanks!
|
|
|
|
 |
|
 |
IMAP IDEL, not yet, probably IMAP server needs total rewrite.
|
|
|
|
 |
|
 |
I need it more on the client side (we will be using the server stuff eventually, but right now it's in our client application only). Any tips on how I could impliment this?
Thanks!
|
|
|
|
 |
|
|
 |
|
 |
Ok, here's a really weird one...
I got the above command to work, however every time I call the command, I get a message back as the UID, I do my thing and fetch it based on the UID.
I increment the last seen message uid that I store (so 100 becomes 101) and then the next time I request a message I request with UID 101:* UNDELETED.
I get THE SAME MESSAGE with a new UID (incremented by one) every time.
The same thing happens with the built in fetch command as well....
What the heck am I doing wrong?
(For reference, this is the RFC I'm trying to follow to do disconnect client sync between our client application and a generic IMAP mail server (in this case Visnetic): http://www.rfc-archive.org/getrfc.php?rfc=4549[^])
Thanks!
|
|
|
|
 |
|
 |
Hi,
I am getting this error when i tried to connet to the service using mail manager.exe :"No connection could be made because the Target Machine Actively refuse it"
What to do now ? Any idea?
Thanks,
Dan
|
|
|
|
 |
|
 |
Hi,
Is server up and running ? (you need to run lsmailserver.exe, to install/run server, after it you can connect to it)
|
|
|
|
 |
|
 |
Hi Ivar Lumi,
Yes the server is already running. I also tried to run it as windows service , tray application..
But can't know why it is showing the error. Meanwhile I searched on google about this error and found some result on forums but didn't get the right answer! Am i doing something wrong to start the server ? or is it some other problem ? Please help ...
Thanks,
Dan
|
|
|
|
 |
|
 |
Do you connect from same compueter or remote ?
|
|
|
|
 |
|
 |
form same one. Is it the reason ?
|
|
|
|
 |
|
 |
Then probably your antivirus or firewall blocks TCP traffic.
Did you tried as localhost ?
|
|
|
|
 |
|
 |
Hi,
Yes your suggestion worked. The Firewall was blocking the connection.
Thank you very much for help.
Thanks,
Dan
|
|
|
|
 |
|
 |
I mean through a company firewall or the proxy server. It works when I'm directly connected to the internet. But, I didn't find an option to channel the traffic through a proxy server.
|
|
|
|
 |
|
 |
then you just need to connect to compnay proxy server, not direct server.
|
|
|
|
 |
|
 |
Hi,
Its great that you've updated this code.
Back when .NET 2.0 wasn't around I needed to write an intricate mail client (academic project), and used your code.
Found it to be very flexible and considerately written
Thanks
|
|
|
|
 |
|
 |
Hi,
You are welcome.
>Found it to be very flexible and considerately written
Day to day its getting better.
Currently ending VOIP(SIP) implementation, i can say that this code is
clean very well commented. (If compare to old, but some day i need to rewrite old code to such nicer code)
|
|
|
|
 |
|
 |
One question,
how do i use this through a proxy server (smtp server/client classes and others as well).
cheers,
Sameera.
|
|
|
|
 |
|
 |
What proxy ? or how . ...
|
|
|
|
 |
|
 |
That's a chunk-o-code! Thanks for sharing!!!
|
|
|
|
 |
|
 |
I'd also like to thank you for your code. I am still trying to learn how to program and this is wonderful. They only teach us the basic foundations of programming in school, but not necessarily any language, or IDE specific things, so this is very helpful.
Thank you very much.
-Richard
|
|
|
|
 |
|
 |
must close to sent "QUIT" to remote server ,It will commit the delete email.
|
|
|
|
 |
|
 |
Don't know, i use fetch all the time, all deleted ok.
|
|
|
|
 |
|
 |
offset += quoteEndIndex + 1 + quotedStringCEncoded.Length - quotedString.Length;
offset += quoteEndIndex + 1;
i chage to
offset = quoteEndIndex + 1 + quotedStringCEncoded.Length - quotedString.Length;
offset = quoteEndIndex + 1;
and the pop3 proxy is finished, thanks your code.
|
|
|
|
 |
|
 |
What does this chnage ?
Give me exmpale message header, so far i don't have any trouble to parse any header.
|
|
|
|
 |