]> git.proxmox.com Git - proxmox-backup.git/commitdiff
ui: utils: fix defaultMailAuthor
authorLukas Wagner <l.wagner@proxmox.com>
Thu, 25 Apr 2024 07:37:07 +0000 (09:37 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 25 Apr 2024 08:19:54 +0000 (10:19 +0200)
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>
www/Utils.js

index 40e7cbffbab6bcbbbc71145eeec74c2253aa6181..1d7351a324927f2046548ccc2b79c7b0c882a448 100644 (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',