You've already forked obsidian-visualiser
Fix character first level being pickable twice and add mail proxy
This commit is contained in:
@@ -28,16 +28,18 @@ const transport = nodemailer.createTransport({
|
||||
pool: true,
|
||||
host: config.mail.host,
|
||||
port: config.mail.port,
|
||||
secure: true,
|
||||
secure: config.mail.port === "465",
|
||||
auth: {
|
||||
user: config.mail.user,
|
||||
pass: config.mail.passwd,
|
||||
},
|
||||
tls: { rejectUnauthorized: config.mail.port !== "465" },
|
||||
dkim: {
|
||||
domainName: domain,
|
||||
keySelector: selector,
|
||||
privateKey: dkim,
|
||||
}
|
||||
},
|
||||
proxy: config.mail.proxy,
|
||||
});
|
||||
|
||||
if(process.env.NODE_ENV === 'production')
|
||||
|
||||
Reference in New Issue
Block a user