mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 05:11:34 +02:00
[web] fix nodemailer config for tls GitOrigin-RevId: 6470a57bc66a89d463ca11f0f27e864a8cd3f61a
130 lines
3.5 KiB
JavaScript
130 lines
3.5 KiB
JavaScript
const { callbackify } = require('util')
|
|
const logger = require('@overleaf/logger')
|
|
const metrics = require('@overleaf/metrics')
|
|
const Settings = require('@overleaf/settings')
|
|
const nodemailer = require('nodemailer')
|
|
const sesTransport = require('nodemailer-ses-transport')
|
|
const OError = require('@overleaf/o-error')
|
|
const { RateLimiter } = require('../../infrastructure/RateLimiter')
|
|
const _ = require('lodash')
|
|
|
|
const EMAIL_SETTINGS = Settings.email || {}
|
|
|
|
module.exports = {
|
|
sendEmail: callbackify(sendEmail),
|
|
promises: {
|
|
sendEmail,
|
|
},
|
|
}
|
|
|
|
const client = getClient()
|
|
|
|
const rateLimiter = new RateLimiter('send_email', {
|
|
points: 100,
|
|
duration: 3 * 60 * 60,
|
|
})
|
|
|
|
function getClient() {
|
|
let client
|
|
if (EMAIL_SETTINGS.parameters) {
|
|
const emailParameters = EMAIL_SETTINGS.parameters
|
|
if (emailParameters.AWSAccessKeyID || EMAIL_SETTINGS.driver === 'ses') {
|
|
logger.debug('using aws ses for email')
|
|
client = nodemailer.createTransport(sesTransport(emailParameters))
|
|
} else if (emailParameters.sendgridApiKey) {
|
|
throw new OError(
|
|
'sendgridApiKey configuration option is deprecated, use SMTP instead'
|
|
)
|
|
} else if (emailParameters.MandrillApiKey) {
|
|
throw new OError(
|
|
'MandrillApiKey configuration option is deprecated, use SMTP instead'
|
|
)
|
|
} else {
|
|
logger.debug('using smtp for email')
|
|
const smtp = _.pick(
|
|
emailParameters,
|
|
'host',
|
|
'port',
|
|
'secure',
|
|
'auth',
|
|
'ignoreTLS',
|
|
'tls',
|
|
'logger',
|
|
'name'
|
|
)
|
|
client = nodemailer.createTransport(smtp)
|
|
}
|
|
} else {
|
|
logger.warn(
|
|
'Email transport and/or parameters not defined. No emails will be sent.'
|
|
)
|
|
client = {
|
|
async sendMail(options) {
|
|
logger.info({ options }, 'Would send email if enabled.')
|
|
},
|
|
}
|
|
}
|
|
return client
|
|
}
|
|
|
|
async function sendEmail(options, emailType) {
|
|
try {
|
|
const canContinue = await checkCanSendEmail(options)
|
|
metrics.inc('email_status', {
|
|
status: canContinue ? 'sent' : 'rate_limited',
|
|
path: emailType,
|
|
})
|
|
if (!canContinue) {
|
|
logger.debug(
|
|
{
|
|
sendingUserId: options.sendingUser_id,
|
|
to: options.to,
|
|
subject: options.subject,
|
|
canContinue,
|
|
},
|
|
'rate limit hit for sending email, not sending'
|
|
)
|
|
throw new OError('rate limit hit sending email')
|
|
}
|
|
metrics.inc('email')
|
|
const sendMailOptions = {
|
|
to: options.to,
|
|
from: EMAIL_SETTINGS.fromAddress || '',
|
|
subject: options.subject,
|
|
html: options.html,
|
|
text: options.text,
|
|
replyTo: options.replyTo || EMAIL_SETTINGS.replyToAddress,
|
|
socketTimeout: 30 * 1000,
|
|
}
|
|
if (EMAIL_SETTINGS.textEncoding != null) {
|
|
sendMailOptions.textEncoding = EMAIL_SETTINGS.textEncoding
|
|
}
|
|
if (options.category) {
|
|
// category support for sendgrid
|
|
sendMailOptions.headers = {
|
|
'X-SMTPAPI': JSON.stringify({ category: options.category }),
|
|
}
|
|
}
|
|
await client.sendMail(sendMailOptions)
|
|
} catch (err) {
|
|
throw new OError('error sending message').withCause(err)
|
|
}
|
|
}
|
|
|
|
async function checkCanSendEmail(options) {
|
|
if (options.sendingUser_id == null) {
|
|
// email not sent from user, not rate limited
|
|
return true
|
|
}
|
|
try {
|
|
await rateLimiter.consume(options.sendingUser_id, 1, { method: 'userId' })
|
|
} catch (err) {
|
|
if (err instanceof Error) {
|
|
throw err
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|