2010-06-09 20:36:13 +02:00
|
|
|
<?php
|
2010-08-19 17:51:55 +02:00
|
|
|
/**
|
2010-08-19 20:13:53 +02:00
|
|
|
* EGroupware EMailAdmin: Support for Cyrus IMAP
|
2010-08-19 17:51:55 +02:00
|
|
|
*
|
|
|
|
* @link http://www.stylite.de
|
|
|
|
* @package emailadmin
|
|
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
|
|
* @author Klaus Leithoff <kl@stylite.de>
|
|
|
|
* @author Lars Kneschke
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
include_once(EGW_SERVER_ROOT."/emailadmin/inc/class.defaultimap.inc.php");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages connection to Cyrus IMAP server
|
|
|
|
*/
|
|
|
|
class cyrusimap extends defaultimap
|
|
|
|
{
|
2010-08-19 20:13:53 +02:00
|
|
|
/**
|
|
|
|
* Capabilities of this class (pipe-separated): default, sieve, admin, logintypeemail
|
|
|
|
*/
|
|
|
|
const CAPABILITIES = 'default|sieve|admin|logintypeemail';
|
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
// mailbox delimiter
|
|
|
|
var $mailboxDelimiter = '.';
|
|
|
|
|
|
|
|
// mailbox prefix
|
|
|
|
var $mailboxPrefix = '';
|
|
|
|
|
|
|
|
var $enableCyrusAdmin = false;
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
var $cyrusAdminUsername;
|
|
|
|
|
|
|
|
var $cyrusAdminPassword;
|
|
|
|
|
2010-08-20 11:11:16 +02:00
|
|
|
/**
|
|
|
|
* Updates an account
|
|
|
|
*
|
|
|
|
* @param array $_hookValues only value for key 'account_lid' and 'new_passwd' is used
|
|
|
|
*/
|
2010-08-19 17:51:55 +02:00
|
|
|
function addAccount($_hookValues)
|
2010-06-09 20:36:13 +02:00
|
|
|
{
|
2010-08-19 17:51:55 +02:00
|
|
|
return $this->updateAccount($_hookValues);
|
|
|
|
}
|
|
|
|
|
2010-08-20 11:11:16 +02:00
|
|
|
/**
|
|
|
|
* Delete an account
|
|
|
|
*
|
|
|
|
* @param array $_hookValues only value for key 'account_lid' is used
|
|
|
|
*/
|
2010-08-19 17:51:55 +02:00
|
|
|
function deleteAccount($_hookValues)
|
|
|
|
{
|
|
|
|
if(!$this->enableCyrusAdmin) {
|
|
|
|
return false;
|
2010-06-09 20:36:13 +02:00
|
|
|
}
|
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
if($this->_connected === true) {
|
|
|
|
$this->disconnect();
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
// we need a admin connection
|
|
|
|
if(!$this->openConnection(true)) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
$username = $_hookValues['account_lid'];
|
|
|
|
|
|
|
|
$mailboxName = $this->getUserMailboxString($username);
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
// give the admin account the rights to delete this mailbox
|
|
|
|
if(PEAR::isError($this->setACL($mailboxName, $this->adminUsername, 'lrswipcda'))) {
|
2010-06-09 20:36:13 +02:00
|
|
|
$this->disconnect();
|
2010-08-19 17:51:55 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
if(PEAR::isError($this->deleteMailbox($mailboxName))) {
|
|
|
|
$this->disconnect();
|
|
|
|
return false;
|
2010-06-09 20:36:13 +02:00
|
|
|
}
|
2010-08-19 17:51:55 +02:00
|
|
|
|
|
|
|
$this->disconnect();
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
return true;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
/**
|
|
|
|
* Create mailbox string from given mailbox-name and user-name
|
2010-08-20 11:11:16 +02:00
|
|
|
*
|
2010-08-19 17:51:55 +02:00
|
|
|
* @param string $_username
|
|
|
|
* @param string $_folderName=''
|
|
|
|
* @return string utf-7 encoded (done in getMailboxName)
|
|
|
|
*/
|
|
|
|
function getUserMailboxString($_username, $_folderName='')
|
|
|
|
{
|
|
|
|
$nameSpaces = $this->getNameSpaces();
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
if(!isset($nameSpaces['others'])) {
|
|
|
|
return false;
|
2010-06-09 20:36:13 +02:00
|
|
|
}
|
2010-08-19 17:51:55 +02:00
|
|
|
$_username = $this->getMailBoxUserName($_username);
|
|
|
|
$mailboxString = $nameSpaces['others'][0]['name'] . strtolower($_username) . (!empty($_folderName) ? $nameSpaces['others'][0]['delimiter'] . $_folderName : '');
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
if($this->loginType == 'vmailmgr' || $this->loginType == 'email') {
|
|
|
|
$mailboxString .= '@'.$this->domainName;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
return $mailboxString;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-20 11:11:16 +02:00
|
|
|
/**
|
|
|
|
* returns information about a user
|
|
|
|
* currently only supported information is the current quota
|
|
|
|
*
|
|
|
|
* @param string $_username
|
|
|
|
* @return array userdata
|
|
|
|
*/
|
|
|
|
function getUserData($_username)
|
|
|
|
{
|
|
|
|
if($this->_connected === true) {
|
|
|
|
//error_log(__METHOD__."try to disconnect");
|
|
|
|
$this->disconnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->openConnection(true);
|
|
|
|
$userData = array();
|
|
|
|
|
|
|
|
if($quota = $this->getQuotaByUser($_username)) {
|
|
|
|
$userData['quotaLimit'] = $quota / 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->disconnect();
|
|
|
|
|
|
|
|
return $userData;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set information about a user
|
|
|
|
* currently only supported information is the current quota
|
|
|
|
*
|
|
|
|
* @param string $_username
|
|
|
|
* @param int $_quota
|
|
|
|
*/
|
2010-08-19 17:51:55 +02:00
|
|
|
function setUserData($_username, $_quota)
|
|
|
|
{
|
|
|
|
if(!$this->enableCyrusAdmin) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
if($this->_connected === true) {
|
2010-06-09 20:36:13 +02:00
|
|
|
$this->disconnect();
|
2010-08-19 17:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// create a admin connection
|
|
|
|
if(!$this->openConnection(true)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$mailboxName = $this->getUserMailboxString($_username);
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
if((int)$_quota > 0) {
|
|
|
|
// enable quota
|
|
|
|
$quota_value = $this->setStorageQuota($mailboxName, (int)$_quota*1024);
|
|
|
|
} else {
|
|
|
|
// disable quota
|
|
|
|
$quota_value = $this->setStorageQuota($mailboxName, -1);
|
2010-06-09 20:36:13 +02:00
|
|
|
}
|
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
$this->disconnect();
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
return true;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-20 11:11:16 +02:00
|
|
|
/**
|
|
|
|
* Updates an account
|
|
|
|
*
|
|
|
|
* @param array $_hookValues only value for key 'account_lid' and 'new_passwd' is used
|
|
|
|
*/
|
2010-08-19 17:51:55 +02:00
|
|
|
function updateAccount($_hookValues)
|
|
|
|
{
|
|
|
|
if(!$this->enableCyrusAdmin) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#_debug_array($_hookValues);
|
|
|
|
$username = $_hookValues['account_lid'];
|
|
|
|
if(isset($_hookValues['new_passwd'])) {
|
|
|
|
$userPassword = $_hookValues['new_passwd'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->_connected === true) {
|
2010-06-09 20:36:13 +02:00
|
|
|
$this->disconnect();
|
2010-08-19 17:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// we need a admin connection
|
|
|
|
if(!$this->openConnection(true)) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-06-09 20:36:13 +02:00
|
|
|
|
2010-08-19 17:51:55 +02:00
|
|
|
// create the mailbox, with the account_lid, as it is passed from the hook values (gets transformed there if needed)
|
|
|
|
$mailboxName = $this->getUserMailboxString($username, $mailboxName);
|
|
|
|
// make sure we use the correct username here.
|
|
|
|
$username = $this->getMailBoxUserName($username);
|
|
|
|
$folderInfo = $this->getMailboxes('', $mailboxName, true);
|
|
|
|
if(empty($folderInfo)) {
|
|
|
|
if(!PEAR::isError($this->createMailbox($mailboxName))) {
|
|
|
|
if(PEAR::isError($this->setACL($mailboxName, $username, "lrswipcda"))) {
|
|
|
|
# log error message
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->disconnect();
|
|
|
|
}
|
|
|
|
}
|