Commit 66010571 authored by Brian Hatchet's avatar Brian Hatchet :speech_balloon:

Covering Emi's MR changes since his off until Monday

1 merge request!21(feat): Email settings
Pipeline #106702099 passed with stage
in 1 minute and 2 seconds
......@@ -671,8 +671,8 @@ data:
'host' => {{ .Values.email.host | quote }},
'username' => {{ .Values.email.username | quote }},
'password' => {{ .Values.email.password | quote }},
'port' => {{ .Values.email.port }},
'auth' => {{ .Values.email.auth }},
'port' => {{ .Values.email.port | default 465 }},
'auth' => {{ .Values.email.auth | default true }},
'smtp_secure' => {{ .Values.email.smtp_secure | quote }}
]
]);
......
......@@ -307,10 +307,10 @@ email:
host:
username:
password:
port:
auth:
port: 465
auth: true
smtp_secure:
email_confirmation:
signing_key: 'changeme'
expiration: 172800
\ No newline at end of file
expiration: 172800
Please register or to comment