Connection Timeout (General questions)
Previous message, was sent by mistake.
Yes, we are using Full Threading mode. So SMTP Server has following setting, when starting
[code]WodSMTPServerCom.Threads = ThreadTypes.FullThreads //threading level - 2
WodSMTPServerCom.Security = SmtpSecurityEnum.SecurityRequired;
WodSMTPServerCom.SecureProtocol = SecureProtocols.ProtAll;
WodSMTPServerCom.Timeout = 400; //Added later after getting issue with DATA command.[/code]
For Testing , we are also logging user transcripts from the SMTPServer
[code]WodSMTPServerCom.Command += new _IwodSmtpServerComEvents_CommandEventHandler(WodSMTPServerCom_Command); //For Logging.[/code]
One more thing, we are running SMTPServer Class on thread.
[code]//Could this be overkill.
SMTPRelayWorker RelayWorker = new SMTPRelayWorker(settings);
Thread othread = new Thread(new ThreadStart(RelayWorker.StartRelayWorker));
othread.Start();[/code]
Thanks,
Ajitpal