mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-05 04:49:44 +01:00
Get the mail acl recursive folder working again
This commit is contained in:
parent
cc00102ef5
commit
d537853c54
@ -65,6 +65,7 @@ class mail_acl
|
|||||||
*/
|
*/
|
||||||
function edit(array $content=null ,$msg='')
|
function edit(array $content=null ,$msg='')
|
||||||
{
|
{
|
||||||
|
$tmpl = new etemplate_new('mail.acl');
|
||||||
if (!is_array($content))
|
if (!is_array($content))
|
||||||
{
|
{
|
||||||
$acc_id = $_GET['acc_id']?$_GET['acc_id']:$GLOBALS['egw_info']['user']['preferences']['mail']['ActiveProfileID'];
|
$acc_id = $_GET['acc_id']?$_GET['acc_id']:$GLOBALS['egw_info']['user']['preferences']['mail']['ActiveProfileID'];
|
||||||
@ -82,13 +83,19 @@ class mail_acl
|
|||||||
$account = emailadmin_account::read($acc_id, $account_id);
|
$account = emailadmin_account::read($acc_id, $account_id);
|
||||||
$this->imap = $account->imapServer(isset($account_id) ? (int)$account_id : false);
|
$this->imap = $account->imapServer(isset($account_id) ? (int)$account_id : false);
|
||||||
|
|
||||||
$tmpl = new etemplate_new('mail.acl');
|
|
||||||
$mailbox = $_GET['mailbox']? base64_decode($_GET['mailbox']): $content['mailbox'][0];
|
$mailbox = $_GET['mailbox']? base64_decode($_GET['mailbox']): $content['mailbox'][0];
|
||||||
if (empty($mailbox))
|
if (empty($mailbox))
|
||||||
{
|
{
|
||||||
$mailbox = $this->imap->isAdminConnection ? $this->imap->getUserMailboxString($this->imap->isAdminConnection) : 'INBOX';
|
$mailbox = $this->imap->isAdminConnection ? $this->imap->getUserMailboxString($this->imap->isAdminConnection) : 'INBOX';
|
||||||
}
|
}
|
||||||
|
if (!$this->imap->isAdminConnection)
|
||||||
|
{
|
||||||
|
$tmpl->setElementAttribute('mailbox', 'autocomplete_url', 'mail.mail_compose.ajax_searchFolder');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//Todo: Implement autocomplete_url function with admin stuffs consideration
|
||||||
|
}
|
||||||
// Unset the content if folder is changed, in order to read acl rights for new selected folder
|
// Unset the content if folder is changed, in order to read acl rights for new selected folder
|
||||||
if (!is_array($content['button']) && is_array($content['mailbox']) && !is_array($content['grid']['delete'])) unset($content);
|
if (!is_array($content['button']) && is_array($content['mailbox']) && !is_array($content['grid']['delete'])) unset($content);
|
||||||
|
|
||||||
@ -396,13 +403,13 @@ class mail_acl
|
|||||||
function getSubfolders($mailbox)
|
function getSubfolders($mailbox)
|
||||||
{
|
{
|
||||||
$delimiter = $this->imap->getDelimiter();
|
$delimiter = $this->imap->getDelimiter();
|
||||||
/* $nameSpace = $this->mail_bo->_getNameSpaces();
|
$nameSpace = $this->imap->getNameSpace();
|
||||||
$prefix = $this->mail_bo->getFolderPrefixFromNamespace($nameSpace, $mailbox);
|
$prefix = $this->imap->getFolderPrefixFromNamespace($nameSpace, $mailbox);
|
||||||
if (($subFolders = $this->mail_bo->getMailBoxesRecursive($mailbox, $delimiter, $prefix)))
|
if (($subFolders = $this->imap->getMailBoxesRecursive($mailbox, $delimiter, $prefix)))
|
||||||
{
|
{
|
||||||
return $subFolders;
|
return $subFolders;
|
||||||
}
|
}
|
||||||
else*/
|
else
|
||||||
{
|
{
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description value="Folder:"/>
|
<description value="Folder:"/>
|
||||||
<taglist id="mailbox" width="100%" autocomplete_url='mail.mail_compose.ajax_searchFolder' maxSelection="1" autocomplete_params='' allowFreeEntries="false" onchange='app.mail.acl_folderChange'/>
|
<taglist id="mailbox" width="100%" maxSelection="1" autocomplete_params='' allowFreeEntries="false" onchange='app.mail.acl_folderChange'/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description value="Rights:"/>
|
<description value="Rights:"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user