Commit 53cdb112 authored by Nick's avatar Nick

fix: replace mail pass unless changed (#1053)

parent 06250c4f
......@@ -12,7 +12,10 @@ module.exports = {
},
MailQuery: {
async config(obj, args, context, info) {
return WIKI.config.mail
return {
...WIKI.config.mail,
pass: WIKI.config.mail.pass.length > 0 ? '********' : ''
}
}
},
MailMutation: {
......@@ -48,7 +51,7 @@ module.exports = {
port: args.port,
secure: args.secure,
user: args.user,
pass: args.pass,
pass: (args.pass === '********') ? WIKI.config.mail.pass : args.pass,
useDKIM: args.useDKIM,
dkimDomainName: args.dkimDomainName,
dkimKeySelector: args.dkimKeySelector,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment