2014-11-06 17:54:33 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Addressbook - Univention Backend
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
|
|
* @package addressbook
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-02-14 13:56:28 +01:00
|
|
|
* Univention backend for addressbook
|
2014-11-06 17:54:33 +01:00
|
|
|
*
|
2015-02-14 13:56:28 +01:00
|
|
|
* Different mail attribute is only difference to LDAP backend
|
2014-11-06 17:54:33 +01:00
|
|
|
*/
|
|
|
|
class addressbook_univention extends addressbook_ldap
|
|
|
|
{
|
2015-02-14 13:56:28 +01:00
|
|
|
function __construct($ldap_config = null, $ds = null)
|
|
|
|
{
|
|
|
|
$this->schema2egw['univentionmail'] = array(
|
|
|
|
'email' => accounts_univention::MAIL_ATTR,
|
|
|
|
);
|
|
|
|
parent::__construct($ldap_config, $ds);
|
|
|
|
}
|
2014-11-06 17:54:33 +01:00
|
|
|
}
|