5 ** This contains functions that request information about a mailbox. Including
6 ** reading and parsing headers, getting folder information, etc.
10 function selectMailbox($imapConnection, $mailbox, &$numberOfMessages) {
12 fputs($imapConnection, "mailboxSelect SELECT \"$mailbox\"\n");
13 $read = fgets($imapConnection, 1024);
15 while ((substr($read, 0, 16) != "mailboxSelect OK") && (substr($read, 0, 17) != "mailboxSelect BAD")) {
16 if (substr(Chop($read), -6) == "EXISTS") {
17 $array = explode(" ", $read);
18 $numberOfMessages = $array[1];
20 $read = fgets($imapConnection, 1024);
24 function unseenMessages($imapConnection, &$numUnseen) {
25 fputs($imapConnection, "1 SEARCH UNSEEN NOT DELETED\n");
26 $read = fgets($imapConnection, 1024);
29 if (strlen($read) > 10) {
31 $ary = explode(" ", $read);
32 $numUnseen = count($ary) - 2;
39 $read = fgets($imapConnection, 1024);
43 /** This function sends a request to the IMAP server for headers, 50 at a time
44 ** until $end is reached. I originally had it do them all at one time, but found
45 ** it slightly faster to do it this way.
47 ** Originally we had getMessageHeaders get the headers for one message at a time.
48 ** Doing it in bunches gave us a speed increase from 9 seconds (for a box of 800
49 ** messages) to about 3.5 seconds.
51 function getMessageHeaders($imapConnection, $start, $end, &$from, &$subject, &$date) {
53 if (($start > $end) ||
($start < 1)) {
54 echo "Error in message header fetching. Start message: $start, End message: $end<BR>";
59 while ($rel_start <= $end) {
60 if ($end - $rel_start > 50) {
61 $rel_end = $rel_start +
49;
65 fputs($imapConnection, "messageFetch FETCH $rel_start:$rel_end RFC822.HEADER.LINES (From Subject Date To Cc)\n");
66 $read = fgets($imapConnection, 1024);
68 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
70 if (substr($read, 0, 5) == "From:") {
71 $read = ereg_replace("<", "EMAILSTART--", $read);
72 $read = ereg_replace(">", "--EMAILEND", $read);
73 $from[$pos] = substr($read, 5, strlen($read) - 6);
75 else if (substr($read, 0, 5) == "Date:") {
76 $read = ereg_replace("<", "<", $read);
77 $read = ereg_replace(">", ">", $read);
78 $date[$pos] = substr($read, 5, strlen($read) - 6);
80 else if (substr($read, 0, 8) == "Subject:") {
81 $read = ereg_replace("<", "<", $read);
82 $read = ereg_replace(">", ">", $read);
83 $subject[$pos] = substr($read, 8, strlen($read) - 9);
84 if (strlen(Chop($subject[$pos])) == 0)
85 $subject[$pos] = "(no subject)";
87 else if (substr($read, 0, 1) == ")") {
88 if ($subject[$pos] == "")
89 $subject[$pos] = "(no subject)";
90 else if ($from[$pos] == "")
91 $from[$pos] = "(unknown sender)";
92 else if ($date[$pos] == "")
93 $from[$pos] = gettimeofday();
98 $read = fgets($imapConnection, 1024);
100 $rel_start = $rel_start +
50;
104 function setMessageFlag($imapConnection, $i, $q, $flag) {
105 fputs($imapConnection, "messageStore STORE $i:$q +FLAGS (\\$flag)\n");
108 /** This function gets the flags for message $j. It does only one message at a
109 ** time, rather than doing groups of messages (like getMessageHeaders does).
110 ** I found it one or two seconds quicker (on a box of 800 messages) to do it
111 ** individually. I'm not sure why it happens like that, but that's what my
112 ** testing found. Perhaps later I will be proven wrong and this will change.
114 function getMessageFlags($imapConnection, $j, &$flags) {
115 /** * 2 FETCH (FLAGS (\Answered \Seen)) */
116 fputs($imapConnection, "messageFetch FETCH $j:$j FLAGS\n");
117 $read = fgets($imapConnection, 1024);
119 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
120 if (strpos($read, "FLAGS")) {
121 $read = ereg_replace("\(", "", $read);
122 $read = ereg_replace("\)", "", $read);
123 $read = substr($read, strpos($read, "FLAGS")+
6, strlen($read));
125 $flags = explode(" ", $read);;
127 while ($s < count($flags)) {
128 $flags[$s] = substr($flags[$s], 1, strlen($flags[$s]));
135 $read = fgets($imapConnection, 1024);
139 function decodeEmailAddr($sender) {
140 $emailAddr = getEmailAddr($sender);
141 if (strpos($emailAddr, "EMAILSTART--")) {
143 $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr);
144 $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr);
146 $emailAddr = $emailAddr;
151 function getEmailAddr($sender) {
152 if (strpos($sender, "EMAILSTART--") == false)
155 $emailStart = strpos($sender, "EMAILSTART--") +
12;
156 $emailAddr = substr($sender, $emailStart, strlen($sender));
157 $emailAddr = substr($emailAddr, 0, strpos($emailAddr, "--EMAILEND"));
162 function getSender($sender) {
163 if (strpos($sender, "EMAILSTART--") == false)
166 $first = substr($sender, 0, strpos($sender, "EMAILSTART--"));
167 $second = substr($sender, strpos($sender, "--EMAILEND") +
10, strlen($sender));
168 return "$first $second";
171 function getSenderName($sender) {
172 $name = getSender($sender);
173 $emailAddr = getEmailAddr($sender);
174 $emailStart = strpos($emailAddr, "EMAILSTART--");
175 $emailEnd = strpos($emailAddr, "--EMAILEND") - 10;
177 if (($emailAddr == "") && ($name == "")) {
180 else if ((strstr($name, "?") != false) ||
(strstr($name, "$") != false) ||
(strstr($name, "%") != false)){
181 $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr);
182 $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr);
185 else if (strlen($name) > 0) {
188 else if (strlen($emailAddr > 0)) {
189 $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr);
190 $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr);
196 // strip out any quotes if they exist
197 if ((strlen($from) > 0) && ($from[0] == "\"") && ($from[strlen($from) - 1] == "\""))
198 $from = substr($from, 1, strlen($from) - 2);
203 /** returns "true" if the copy was completed successfully.
204 ** returns "false" with an error message if unsuccessful.
206 function copyMessages($imapConnection, $from_id, $to_id, $folder) {
207 fputs($imapConnection, "mailboxStore COPY $from_id:$to_id \"$folder\"\n");
208 $read = fgets($imapConnection, 1024);
209 while ((substr($read, 0, 15) != "mailboxStore OK") && (substr($read, 0, 15) != "mailboxStore NO")) {
210 $read = fgets($imapConnection, 1024);
213 if (substr($read, 0, 15) == "mailboxStore NO") {
215 } else if (substr($read, 0, 15) == "mailboxStore OK") {
219 echo "UNKNOWN ERROR copying messages $from_id to $to_id to folder $folder.<BR>";
223 /** expunges a mailbox **/
224 function expungeBox($imapConnection, $mailbox) {
225 selectMailbox($imapConnection, $mailbox, $num);
226 fputs($imapConnection, "1 EXPUNGE\n");
229 function getFolderNameMinusINBOX($mailbox) {
230 if (substr($mailbox, 0, 6) == "INBOX.")
231 $box = substr($mailbox, 6, strlen($mailbox));
238 /** This function gets all the information about a message. Including Header and body **/
239 function fetchMessage($imapConnection, $id) {
240 $message["HEADER"] = fetchHeader($imapConnection, $id);
241 $message["ENTITIES"] = fetchBody($imapConnection, $message["HEADER"]["BOUNDARY"], $id, $message["HEADER"]["TYPE0"], $message["HEADER"]["TYPE1"]);
246 function fetchHeader($imapConnection, $id) {
247 fputs($imapConnection, "messageFetch FETCH $id:$id RFC822.HEADER\n");
248 $read = fgets($imapConnection, 1024);
250 /** defaults... if the don't get overwritten, it will display text **/
251 $header["TYPE0"] = "text";
252 $header["TYPE1"] = "plain";
253 $header["ENCODING"] = "us-ascii";
254 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
256 if (substr($read, 0, 17) == "MIME-Version: 1.0") {
257 $header["MIME"] = true;
258 $read = fgets($imapConnection, 1024);
261 /** ENCODING TYPE **/
262 else if (substr($read[$i], 0, 26) == "Content-Transfer-Encoding:") {
263 $header["ENCODING"] = strtolower(trim(substr($read[$i], 26)));
267 else if (substr($read, 0, 13) == "Content-Type:") {
268 $cont = strtolower(trim(substr($read, 13)));
269 if (strpos($cont, ";"))
270 $cont = substr($cont, 0, strpos($cont, ";"));
271 $header["TYPE0"] = substr($cont, 0, strpos($cont, "/"));
272 $header["TYPE1"] = substr($cont, strpos($cont, "/")+
1);
275 $read = fgets($imapConnection, 1024);
276 while ( (substr(substr($read, 0, strpos($read, " ")), -1) != ":") && (trim($read) != "") && (trim($read) != ")")) {
277 str_replace("\n", "", $line);
278 str_replace("\n", "", $read);
279 $line = "$line $read";
280 $read = fgets($imapConnection, 1024);
283 /** Detect the boundary of a multipart message **/
284 if (strpos(strtolower(trim($line)), "boundary=")) {
285 $pos = strpos($line, "boundary=") +
9;
286 $bound = trim($line);
287 if (strpos($line, " ", $pos) > 0) {
288 $bound = substr($bound, $pos, strpos($line, " ", $pos));
290 $bound = substr($bound, $pos);
292 $bound = str_replace("\"", "", $bound);
293 $header["BOUNDARY"] = $bound;
296 /** Detect the charset **/
297 if (strpos(strtolower(trim($line)), "charset=")) {
298 $pos = strpos($line, "charset=") +
8;
299 $charset = trim($line);
300 if (strpos($line, " ", $pos) > 0) {
301 $charset = substr($charset, $pos, strpos($line, " ", $pos));
303 $charset = substr($charset, $pos);
305 $charset = str_replace("\"", "", $charset);
306 $header["CHARSET"] = $charset;
308 $header["CHARSET"] = "us-ascii";
314 else if (substr($read, 0, 9) == "Reply-To:") {
315 $header["REPLYTO"] = trim(substr($read, 9, strlen($read)));
316 $read = fgets($imapConnection, 1024);
320 else if (substr($read, 0, 5) == "From:") {
321 $header["FROM"] = trim(substr($read, 5, strlen($read) - 6));
322 if ($header["REPLYTO"] == "")
323 $header["REPLYTO"] = $header["FROM"];
324 $read = fgets($imapConnection, 1024);
327 else if (substr($read, 0, 5) == "Date:") {
328 $d = substr($read, 5, strlen($read) - 6);
330 $d = ereg_replace(" ", " ", $d);
331 $d = explode(" ", $d);
332 $header["DATE"] = getTimeStamp($d);
333 $read = fgets($imapConnection, 1024);
336 else if (substr($read, 0, 8) == "Subject:") {
337 $header["SUBJECT"] = trim(substr($read, 8, strlen($read) - 9));
338 if (strlen(Chop($header["SUBJECT"])) == 0)
339 $header["SUBJECT"] = "(no subject)";
340 $read = fgets($imapConnection, 1024);
343 else if (substr($read, 0, 3) == "CC:") {
345 $header["CC"][$pos] = trim(substr($read, 4));
346 $read = fgets($imapConnection, 1024);
347 while ((substr($read, 0, 1) == " ") && (trim($read) != "")) {
349 $header["CC"][$pos] = trim($read);
350 $read = fgets($imapConnection, 1024);
354 else if (substr($read, 0, 3) == "To:") {
356 $header["TO"][$pos] = trim(substr($read, 4));
357 $read = fgets($imapConnection, 1024);
358 while ((substr($read, 0, 1) == " ") && (trim($read) != "")){
360 $header["TO"][$pos] = trim($read);
361 $read = fgets($imapConnection, 1024);
365 /** ERROR CORRECTION **/
366 else if (substr($read, 0, 1) == ")") {
367 if ($header["SUBJECT"] == "")
368 $header["SUBJECT"] = "(no subject)";
370 if ($header["FROM"] == "")
371 $header["FROM"] = "(unknown sender)";
373 if ($header["DATE"] == "")
374 $header["DATE"] = time();
375 $read = fgets($imapConnection, 1024);
378 $read = fgets($imapConnection, 1024);
384 function fetchBody($imapConnection, $bound, $id, $type0, $type1) {
385 /** This first part reads in the full body of the message **/
386 fputs($imapConnection, "messageFetch FETCH $id:$id BODY[TEXT]\n");
387 $read = fgets($imapConnection, 1024);
390 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
391 $body[$count] = $read;
394 $read = fgets($imapConnection, 1024);
397 /** this deletes the first line, and the last two (imap stuff we ignore) **/
400 while ($i < count($body)) {
401 if ( ($i != 0) && ($i != count($body) - 1) && ($i != count($body)) ) {
402 $bodytmp[$j] = $body[$i];
409 /** Now, lets work out the MIME stuff **/
410 /** (needs mime.php included) **/
411 return decodeMime($body, $bound, $type0, $type1);
414 function fetchEntityHeader($imapConnection, &$read, &$type0, &$type1, &$bound, &$encoding, &$charset) {
415 /** defaults... if the don't get overwritten, it will display text **/
418 $encoding = "us-ascii";
420 while (trim($read[$i]) != "") {
421 if (substr($read[$i], 0, 26) == "Content-Transfer-Encoding:") {
422 $encoding = strtolower(trim(substr($read[$i], 26)));
424 } else if (substr($read[$i], 0, 13) == "Content-Type:") {
425 $cont = strtolower(trim(substr($read[$i], 13)));
426 if (strpos($cont, ";"))
427 $cont = substr($cont, 0, strpos($cont, ";"));
428 $type0 = substr($cont, 0, strpos($cont, "/"));
429 $type1 = substr($cont, strpos($cont, "/")+
1);
432 while ( (substr(substr($read[$i], 0, strpos($read[$i], " ")), -1) != ":") && (trim($read[$i]) != "") && (trim($read[$i]) != ")")) {
433 str_replace("\n", "", $line);
434 str_replace("\n", "", $read[$i]);
435 $line = "$line $read[$i]";
439 /** Detect the boundary of a multipart message **/
440 if (strpos(strtolower(trim($line)), "boundary=")) {
441 $pos = strpos($line, "boundary=") +
9;
442 $bound = trim($line);
443 if (strpos($line, " ", $pos) > 0) {
444 $bound = substr($bound, $pos, strpos($line, " ", $pos));
446 $bound = substr($bound, $pos);
448 $bound = str_replace("\"", "", $bound);
451 /** Detect the charset **/
452 if (strpos(strtolower(trim($line)), "charset=")) {
453 $pos = strpos($line, "charset=") +
8;
454 $charset = trim($line);
455 if (strpos($line, " ", $pos) > 0) {
456 $charset = substr($charset, $pos, strpos($line, " ", $pos));
458 $charset = substr($charset, $pos);
460 $charset = str_replace("\"", "", $charset);
466 /** remove the header from the entity **/
468 while (trim($read[$i]) != "") {
473 for ($p = 0; $i < count($read); $p++
) {
474 $entity[$p] = $read[$i];
481 function parsePlainTextMessage($line) {
484 if ((strpos(strtolower($line), "<!") == false) &&
485 (strpos(strtolower($line), "<html>") == false) &&
486 (strpos(strtolower($line), "</html>") == false)) {
487 $line = str_replace("<", "<", $line);
488 $line = str_replace(">", ">", $line);
491 $wrap_at = 86; // Make this configurable int the config file some time
492 if (strlen($line) - 2 >= $wrap_at) // -2 because of the ^^ at the beginning
493 $line = wordWrap($line, $wrap_at);
495 $line = str_replace(" ", " ", $line);
496 $line = str_replace("\t", " ", $line);
498 /** if >> or > are found at the beginning of a line, I'll assume that was
499 replied text, so make it different colors **/
500 if (strpos(trim(str_replace(" ", "", $line)), ">>") == 2) {
501 $line = substr($line, 2, strlen($line));
502 $line = "<TT><FONT COLOR=FF0000>$line</FONT></TT><BR>\n";
503 } else if (strpos(trim(str_replace(" ", "", $line)), ">") == 2) {
504 $line = substr($line, 2, strlen($line));
505 $line = "<TT><FONT COLOR=800000>$line</FONT></TT><BR>\n";
507 $line = substr($line, 2, strlen($line));
508 $line = "<TT><FONT COLOR=000000>$line</FONT></TT><BR>\n";
511 /** This translates "http://" into a link. It could be made better to accept
512 "www" and "mailto" also. That should probably be added later. **/
513 if (strpos(strtolower($line), "http://") != false) {
514 $line = ereg_replace("<BR>", "", $line);
515 $start = strpos(strtolower($line), "http://");
516 $link = substr($line, $start, strlen($line));
518 if (strpos($link, " ")) {
519 $end = strpos($link, " ")-1;
521 else if (strpos($link, " ")) {
522 $end = strpos($link, " ")-1;
524 else if (strpos($link, "<")) {
525 $end = strpos($link, "<");
527 else if (strpos($link, ">")) {
528 $end = strpos($link, ">");
530 else if (strpos($link, "(")) {
531 $end = strpos($link, "(")-1;
533 else if (strpos($link, ")")) {
534 $end = strpos($link, ")")-1;
536 else if (strpos($link, "{")) {
537 $end = strpos($link, "{")-1;
539 else if (strpos($link, "}")) {
540 $end = strpos($link, "}")-1;
543 $end = strlen($link);
545 $link = substr($line, $start, $end);
546 $end = $end +
$start;
547 $before = substr($line, 0, $start);
548 $after = substr($line, $end, strlen($line));
550 $line = "$before<A HREF=\"$link\" TARGET=_top>$link</A>$after<BR>";