smtp-server
smtp-server copied to clipboard
Create custom SMTP servers on the fly
Error: Data command failed: 421 4.3.0 Temporary System Problem. Try again later (10). b15-20020a5d4b8f000000b0021b98d73a4esm4733091wrt.114 - gsmtp at SMTPConnection._formatError (/home/cedric/__GDA__/projects/attendancy-gda/node_modules/nodemailer/lib/smtp-connection/index.js:784:19) at SMTPConnection._actionDATA (/home/cedric/__GDA__/projects/attendancy-gda/node_modules/nodemailer/lib/smtp-connection/index.js:1650:34) at SMTPConnection. (/home/cedric/__GDA__/projects/attendancy-gda/node_modules/nodemailer/lib/smtp-connection/index.js:1622:26) at SMTPConnection._processResponse (/home/cedric/__GDA__/projects/attendancy-gda/node_modules/nodemailer/lib/smtp-connection/index.js:947:20) at SMTPConnection._onData...
``` const smtpServerConfig = Object.assign({ onAuth: smtpHelpers.createOnAuthCallback(user, password), onData: handleDataStream, onRcptTo: handleRecipientAddress, onClose: handleClientClosed, logger: false, disabledCommands: (user && password) ? ['STARTTLS'] : ['AUTH'] }, hideExtensionOptions) const smtp = new...
Hi so I have smtp-server running on port 25. It receives email sent from gmail.com just fine (well, there is a 60 second delay, presumably gmail is trying TLS first,...
Here we have commands being parsed. However if the server is shutting down, commands such as HELO will still be accepted. Is there a way to add this feature, similar...
Hi, In my SMTPserver service I setup the following logic: ``` onConnect ( session, callback ) { connCount++; logger.info( 'Number of concurrent connections: ' + connCount ); return callback(); },...
Right now it's not possible to pass a custom resolver function to resolve hostname lookup. https://github.com/nodemailer/smtp-server/blob/2bd0975292208f1cf77d7a93cb3d8b3c4d48acb8/lib/smtp-connection.js#L214 The package `mailauth` supports a `resolver` option, and it would be helpful to have...
Error: 28112:error:1420918C:SSL routines:tls_early_post_process_client_hello:version too low:c:\ws\deps\openssl\openssl\ssl\statem\statem_srvr.c:1661: These are my settings: secure: false, ciphers: "SSLv3", minVersion: 'TLSv1', and the port is 25
``` { [Error: 140372039571264:error:14201044:SSL routines:tls_choose_sigalg:internal error:../ssl/t1_lib.c:2846:] remote: 'XXX.XXX.XXX.XX' } ``` this is my sever code: ``` const server = new SMTPServer({ disabledCommands: ['AUTH'], onData: (stream, session, callback) => { console.log(session.secure);...
First, stream.on("end") will called after Data Ended. But how to get into this event ? I mean, I could end it if I use Telnet, just type "." (dot) and...
Hello, I'm using smtp-server for receiving a flow of emails. Some of them don't follow the RFC, more exactly the MAIL FROM: format. These will get an 501 Bad sender...