1
0
Fork 0

Add option to disable starttls

This commit is contained in:
Chocobozzz 2018-03-22 16:12:52 +01:00
parent a38b297d90
commit bebf2d89d3
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
6 changed files with 6 additions and 1 deletions

View File

@ -25,6 +25,7 @@ smtp:
username: null
password: null
tls: true
disable_starttls: false
ca_file: null # Used for self signed certificates
from_address: 'admin@example.com'

View File

@ -26,6 +26,7 @@ smtp:
username: null
password: null
tls: true
disable_starttls: false
ca_file: null # Used for self signed certificates
from_address: 'admin@example.com'

View File

@ -12,6 +12,7 @@ smtp:
hostname: null
port: 1025
tls: false
disable_starttls: true
from_address: 'test-admin@localhost'
username: null
password: null

View File

@ -106,6 +106,7 @@ const CONFIG = {
USERNAME: config.get<string>('smtp.username'),
PASSWORD: config.get<string>('smtp.password'),
TLS: config.get<boolean>('smtp.tls'),
DISABLE_STARTTLS: config.get<boolean>('smtp.disable_starttls'),
CA_FILE: config.get<string>('smtp.ca_file'),
FROM_ADDRESS: config.get<string>('smtp.from_address')
},

View File

@ -46,7 +46,7 @@ class Emailer {
secure: CONFIG.SMTP.TLS,
debug: CONFIG.LOG.LEVEL === 'debug',
logger: bunyanLogger as any,
ignoreTLS: isTestInstance() || CONFIG.SMTP.HOSTNAME === 'localhost' || CONFIG.SMTP.HOSTNAME === '127.0.0.1',
ignoreTLS: CONFIG.SMTP.DISABLE_STARTTLS,
tls,
auth
})

View File

@ -28,6 +28,7 @@ smtp:
username: null
password: null
tls: true
disable_starttls: false
ca_file: null # Used for self signed certificates
from_address: 'admin@example.com'