On 13 Dec 2004, at 18:03, Anthony R. J. Ball wrote:
qpsmtpd is kind of fundamentally designed around reading from STDIN and...
writing to STDOUT, or at least designed around doing blocking reads. AsIt's unfortunate, because the end result would be a server capable of processing thousands of concurrent connections with fairly minimal overhead and extremely high performance (I know because I have
SelectServer is a multiplexing setup, I assume? One server handles all the requests using the select call to determine what is ready for reading?
Yes. Though it needs to be a little more than just that (as that alone would be quite simple to setup).
