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