The OAuth2 authentication for SMTP is made opt-in in proxmox-widget-toolkit to allow introducing it repo-by-repo.
Signed-off-by: Arthur Bied-Charreton <[email protected]> --- www/manager6/Utils.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js index 2992f655..9735184e 100644 --- a/www/manager6/Utils.js +++ b/www/manager6/Utils.js @@ -2185,5 +2185,15 @@ Ext.define('PVE.Utils', { replication: gettext('Replication job notifications'), fencing: gettext('Node fencing notifications'), }); + + Proxmox.Schema.overrideEndpointTypes({ + smtp: { + name: 'SMTP', + ipanel: 'pmxSmtpEditPanel', + iconCls: 'fa-envelope-o', + defaultMailAuthor: 'Proxmox VE', + enableOAuth2: true, + }, + }); }, }); -- 2.47.3
