Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
nodemailer-smtp-pool
Advanced tools
Applies for Nodemailer v1.x and not for v0.x where transports are built-in.
Install with npm
npm install nodemailer-smtp-pool
Require to your script
var nodemailer = require('nodemailer');
var smtpPool = require('nodemailer-smtp-pool');
Create a Nodemailer transport object
var transporter = nodemailer.createTransport(smtpPool(options))
Where
true
) or not (if false
)Pooled SMTP transport uses the same options as SMTP transport with the addition of maxConnections and maxMessages.
Example
var transport = nodemailer.createTransport(smtpPool({
host: 'localhost',
port: 25,
auth: {
user: 'username',
pass: 'password'
},
maxConnections: 5,
maxMessages: 10
}));
If authentication data is not present, the connection is considered authenticated from the start.
Set authentcation data with options.auth
Where
pass
and xoauth2
values are set) or an XOAuth2 token generator object.If a XOAuth2 token generator is used as the value for auth.xoauth2
then you do not need to set the value for auth.user
. XOAuth2 generator generates required accessToken
itself if it is missing or expired. In this case if the authentication fails, a new token is requested and the authentication is retried once. If it still fails, an error is returned.
Install xoauth2 module to use XOauth2 token generators (not included by default)
npm install xoauth2 --save
XOAuth2 Example
NB! The correct OAuth2 scope for Gmail is
https://mail.google.com/
var generator = require('xoauth2').createXOAuth2Generator({
user: '{username}',
clientId: '{Client ID}',
clientSecret: '{Client Secret}',
refreshToken: '{refresh-token}',
accessToken: '{cached access token}' // optional
});
// listen for token updates
// you probably want to store these to a db
generator.on('token', function(token){
console.log('New token for %s: %s', token.user, token.accessToken);
});
// login
var transport = nodemailer.createTransport(smtpPool({
service: 'gmail',
auth: {
xoauth2: generator
},
maxConnections: 5,
maxMessages: 10
}));
If you do not want to specify the hostname, port and security settings for a well known service, you can use it by its name (case insensitive).
smtpPool({
service: 'gmail',
auth: ..
});
See the list of all supported services here.
Close all connections with close()
transport.close();
MIT
FAQs
SMTP transport for Nodemailer
The npm package nodemailer-smtp-pool receives a total of 12,136 weekly downloads. As such, nodemailer-smtp-pool popularity was classified as popular.
We found that nodemailer-smtp-pool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.