We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server answer - 535 Error: Authentication credentials invalid My options:
return mailin.start({ port: 2525, disableWebhook: true, smtpOptions: { banner: 'Hello Smtp Server', logger: true, requireAuthentication: true, authMethods: ['PLAIN', 'LOGIN'], disabledCommands: ['STARTTLS'], ignoreTLS: true, } });
Authorization handler mailin.on('authorizeUser', function(connection, username, password, done) { console.log(username, password); done(null, true); });
mailin.on('authorizeUser', function(connection, username, password, done) { console.log(username, password); done(null, true); });
What I do wrong ?
The text was updated successfully, but these errors were encountered:
Same issue with me.
+1
Sorry, something went wrong.
I find a solution!
Return done(null,{user:user_id_here}); instead done(null,true);
No branches or pull requests
Server answer - 535 Error: Authentication credentials invalid
My options:
return mailin.start({ port: 2525, disableWebhook: true, smtpOptions: { banner: 'Hello Smtp Server', logger: true, requireAuthentication: true, authMethods: ['PLAIN', 'LOGIN'], disabledCommands: ['STARTTLS'], ignoreTLS: true, } });
Authorization handler
mailin.on('authorizeUser', function(connection, username, password, done) { console.log(username, password); done(null, true); });
What I do wrong ?
The text was updated successfully, but these errors were encountered: