possibility to specify sender address for froxlor as the admin-email address, custom or empty for system-default; fixes #1217

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2024-01-04 08:29:19 +01:00
parent afd110a6ed
commit 7cc4c9fedb
15 changed files with 52 additions and 13 deletions

View File

@@ -143,6 +143,18 @@ return [
'mandatory' => true,
'value' => old('admin_email', null, 'installation'),
],
'use_admin_email_as_sender' => [
'label' => lng('install.admin.use_admin_email_as_sender'),
'type' => 'checkbox',
'value' => '1',
'checked' => old('use_admin_email_as_sender', '1', 'installation'),
],
'sender_email' => [
'label' => lng('serversettings.adminmail.title'),
'placeholder' => lng('install.admin.use_autogenerated_email_as_sender'),
'type' => 'email',
'value' => old('sender_email', null, 'installation'),
],
]
],
'step3' => [