mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-07-23 23:18:23 +00:00
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:
parent
725c7bb4fa
commit
9ac2a76a04
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user