Connection Timeout - WeOnlyDo Discussion board

Connection Timeout (General questions)

by ajitpals, Thursday, April 14, 2016, 14:15 (2924 days ago) @ Jasmine

Previous message, was sent by mistake.
Yes, we are using Full Threading mode. So SMTP Server has following setting, when starting

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.

For Testing , we are also logging user transcripts from the SMTPServer

WodSMTPServerCom.Command += new _IwodSmtpServerComEvents_CommandEventHandler(WodSMTPServerCom_Command); //For Logging.

One more thing, we are running SMTPServer Class on thread.

//Could this be overkill.
SMTPRelayWorker RelayWorker = new SMTPRelayWorker(settings);
Thread othread = new Thread(new ThreadStart(RelayWorker.StartRelayWorker));
othread.Start();


Thanks,
Ajitpal


Complete thread: