From 9ac2a76a0469b06b77df86dee62b90c382de2fe7 Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Thu, 25 Apr 2024 09:37:07 +0200 Subject: [PATCH] ui: utils: fix defaultMailAuthor The default mail author for SMTP and Sendmail target is "Proxmox Backup Server - " and not "Proxmox Backup Server ()". 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 --- www/Utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/Utils.js b/www/Utils.js index 40e7cbff..1d7351a3 100644 --- a/www/Utils.js +++ b/www/Utils.js @@ -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',