f5acbb9cd2e1e7d4db69f645614d19f098b99a1e
[squirrelmail.git] / src / move_messages.php
1 <?php
2
3 /**
4 * move_messages.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Enables message moving between folders on the IMAP server.
10 *
11 * $Id$
12 */
13
14 /* Path for SquirrelMail required files. */
15 define('SM_PATH','../');
16
17 /* SquirrelMail required files. */
18 require_once(SM_PATH . 'include/validate.php');
19 require_once(SM_PATH . 'functions/display_messages.php');
20 require_once(SM_PATH . 'functions/imap.php');
21 require_once(SM_PATH . 'functions/html.php');
22
23 global $compose_new_win;
24
25 function putSelectedMessagesIntoString($msg) {
26 $j = 0;
27 $i = 0;
28 $firstLoop = true;
29 // If they have selected nothing msg is size one still, but will
30 // be an infinite loop because we never increment j. so check to
31 // see if msg[0] is set or not to fix this.
32 while (($j < count($msg)) && ($msg[0])) {
33 if ($msg[$i]) {
34 if ($firstLoop != true) {
35 $selectedMessages .= "&amp;";
36 } else {
37 $firstLoop = false;
38 }
39 $selectedMessages .= "selMsg[$j]=$msg[$i]";
40 $j++;
41 }
42 $i++;
43 }
44 }
45
46 function attachSelectedMessages($msg, $imapConnection) {
47 global $username, $attachment_dir,
48 $data_dir, $composesession, $uid_support,
49 $msgs, $thread_sort_messages, $allow_server_sort, $show_num,
50 $compose_messages;
51
52
53 if (!isset($compose_messages)) {
54 $compose_messages = array();
55 sqsession_register($compose_messages,'compose_messages');
56 }
57
58 if (!isset($composesession) ) {
59 $composesession = 1;
60 sqsession_register($composesession,'composesession');
61 } else {
62 $composesession++;
63 }
64
65 $hashed_attachment_dir = getHashedDir($username, $attachment_dir, $composesession);
66
67 if ($thread_sort_messages || $allow_server_sort) {
68 $start_index=0;
69 } else {
70 $start_index = ($startMessage-1) * $show_num;
71 }
72
73 $i = 0;
74 $j = 0;
75 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
76
77 $composeMessage = new Message();
78 $rfc822_header = new Rfc822Header();
79 $composeMessage->rfc822_header = $rfc822_header;
80 $composeMessage->reply_rfc822_header = '';
81
82 while ($j < count($msg)) {
83 if (isset($msg[$i])) {
84 $id = $msg[$i];
85 $body_a = sqimap_run_command($imapConnection, "FETCH $id RFC822",true, $response, $readmessage, $uid_support);
86 if ($response = 'OK') {
87 $k = $i + $start_index;
88 $subject = $msgs[$k]['SUBJECT'];
89
90 array_shift($body_a);
91 $body = implode('', $body_a);
92 $body .= "\r\n";
93
94 $localfilename = GenerateRandomString(32, 'FILE', 7);
95 $full_localfilename = "$hashed_attachment_dir/$localfilename";
96
97 $fp = fopen( $full_localfilename, 'wb');
98 fwrite ($fp, $body);
99 fclose($fp);
100 $composeMessage->initAttachment('message/rfc822',$subject.'.eml',
101 $full_localfilename);
102 }
103 $j++;
104 }
105 $i++;
106 }
107 $compose_messages[$composesession] = $composeMessage;
108 sqsession_register($compose_messages,'compose_messages');
109 return $composesession;
110 }
111
112
113 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
114 $mbx_response=sqimap_mailbox_select($imapConnection, $mailbox);
115
116 $location = set_url_var($location,'composenew');
117 $location = set_url_var($location,'composesession');
118 $location = set_url_var($location,'session');
119
120 /* remember changes to mailbox setting */
121 if (!isset($lastTargetMailbox)) {
122 $lastTargetMailbox = 'INBOX';
123 }
124 if ($targetMailbox != $lastTargetMailbox) {
125 $lastTargetMailbox = $targetMailbox;
126 session_register('lastTargetMailbox');
127 }
128
129 // expunge-on-demand if user isn't using move_to_trash or auto_expunge
130 if(isset($expungeButton)) {
131 $cnt = sqimap_mailbox_expunge($imapConnection, $mailbox, true);
132 if (($startMessage+$cnt-1) >= $mbx_response['EXISTS']) {
133 if ($startMessage > $show_num) {
134 $location = set_url_var($location,'startMessage',$startMessage-$show_num);
135 } else {
136 $location = set_url_var($location,'startMessage',1);
137 }
138 }
139 header("Location: $location");
140 } elseif(isset($undeleteButton)) {
141 // undelete messages if user isn't using move_to_trash or auto_expunge
142 if (is_array($msg) == 1) {
143 // Removes \Deleted flag from selected messages
144 $j = 0;
145 $i = 0;
146 // If they have selected nothing msg is size one still, but will be an infinite
147 // loop because we never increment j. so check to see if msg[0] is set or not to fix this.
148 while ($j < count($msg)) {
149 if ($msg[$i]) {
150 sqimap_messages_remove_flag ($imapConnection, $msg[$i], $msg[$i], "Deleted", true);
151 $j++;
152 }
153 $i++;
154 }
155 header ("Location: $location");
156 } else {
157 displayPageHeader($color, $mailbox);
158 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
159 }
160 } elseif (!isset($moveButton)) {
161 // If the delete button was pressed, the moveButton variable will not be set.
162 if (is_array($msg) == 1) {
163 // Marks the selected messages as 'Deleted'
164 $j = 0;
165 $i = 0;
166 // If they have selected nothing msg is size one still, but will be an infinite
167 // loop because we never increment j. so check to see if msg[0] is set or not to fix this.
168 while ($j < count($msg)) {
169 if (isset($msg[$i])) {
170 if (isset($markRead)) {
171 sqimap_messages_flag($imapConnection, $msg[$i], $msg[$i], "Seen", true);
172 } else if (isset($markUnread)) {
173 sqimap_messages_remove_flag($imapConnection, $msg[$i], $msg[$i], "Seen", true);
174 } else if (isset($attache)) {
175 break;
176 } else {
177 sqimap_messages_delete($imapConnection, $msg[$i], $msg[$i], $mailbox);
178 }
179 $j++;
180 }
181 $i++;
182 }
183 if ($auto_expunge) {
184 $cnt = sqimap_mailbox_expunge($imapConnection, $mailbox, true);
185 } else {
186 $cnt = 0;
187 }
188 if (isset($attache)) {
189 $composesession = attachSelectedMessages($msg, $imapConnection);
190 if ($compose_new_win) {
191 header ("Location: $location&composenew=1&session=$composesession");
192 } else {
193 $location = str_replace('search.php','compose.php',$location);
194 $location = str_replace('right_main.php','compose.php',$location);
195 header ("Location: $location&session=$composesession");
196 }
197 } else {
198 if (($startMessage+$cnt-1) >= $mbx_response['EXISTS']) {
199 if ($startMessage > $show_num) {
200 $location = set_url_var($location,'startMessage',$startMessage-$show_num);
201 } else {
202 $location = set_url_var($location,'startMessage',1);
203 }
204 }
205 header ("Location: $location");
206 }
207 } else {
208 displayPageHeader($color, $mailbox);
209 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
210 }
211 } else { // Move messages
212 // lets check to see if they selected any messages
213 if (is_array($msg) == 1) {
214 $j = 0;
215 $i = 0;
216 // If they have selected nothing msg is size one still, but will be an infinite
217 // loop because we never increment j. so check to see if msg[0] is set or not to fix this.
218 $cnt = count($msg);
219 while ($j < $cnt) {
220 if (isset($msg[$i])) {
221 /** check if they would like to move it to the trash folder or not */
222 sqimap_messages_copy($imapConnection, $msg[$i], $msg[$i], $targetMailbox);
223 sqimap_messages_flag($imapConnection, $msg[$i], $msg[$i], "Deleted", true);
224 $j++;
225 }
226 $i++;
227 }
228 if ($auto_expunge) {
229 $cnt = sqimap_mailbox_expunge($imapConnection, $mailbox, true);
230 } else {
231 $cnt = 0;
232 }
233
234 if (($startMessage+$cnt-1) >= $mbx_response['EXISTS']) {
235 if ($startMessage > $show_num) {
236 $location = set_url_var($location,'startMessage',$startMessage-$show_num);
237 } else {
238 $location = set_url_var($location,'startMessage',1);
239 }
240 }
241 header ("Location: $location");
242 } else {
243 displayPageHeader($color, $mailbox);
244 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
245 }
246 }
247 // Log out this session
248 sqimap_logout($imapConnection);
249
250 ?>
251 </BODY></HTML>