egroupware_official/emailadmin/inc/class.defaultimap.inc.php
Lars Kneschke e64c9f8545 fixed creation of new folders with special chars
fixed renaming of folders
2004-09-01 20:52:36 +00:00

107 lines
2.8 KiB
PHP

<?php
/***************************************************************************\
* EGroupWare - EMailAdmin *
* http://www.egroupware.org *
* Written by : Lars Kneschke [lkneschke@linux-at-work.de] *
* ------------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\***************************************************************************/
/* $Id$ */
class defaultimap
{
var $profileData;
function defaultimap($_profileData)
{
$this->profileData = $_profileData;
if (function_exists('mb_convert_encoding')) $this->mbAvailable = TRUE;
}
function addAccount($_hookValues)
{
return true;
}
function deleteAccount($_hookValues)
{
return true;
}
function encodeFolderName($_folderName)
{
if($this->mbAvailable)
{
return mb_convert_encoding( $_folderName, "UTF7-IMAP", $GLOBALS['phpgw']->translation->charset());
}
// if not
// can only encode from ISO 8559-1
return imap_utf7_encode($_folderName);
}
function getMailboxString($_folderName='')
{
if($this->profileData['imapTLSEncryption'] == 'yes' &&
$this->profileData['imapTLSAuthentication'] == 'yes')
{
if(empty($this->profileData['imapPort']))
$port = '993';
else
$port = $this->profileData['imapPort'];
$mailboxString = sprintf("{%s:%s/imap/ssl}%s",
$this->profileData['imapServer'],
$port,
$_folderName);
}
// don't check cert
elseif($this->profileData['imapTLSEncryption'] == 'yes')
{
if(empty($this->profileData['imapPort']))
$port = '993';
else
$port = $this->profileData['imapPort'];
$mailboxString = sprintf("{%s:%s/imap/ssl/novalidate-cert}%s",
$this->profileData['imapServer'],
$port,
$_folderName);
}
// no tls
else
{
if(empty($this->profileData['imapPort']))
$port = '143';
else
$port = $this->profileData['imapPort'];
if($this->profileData['imapoldcclient'] == 'yes')
{
$mailboxString = sprintf("{%s:%s/imap}%s",
$this->profileData['imapServer'],
$port,
$_folderName);
}
else
{
$mailboxString = sprintf("{%s:%s/imap/notls}%s",
$this->profileData['imapServer'],
$port,
$_folderName);
}
}
return $this->encodeFolderName($mailboxString);
}
function updateAccount($_hookValues)
{
return true;
}
}
?>