Added examplefiles

This commit is contained in:
Kasper Rynning-Tønnesen
2017-10-17 13:59:38 +02:00
parent 0f6e9f8161
commit a9b3adb368
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;