fixed message deleting problem
[squirrelmail.git] / src / move_messages.php
CommitLineData
59177427 1<?php
2a32fc83 2 session_start();
3
d068c0ec 4 if (!isset($config_php))
5 include("../config/config.php");
6 if (!isset($strings_php))
7 include("../functions/strings.php");
8 if (!isset($page_header_php))
9 include("../functions/page_header.php");
10 if (!isset($display_messages_php))
11 include("../functions/display_messages.php");
12 if (!isset($imap_php))
13 include("../functions/imap.php");
b40316f9 14
d3cdb279 15 include("../src/load_prefs.php");
16
5479d709 17// echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
213b188d 18
dd88d31f 19 function putSelectedMessagesIntoString($msg) {
05207a68 20 $j = 0;
21 $i = 0;
dd88d31f 22 $firstLoop = true;
2d7d3c2a 23
d068c0ec 24 // If they have selected nothing msg is size one still, but will
25 // be an infinite loop because we never increment j. so check to
26 // see if msg[0] is set or not to fix this.
2d7d3c2a 27 while (($j < count($msg)) && ($msg[0])) {
05207a68 28 if ($msg[$i]) {
dd88d31f 29 if ($firstLoop != true)
30 $selectedMessages .= "&";
31 else
32 $firstLoop = false;
33
34 $selectedMessages .= "selMsg[$j]=$msg[$i]";
35
05207a68 36 $j++;
b40316f9 37 }
05207a68 38 $i++;
b40316f9 39 }
dd88d31f 40 }
e2370222 41
e1469126 42 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
813eba2f 43 sqimap_mailbox_select($imapConnection, $mailbox);
dd88d31f 44
45 // If the delete button was pressed, the moveButton variable will not be set.
46 if (!$moveButton) {
dd88d31f 47 if (is_array($msg) == 1) {
48 // Marks the selected messages ad 'Deleted'
49 $j = 0;
50 $i = 0;
2d7d3c2a 51
dd88d31f 52 // If they have selected nothing msg is size one still, but will be an infinite
53 // loop because we never increment j. so check to see if msg[0] is set or not to fix this.
54 while ($j < count($msg)) {
55 if ($msg[$i]) {
813eba2f 56 sqimap_messages_delete($imapConnection, $msg[$i], $msg[$i], $mailbox);
dd88d31f 57 $j++;
2d7d3c2a 58 }
dd88d31f 59 $i++;
2d7d3c2a 60 }
d2f34a3d 61 if ($auto_expunge)
62 sqimap_mailbox_expunge($imapConnection, $mailbox);
5479d709 63
64 if ($auto_forward) {
9f2215a1 65 header ("Location: right_main.php");
5479d709 66 } else {
67 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
68 displayPageHeader($color, $mailbox);
69 messages_deleted_message($mailbox, $sort, $startMessage, $color);
70 }
dd88d31f 71 } else {
5479d709 72 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
73 displayPageHeader($color, $mailbox);
a6668eb2 74 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
dd88d31f 75 }
76 } else { // Move messages
dd88d31f 77 // lets check to see if they selected any messages
78 if (is_array($msg) == 1) {
79 $j = 0;
80 $i = 0;
81
82 // If they have selected nothing msg is size one still, but will be an infinite
83 // loop because we never increment j. so check to see if msg[0] is set or not to fix this.
84 while ($j < count($msg)) {
85 if ($msg[$i]) {
86 /** check if they would like to move it to the trash folder or not */
8b673ac1 87 sqimap_messages_copy($imapConnection, $msg[$i], $msg[$i], $targetMailbox);
88 sqimap_messages_flag($imapConnection, $msg[$i], $msg[$i], "Deleted");
dd88d31f 89 $j++;
90 }
91 $i++;
92 }
93 if ($auto_expunge == true)
d2f34a3d 94 sqimap_mailbox_expunge($imapConnection, $mailbox);
de80e95e 95
5479d709 96 if ($auto_forward) {
9f2215a1 97 header ("Location: right_main.php");
5479d709 98 } else {
99 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
100 displayPageHeader($color, $mailbox);
101 messages_moved_message($mailbox, $sort, $startMessage, $color);
102 }
dd88d31f 103 } else {
5479d709 104 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
105 displayPageHeader($color, $mailbox);
a6668eb2 106 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
2d7d3c2a 107 }
b40316f9 108 }
109
b40316f9 110 // Log out this session
813eba2f 111 sqimap_logout($imapConnection);
b40316f9 112
2aa12d5e 113?>
aa32c5e4 114</BODY></HTML>