| | |
| | | } |
| | | |
| | | if (!$protected) { |
| | | $opts = $IMAP->mailbox_options($folder['id']); |
| | | $noselect = in_array('\\Noselect', $opts); |
| | | $attrs = $IMAP->mailbox_attributes($folder['id']); |
| | | $noselect = in_array('\\Noselect', $attrs); |
| | | } |
| | | |
| | | $disabled = (($protected && $subscribed) || $noselect); |
| | |
| | | if (!$disabled && $folder['virtual'] && $folder['level'] == 0 && !empty($namespace)) { |
| | | $fname = $folder['id'] . $delimiter; |
| | | foreach ($namespace as $ns) { |
| | | foreach ($ns as $item) { |
| | | if ($item[0] === $fname) { |
| | | $disabled = true; |
| | | break 2; |
| | | if (is_array($ns)) { |
| | | foreach ($ns as $item) { |
| | | if ($item[0] === $fname) { |
| | | $disabled = true; |
| | | break 2; |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | } |
| | | } |
| | | } |
| | | // check if the folder is shared, then disable subscription option on it |
| | | if (!$disabled && $folder['virtual'] && !empty($namespace)) { |
| | | // check if the folder is shared, then disable subscription option on it (if not subscribed already) |
| | | if (!$disabled && !$subscribed && $folder['virtual'] && !empty($namespace)) { |
| | | $tmp_ns = array_merge((array)$namespace['other'], (array)$namespace['shared']); |
| | | foreach ($tmp_ns as $item) { |
| | | if (strpos($folder['id'], $item[0]) === 0) { |