X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_delete.php;h=58e6fe2c89a2544b129298facdebd911a6c439f3;hb=ed89e55b372449d697a8fe81c75d22205621b799;hp=3af351a89ae6178fb72dc38689293af5dce9d1d3;hpb=8c7dfc9960e03539b2ab145a37a3752cb8b31b4d;p=squirrelmail.git diff --git a/src/folders_delete.php b/src/folders_delete.php index 3af351a8..58e6fe2c 100644 --- a/src/folders_delete.php +++ b/src/folders_delete.php @@ -1,56 +1,139 @@ -"; - echo "$errorNumber : $errorString
"; - exit; - } - $serverInfo = fgets($imapConnection, 256); - - fputs($imapConnection, "1 login $username $key\n"); - $read = fgets($imapConnection, 1024); - echo $read; - - if (strpos($read, "NO")) { - error_username_password_incorrect(); - exit; - } - - // switch to the mailbox, and get the number of messages in it. - selectMailbox($imapConnection, $mailbox, $numMessages); - - // Marks the selected messages ad 'Deleted' - $j = 0; - $i = 0; - - while ($j < count($msg)) { - if ($msg[$i]) { - /** check if they would like to move it to the trash folder or not */ - if ($move_to_trash == true) { - createFolder($imapConnection, "user.$username.$folder"); - $success = copyMessages($imapConnection, $msg[$i], $msg[$i], $trash_folder); - if ($success == true) - setMessageFlag($imapConnection, $msg[$i], $msg[$i], "Deleted"); - } else { - setMessageFlag($imapConnection, $msg[$i], "Deleted"); - } - $j++; - } - $i++; - } - - if ($auto_expunge == true) - expungeBox($imapConnection, $mailbox, $numMessages); - - // Log out this session - fputs($imapConnection, "1 logout"); - - echo "

Return"; -?> +'._("Click here to go back").'.', $color); + exit; +} + +if ( sqgetGlobalVar('backingout', $tmp, SQ_POST) ) { + $location = get_location(); + header ("Location: $location/folders.php"); + exit; +} + +if( !sqgetGlobalVar('confirmed', $tmp, SQ_POST) ) { + displayPageHeader($color, 'None'); + + echo '
' . + html_tag( 'table', '', 'center', '', 'width="95%" border="0"' ) . + html_tag( 'tr', + html_tag( 'td', '' . _("Delete Folder") . '', 'center', $color[0] ) + ) . + html_tag( 'tr' ) . + html_tag( 'td', '', 'center', $color[4] ) . + sprintf(_("Are you sure you want to delete %s?"), imap_utf7_decode_local($mailbox)). + '

'. + + '\n" . + '\n". + '\n". + '


'; + + exit; +} +$imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); +$boxes = sqimap_mailbox_list ($imap_stream); +$numboxes = count($boxes); + +global $delete_folder; + +if (substr($mailbox, -1) == $delimiter) + $mailbox_no_dm = substr($mailbox, 0, strlen($mailbox) - 1); +else + $mailbox_no_dm = $mailbox; + +/** lets see if we CAN move folders to the trash.. otherwise, + ** just delete them **/ + +/* Courier IMAP doesn't like subfolders of Trash + * If global options say we can't move it into Trash + * If it's already a subfolder of trash, we'll have to delete it */ +if (strtolower($imap_server_type) == 'courier' || + (isset($delete_folder) && $delete_folder) || + eregi('^'.$trash_folder.'.+', $mailbox) ) +{ + $can_move_to_trash = FALSE; +} + +/* Otherwise, check if trash folder exits and support sub-folders */ +else { + for ($i = 0; $i < $numboxes; $i++) { + if ($boxes[$i]['unformatted'] == $trash_folder) { + $can_move_to_trash = !in_array('noinferiors', $boxes[$i]['flags']); + } + } +} + +/** First create the top node in the tree **/ +for ($i = 0; $i < $numboxes; $i++) { + if (($boxes[$i]['unformatted-dm'] == $mailbox) && (strlen($boxes[$i]['unformatted-dm']) == strlen($mailbox))) { + $foldersTree[0]['value'] = $mailbox; + $foldersTree[0]['doIHaveChildren'] = false; + continue; + } +} + +/* Now create the nodes for subfolders of the parent folder + You can tell that it is a subfolder by tacking the mailbox delimiter + on the end of the $mailbox string, and compare to that. */ +for ($i = 0; $i < $numboxes; $i++) { + if (substr($boxes[$i]['unformatted'], 0, strlen($mailbox_no_dm . $delimiter)) == ($mailbox_no_dm . $delimiter)) { + addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]['unformatted-dm'], $foldersTree); + } +} + +/** Lets start removing the folders and messages **/ +if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/ + walkTreeInPostOrderCreatingFoldersUnderTrash(0, $imap_stream, $foldersTree, $mailbox); + walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree); +} else { /** if they do NOT wish to move messages to the trash (or cannot)**/ + walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree); +} + +/** Log out this session **/ +sqimap_logout($imap_stream); + +$location = get_location(); +header ("Location: $location/folders.php?success=delete"); + +?>