improved imap restore

This commit is contained in:
SJ
2014-06-05 13:32:22 +02:00
parent 34db7522d2
commit 5afb3f4f72
3 changed files with 6 additions and 5 deletions

View File

@ -25,7 +25,7 @@ class ControllerMessageRestore extends Controller {
$rcpt = array();
if(ENABLE_IMAP_AUTH == 1) {
if(RESTORE_OVER_IMAP == 1) {
require_once 'Zend/Mail/Protocol/Imap.php';
require_once 'Zend/Mail/Storage/Imap.php';
}
@ -71,7 +71,7 @@ class ControllerMessageRestore extends Controller {
$this->model_search_message->remove_journal($msg);
if(ENABLE_IMAP_AUTH == 1) {
if(RESTORE_OVER_IMAP == 1) {
if($this->model_mail_mail->connect_imap()) {
$x = $this->imap->append('INBOX', $msg);
$this->model_mail_mail->disconnect_imap();