e236174547871c2956b80770c2f3d0120a42d144
[squirrelmail.git] / src / move_messages.php
1 <?
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");
12
13 include("../src/load_prefs.php");
14
15 // echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
16
17 function putSelectedMessagesIntoString($msg) {
18 $j = 0;
19 $i = 0;
20 $firstLoop = true;
21
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.
25 while (($j < count($msg)) && ($msg[0])) {
26 if ($msg[$i]) {
27 if ($firstLoop != true)
28 $selectedMessages .= "&";
29 else
30 $firstLoop = false;
31
32 $selectedMessages .= "selMsg[$j]=$msg[$i]";
33
34 $j++;
35 }
36 $i++;
37 }
38 }
39
40 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
41 sqimap_mailbox_select($imapConnection, $mailbox);
42
43 // If the delete button was pressed, the moveButton variable will not be set.
44 if (!$moveButton) {
45 // displayPageHeader($color, $mailbox);
46 if (is_array($msg) == 1) {
47 // Marks the selected messages ad 'Deleted'
48 $j = 0;
49 $i = 0;
50
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]) {
55 sqimap_messages_delete($imapConnection, $msg[$i], $msg[$i], $mailbox);
56 $j++;
57 }
58 $i++;
59 }
60 if ($auto_expunge)
61 sqimap_mailbox_expunge($imapConnection, $mailbox);
62
63 if ($auto_forward) {
64 header ("Location: right_main.php");
65 } else {
66 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
67 displayPageHeader($color, $mailbox);
68 messages_deleted_message($mailbox, $sort, $startMessage, $color);
69 }
70 } else {
71 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
72 displayPageHeader($color, $mailbox);
73 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
74 }
75 } else { // Move messages
76 // displayPageHeader($color, $mailbox);
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 */
87 sqimap_messages_copy($imapConnection, $msg[$i], $msg[$i], $targetMailbox);
88 sqimap_messages_flag($imapConnection, $msg[$i], $msg[$i], "Deleted");
89 $j++;
90 }
91 $i++;
92 }
93 if ($auto_expunge == true)
94 sqimap_mailbox_expunge($imapConnection, $mailbox);
95
96 if ($auto_forward) {
97 header ("Location: right_main.php");
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 }
103 } else {
104 echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
105 displayPageHeader($color, $mailbox);
106 error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color);
107 }
108 }
109
110 // Log out this session
111 sqimap_logout($imapConnection);
112
113 ?>
114 </BODY></HTML>