...
 
Commits (2)
......@@ -666,6 +666,17 @@ data:
]
]);
$CONFIG->set('email', [
'smtp' => [
'host' => {{ .Values.email.host | quote }},
'username' => {{ .Values.email.username | quote }},
'password' => {{ .Values.email.password | quote }},
'port' => {{ .Values.email.port | default 465 }},
'auth' => {{ .Values.email.auth | default true }},
'smtp_secure' => {{ .Values.email.smtp_secure | quote }}
]
]);
$CONFIG->set('email_confirmation', [
'signing_key' => '{{ .Values.email_confirmation.signing_key }}',
'expiration' => {{ .Values.email_confirmation.expiration }},
......
......@@ -303,6 +303,14 @@ max_daily_boost_views: 10000
jwtsecret: 'changeme'
email:
host:
username:
password:
port: 465
auth: true
smtp_secure:
email_confirmation:
signing_key: 'changeme'
expiration: 172800
\ No newline at end of file
expiration: 172800