mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-01-18 16:24:23 +08:00
Fix missing mailbox on sender acl
This commit is contained in:
parent
d9a3e987e9
commit
a6d5bcecb7
@ -4816,7 +4816,8 @@ function mailbox_get_sender_acl_handles($mailbox) {
|
|||||||
':logged_in_as' => $mailbox,
|
':logged_in_as' => $mailbox,
|
||||||
':goto' => $mailbox
|
':goto' => $mailbox
|
||||||
));
|
));
|
||||||
while ($row = array_shift($rows)) {
|
$rows_mbox = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
||||||
|
while ($row = array_shift($rows_mbox)) {
|
||||||
if (filter_var($row['address'], FILTER_VALIDATE_EMAIL) && hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $row['address'])) {
|
if (filter_var($row['address'], FILTER_VALIDATE_EMAIL) && hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $row['address'])) {
|
||||||
$data['sender_acl_addresses']['selectable'][] = $row['address'];
|
$data['sender_acl_addresses']['selectable'][] = $row['address'];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user