Files
zoff/server/mailconfig.example.js
Kasper Rynning-Tønnesen a9b3adb368 Added examplefiles
2017-10-17 13:59:38 +02:00

16 lines
253 B
JavaScript

var mail_config = {
port: 587,
host: 'smtp.example.com',
auth: {
user: 'ex@amp.le',
pass: 'example'
},
secure: true,
authMethod: 'PLAIN',
tls: {
ciphers:'SSLv3'
}
};
module.exports = mail_config;