summaryrefslogtreecommitdiff
path: root/program/lib
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-05-27 06:41:46 +0000
committerthomascube <thomas@roundcube.net>2008-05-27 06:41:46 +0000
commitbf0cb98701a616ea78ffe2579d9e2efa1ae9d3d2 (patch)
tree5742705a014d5c1f57557af6713c0462a495a575 /program/lib
parent05134125b2e639e62535944d05fe9b7796a7f176 (diff)
Moved RoundCube functionality from lib to rcube_imap class; removed debug log
Diffstat (limited to 'program/lib')
-rw-r--r--program/lib/imap.inc10
1 files changed, 1 insertions, 9 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc
index 8ea4fbd12..4456a229d 100644
--- a/program/lib/imap.inc
+++ b/program/lib/imap.inc
@@ -1907,9 +1907,7 @@ function iil_C_ModFlag(&$conn, $mailbox, $messages, $flag, $mod) {
if (iil_C_Select($conn, $mailbox)) {
$c = 0;
- $_line = "flg STORE $messages " . $mod . "FLAGS (" . $flag . ")\r\n";
- trigger_error($_line, E_USER_WARNING);
- fputs($fp, $_line);
+ fputs($fp, "flg STORE $messages " . $mod . "FLAGS (" . $flag . ")\r\n");
do {
$line=chop(iil_ReadLine($fp, 100));
if ($line[0] == '*') {
@@ -2048,8 +2046,6 @@ function iil_C_Search(&$conn, $folder, $criteria) {
}
function iil_C_Move(&$conn, $messages, $from, $to) {
- global $CONFIG;
-
$fp = $conn->fp;
if (!$from || !$to) {
@@ -2059,10 +2055,6 @@ function iil_C_Move(&$conn, $messages, $from, $to) {
if ($r==0) {
return iil_C_Delete($conn, $from, $messages);
}
- // Copy failed
- if (isset($CONFIG['delete_always']) && $CONFIG['delete_always'] === true) {
- return iil_C_Delete($conn, $from, $messages);
- }
return $r;
}