moggers87 / salmon

A Python Mail Server
Other
641 stars 70 forks source link

Implement connection limiting #32

Open moggers87 opened 9 years ago

moggers87 commented 9 years ago

Currently using Python's SMTPd as the basis for our server implementatoins. This has no connection limiting and will just spawn n threads for n connections.

A naïve connection limit could be implemented as a mixin that could be used with both Python's SMTPd and LMTPd.

I probably won't get around to doing this, so pull requests are most welcome ☺

moggers87 commented 5 years ago

Wondering if this should be deferred until 4.0? I don't fancy poking around asyncore again.