From c96fc8e91dacc0e5a215f3affd3dd11003798be4 Mon Sep 17 00:00:00 2001 From: andryyy Date: Sat, 15 Feb 2020 16:35:23 +0100 Subject: [PATCH] [Web] Add icon to indicate relayed domain --- data/web/js/site/mailbox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/web/js/site/mailbox.js b/data/web/js/site/mailbox.js index 36685d67..11a7fce8 100644 --- a/data/web/js/site/mailbox.js +++ b/data/web/js/site/mailbox.js @@ -255,6 +255,9 @@ jQuery(function($){ item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox); item.chkbox = ''; item.action = '
'; + if (item.backupmx_int == 1) { + item.domain_name = ' ' + item.domain_name; + } if (role == "admin") { item.action += ' ' + lang.edit + '' + ' ' + lang.remove + '';