nodemailer / smtp-server

Create custom SMTP servers on the fly
Other
857 stars 145 forks source link

Limitation? #86

Closed Extarys closed 7 years ago

Extarys commented 7 years ago

Hey!

Is there any limitation compared to Exim4 or Postfix for example? Or is this works like any other smtp server and can be used in production.

Thanks!

PS.: Any IMAP server in nodejs by any chance?

andris9 commented 7 years ago

smtp-server is a low level protocol module that only provides smtp interfaces for applications, it does not have any message routing logic or such by itself. For a complete SMTP server application check out Haraka. For an IMAP server in Nodejs check out https://wildduck.email

Extarys commented 7 years ago

AWESOME thank you so much!