We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7712cac + baef22c commit 3d7c50eCopy full SHA for 3d7c50e
web/edit/mail/index.php
@@ -22,7 +22,11 @@
22
// List mail domain
23
if ((!empty($_GET['domain'])) && (empty($_GET['account']))) {
24
$v_domain = $_GET['domain'];
25
-
+
26
+ exec(HESTIA_CMD."v-list-sys-webmail json", $output, $return_var);
27
+ $webmail_clients = json_decode(implode('', $output), true);
28
+ unset($output);
29
30
exec(HESTIA_CMD."v-list-mail-domain ".$user." ".escapeshellarg($v_domain)." json", $output, $return_var);
31
$data = json_decode(implode('', $output), true);
32
check_return_code_redirect($return_var, $output, '/list/mail/');
0 commit comments