return $cnt;
}
+/**
+ * Expunge specified message, updated $msgs and $msort
+ *
+ * Until Marc and I come up with a better way to maintain
+ * these stupid arrays, we'll use this wrapper function to
+ * remove the message with the matching UID .. the order
+ * won't be changed - the array element for the message
+ * will just be removed.
+ */
+function sqimap_mailbox_expunge_dmn($message_id)
+{
+ global $msgs, $msort, $sort, $imapConnection,
+ $mailbox, $uid_support, $mbx_response, $auto_expunge,
+ $sort, $allow_server_sort, $thread_sort_messages, $allow_thread_sort,
+ $username, $data_dir;
+
+ // Got to grab this out of prefs, since it isn't saved from mailbox_view.php
+ if ($allow_thread_sort) {
+ $thread_sort_messages = getPref($data_dir, $username, "thread_$mailbox",0);
+ }
+
+ for ($i = 0; $i < count($msort); $i++) {
+ if ($msgs[$i]['ID'] == $message_id) {
+ break;
+ }
+ }
+
+ unset($msgs[$i]);
+ unset($msort[$i]);
+
+ $msgs = array_values($msgs);
+ $msort = array_values($msort);
+
+ sqsession_register($msgs, 'msgs');
+ sqsession_register($msort, 'msort');
+
+ if ($auto_expunge) {
+ sqimap_mailbox_expunge($imapConnection, $mailbox, true);
+ }
+
+ // And after all that mucking around, update the sort list!
+ // Remind me why the hell we need those two arrays again?!
+ if ( $allow_thread_sort && $thread_sort_messages ) {
+ $server_sort_array = get_thread_sort($imapConnection);
+ } elseif ( $allow_server_sort ) {
+ $server_sort_array = sqimap_get_sort_order($imapConnection, $sort, $mbx_response);
+ } elseif ( $uid_support ) {
+ $server_sort_array = sqimap_get_php_sort_order($imapConnection, $mbx_response);
+ }
+
+}
+
/**
* Checks whether or not the specified mailbox exists
*/
}
/* end of get globals */
-global $uid_support, $sqimap_capabilities, $auto_expunge, $lastTargetMailbox;
+global $uid_support, $sqimap_capabilities, $lastTargetMailbox;
$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
* but only if delete_id was set
*/
if ( sqgetGlobalVar('delete_id', $delete_id, SQ_GET) ) {
-// sqimap_messages_delete($imapConnection, $delete_id, $delete_id, $mailbox);
+ sqimap_messages_delete($imapConnection, $delete_id, $delete_id, $mailbox);
-// if ($auto_expunge) {
-// sqimap_mailbox_expunge($imapConnection, $mailbox, true);
-// }
+ sqimap_mailbox_expunge_dmn($delete_id);
}
/**
if ( sqgetGlobalVar('move_id', $move_id, SQ_POST) &&
sqgetGlobalVar('targetMailbox', $targetMailbox, SQ_POST) ) {
// Move message
-// sqimap_messages_copy($imapConnection, $move_id, $move_id, $targetMailbox);
-// sqimap_messages_flag($imapConnection, $move_id, $move_id, 'Deleted', true);
+ sqimap_messages_copy($imapConnection, $move_id, $move_id, $targetMailbox);
+ sqimap_messages_flag($imapConnection, $move_id, $move_id, 'Deleted', true);
-// if ($auto_expunge) {
-// sqimap_mailbox_expunge($imapConnection, $mailbox, true);
-// }
+ sqimap_mailbox_expunge_dmn($move_id);
-// if ($targetMailbox != $lastTargetMailbox) {
-// $lastTargetMailbox = $targetMailbox;
-// sqsession_register('lastTargetMailbox' , $lastTargetMailbox);
-// }
+ if ($targetMailbox != $lastTargetMailbox) {
+ $lastTargetMailbox = $targetMailbox;
+ sqsession_register('lastTargetMailbox' , $lastTargetMailbox);
+ }
}