Merge pull request #172 from zoff-music/fix/examples

Added examplefiles
This commit is contained in:
Kasper Rynning-Tønnesen
2017-10-17 14:00:12 +02:00
committed by GitHub
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
var cert = {
privateKey: 'XX',
certificate: 'XX',
ca: 'XX'
}
module.exports = cert;

View File

@@ -0,0 +1,15 @@
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;