ui: utils: fix defaultMailAuthor

The default mail author for SMTP and Sendmail target is
"Proxmox Backup Server - <hostname>" and not
"Proxmox Backup Server (<hostname>)".

This is just a cosmetical change which affects the empty text for the
'Author' field in the sendmail/smtp edit window.

Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
This commit is contained in:
Lukas Wagner 2024-04-25 09:37:07 +02:00 committed by Thomas Lamprecht
parent 725c7bb4fa
commit 9ac2a76a04

View File

@ -469,13 +469,13 @@ Ext.define('PBS.Utils', {
name: 'Sendmail',
ipanel: 'pmxSendmailEditPanel',
iconCls: 'fa-envelope-o',
defaultMailAuthor: 'Proxmox Backup Server ($hostname)',
defaultMailAuthor: 'Proxmox Backup Server - $hostname',
},
smtp: {
name: 'SMTP',
ipanel: 'pmxSmtpEditPanel',
iconCls: 'fa-envelope-o',
defaultMailAuthor: 'Proxmox Backup Server ($hostname)',
defaultMailAuthor: 'Proxmox Backup Server - $hostname',
},
gotify: {
name: 'Gotify',