Rewrote multipart/* algorithm to be recursive
[squirrelmail.git] / functions / mailbox.php
CommitLineData
3302d0d4 1<?
2 /**
a09387f4 3 ** mailbox.php
3302d0d4 4 **
5 ** This contains functions that request information about a mailbox. Including
6 ** reading and parsing headers, getting folder information, etc.
7 **
8 **/
9
10 function selectMailbox($imapConnection, $mailbox, &$numberOfMessages) {
11 // select mailbox
12 fputs($imapConnection, "mailboxSelect SELECT \"$mailbox\"\n");
d92b6f31 13 $data = imapReadData($imapConnection, "mailboxSelect");
14 for ($i = 0; $i < count($data); $i++) {
15 if (substr(Chop($data[$i]), -6) == "EXISTS") {
16 $array = explode(" ", $data[$i]);
3302d0d4 17 $numberOfMessages = $array[1];
18 }
3302d0d4 19 }
20 }
21
ff89ac8a 22 function unseenMessages($imapConnection, &$numUnseen) {
23 fputs($imapConnection, "1 SEARCH UNSEEN NOT DELETED\n");
24 $read = fgets($imapConnection, 1024);
25 $unseen = false;
26
27 if (strlen($read) > 10) {
28 $unseen = true;
29 $ary = explode(" ", $read);
30 $numUnseen = count($ary) - 2;
31 }
32 else {
33 $unseen = false;
34 $numUnseen = 0;
35 }
36
37 $read = fgets($imapConnection, 1024);
38 return $unseen;
39 }
40
0e919368 41 /** This function sends a request to the IMAP server for headers, 50 at a time
42 ** until $end is reached. I originally had it do them all at one time, but found
43 ** it slightly faster to do it this way.
44 **
45 ** Originally we had getMessageHeaders get the headers for one message at a time.
46 ** Doing it in bunches gave us a speed increase from 9 seconds (for a box of 800
47 ** messages) to about 3.5 seconds.
48 **/
3e054c43 49 function getMessageHeaders($imapConnection, $start, $end, &$from, &$subject, &$date) {
3e054c43 50 $rel_start = $start;
3e054c43 51 if (($start > $end) || ($start < 1)) {
52 echo "Error in message header fetching. Start message: $start, End message: $end<BR>";
53 exit;
54 }
3302d0d4 55
e550d551 56 $pos = 0;
3e054c43 57 while ($rel_start <= $end) {
58 if ($end - $rel_start > 50) {
e550d551 59 $rel_end = $rel_start + 49;
3e054c43 60 } else {
61 $rel_end = $end;
62 }
8405ee35 63 fputs($imapConnection, "messageFetch FETCH $rel_start:$rel_end RFC822.HEADER.LINES (From Subject Date)\n");
3302d0d4 64 $read = fgets($imapConnection, 1024);
3e054c43 65
3e054c43 66 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
e550d551 67
3e054c43 68 if (substr($read, 0, 5) == "From:") {
7ce342dc 69 $read = encodeEmailAddr("$read");
e550d551 70 $from[$pos] = substr($read, 5, strlen($read) - 6);
3e054c43 71 }
72 else if (substr($read, 0, 5) == "Date:") {
df978e80 73 $read = ereg_replace("<", "&lt;", $read);
74 $read = ereg_replace(">", "&gt;", $read);
e550d551 75 $date[$pos] = substr($read, 5, strlen($read) - 6);
3e054c43 76 }
77 else if (substr($read, 0, 8) == "Subject:") {
df978e80 78 $read = ereg_replace("<", "&lt;", $read);
79 $read = ereg_replace(">", "&gt;", $read);
e550d551 80 $subject[$pos] = substr($read, 8, strlen($read) - 9);
81 if (strlen(Chop($subject[$pos])) == 0)
82 $subject[$pos] = "(no subject)";
83 }
84 else if (substr($read, 0, 1) == ")") {
85 if ($subject[$pos] == "")
86 $subject[$pos] = "(no subject)";
87 else if ($from[$pos] == "")
88 $from[$pos] = "(unknown sender)";
89 else if ($date[$pos] == "")
90 $from[$pos] = gettimeofday();
91
92 $pos++;
3e054c43 93 }
e550d551 94
3e054c43 95 $read = fgets($imapConnection, 1024);
96 }
97 $rel_start = $rel_start + 50;
3302d0d4 98 }
99 }
100
7ce342dc 101 function encodeEmailAddr($string) {
102 $string = ereg_replace("<", "EMAILSTART--", $string);
103 $string = ereg_replace(">", "--EMAILEND", $string);
104 return $string;
105 }
106
61a4ac35 107 function setMessageFlag($imapConnection, $i, $q, $flag) {
108 fputs($imapConnection, "messageStore STORE $i:$q +FLAGS (\\$flag)\n");
aa4c3749 109 }
110
0e919368 111 /** This function gets the flags for message $j. It does only one message at a
112 ** time, rather than doing groups of messages (like getMessageHeaders does).
113 ** I found it one or two seconds quicker (on a box of 800 messages) to do it
114 ** individually. I'm not sure why it happens like that, but that's what my
115 ** testing found. Perhaps later I will be proven wrong and this will change.
116 **/
3e054c43 117 function getMessageFlags($imapConnection, $j, &$flags) {
3302d0d4 118 /** * 2 FETCH (FLAGS (\Answered \Seen)) */
3e054c43 119 fputs($imapConnection, "messageFetch FETCH $j:$j FLAGS\n");
aa4c3749 120 $read = fgets($imapConnection, 1024);
3e054c43 121 $count = 0;
3302d0d4 122 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
123 if (strpos($read, "FLAGS")) {
124 $read = ereg_replace("\(", "", $read);
125 $read = ereg_replace("\)", "", $read);
126 $read = substr($read, strpos($read, "FLAGS")+6, strlen($read));
127 $read = trim($read);
128 $flags = explode(" ", $read);;
54a8ae32 129 $s = 0;
130 while ($s < count($flags)) {
131 $flags[$s] = substr($flags[$s], 1, strlen($flags[$s]));
132 $s++;
3302d0d4 133 }
134 } else {
135 $flags[0] = "None";
136 }
3e054c43 137 $count++;
3302d0d4 138 $read = fgets($imapConnection, 1024);
139 }
140 }
141
31f3d7c0 142 function decodeEmailAddr($sender) {
143 $emailAddr = getEmailAddr($sender);
40884065 144 if (strpos($emailAddr, "EMAILSTART--")) {
31f3d7c0 145
40884065 146 $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr);
147 $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr);
148 } else {
149 $emailAddr = $emailAddr;
150 }
31f3d7c0 151 return $emailAddr;
152 }
153
3302d0d4 154 function getEmailAddr($sender) {
155 if (strpos($sender, "EMAILSTART--") == false)
40884065 156 return "$sender";
3302d0d4 157
40884065 158 $emailStart = strpos($sender, "EMAILSTART--") + 12;
159 $emailAddr = substr($sender, $emailStart, strlen($sender));
160 $emailAddr = substr($emailAddr, 0, strpos($emailAddr, "--EMAILEND"));
3302d0d4 161
162 return $emailAddr;
163 }
164
165 function getSender($sender) {
166 if (strpos($sender, "EMAILSTART--") == false)
40884065 167 return "$sender";
3302d0d4 168
169 $first = substr($sender, 0, strpos($sender, "EMAILSTART--"));
170 $second = substr($sender, strpos($sender, "--EMAILEND") +10, strlen($sender));
40884065 171 return "$first $second";
3302d0d4 172 }
173
174 function getSenderName($sender) {
175 $name = getSender($sender);
176 $emailAddr = getEmailAddr($sender);
177 $emailStart = strpos($emailAddr, "EMAILSTART--");
178 $emailEnd = strpos($emailAddr, "--EMAILEND") - 10;
179
180 if (($emailAddr == "") && ($name == "")) {
181 $from = $sender;
182 }
183 else if ((strstr($name, "?") != false) || (strstr($name, "$") != false) || (strstr($name, "%") != false)){
184 $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr);
185 $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr);
186 $from = $emailAddr;
187 }
188 else if (strlen($name) > 0) {
189 $from = $name;
190 }
191 else if (strlen($emailAddr > 0)) {
192 $emailAddr = ereg_replace("EMAILSTART--", "", $emailAddr);
193 $emailAddr = ereg_replace("--EMAILEND", "", $emailAddr);
194 $from = $emailAddr;
195 }
196
197 $from = trim($from);
198
199 // strip out any quotes if they exist
200 if ((strlen($from) > 0) && ($from[0] == "\"") && ($from[strlen($from) - 1] == "\""))
201 $from = substr($from, 1, strlen($from) - 2);
202
203 return $from;
204 }
aa4c3749 205
206 /** returns "true" if the copy was completed successfully.
207 ** returns "false" with an error message if unsuccessful.
208 **/
209 function copyMessages($imapConnection, $from_id, $to_id, $folder) {
210 fputs($imapConnection, "mailboxStore COPY $from_id:$to_id \"$folder\"\n");
211 $read = fgets($imapConnection, 1024);
212 while ((substr($read, 0, 15) != "mailboxStore OK") && (substr($read, 0, 15) != "mailboxStore NO")) {
213 $read = fgets($imapConnection, 1024);
214 }
215
216 if (substr($read, 0, 15) == "mailboxStore NO") {
aa4c3749 217 return false;
218 } else if (substr($read, 0, 15) == "mailboxStore OK") {
219 return true;
220 }
221
222 echo "UNKNOWN ERROR copying messages $from_id to $to_id to folder $folder.<BR>";
223 return false;
224 }
61a4ac35 225
226 /** expunges a mailbox **/
227 function expungeBox($imapConnection, $mailbox) {
228 selectMailbox($imapConnection, $mailbox, $num);
229 fputs($imapConnection, "1 EXPUNGE\n");
230 }
8c7dfc99 231
d92b6f31 232 function getFolderNameMinusINBOX($mailbox, $del) {
233 $inbox = "INBOX" . $del;
234 if (substr($mailbox, 0, strlen($inbox)) == $inbox)
235 $box = substr($mailbox, strlen($inbox), strlen($mailbox));
8c7dfc99 236 else
237 $box = $mailbox;
238
239 return $box;
240 }
05207a68 241
aceb0d5c 242 /** This function gets all the information about a message. Including Header and body **/
97be2168 243 function fetchMessage($imapConnection, $id, $mailbox) {
244 $message["INFO"]["ID"] = $id;
245 $message["INFO"]["MAILBOX"] = $mailbox;
aceb0d5c 246 $message["HEADER"] = fetchHeader($imapConnection, $id);
d4467150 247 $message["ENTITIES"] = fetchBody($imapConnection, $message["HEADER"]["BOUNDARY"], $id, $message["HEADER"]["TYPE0"], $message["HEADER"]["TYPE1"]);
aceb0d5c 248 return $message;
249 }
250
251 function fetchHeader($imapConnection, $id) {
5c55c295 252 fputs($imapConnection, "messageFetch FETCH $id:$id RFC822.HEADER\n");
aceb0d5c 253 $read = fgets($imapConnection, 1024);
254
255 /** defaults... if the don't get overwritten, it will display text **/
d4467150 256 $header["TYPE0"] = "text";
257 $header["TYPE1"] = "plain";
258 $header["ENCODING"] = "us-ascii";
aceb0d5c 259 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
260 /** MIME-VERSION **/
261 if (substr($read, 0, 17) == "MIME-Version: 1.0") {
262 $header["MIME"] = true;
263 $read = fgets($imapConnection, 1024);
264 }
d4467150 265
266 /** ENCODING TYPE **/
267 else if (substr($read[$i], 0, 26) == "Content-Transfer-Encoding:") {
268 $header["ENCODING"] = strtolower(trim(substr($read[$i], 26)));
269 }
270
aceb0d5c 271 /** CONTENT-TYPE **/
272 else if (substr($read, 0, 13) == "Content-Type:") {
d4467150 273 $cont = strtolower(trim(substr($read, 13)));
274 if (strpos($cont, ";"))
275 $cont = substr($cont, 0, strpos($cont, ";"));
8405ee35 276
277 if (strpos($cont, "/")) {
278 $header["TYPE0"] = substr($cont, 0, strpos($cont, "/"));
279 $header["TYPE1"] = substr($cont, strpos($cont, "/")+1);
280 } else {
281 $header["TYPE0"] = $cont;
282 }
aceb0d5c 283
d4467150 284 $line = $read;
aceb0d5c 285 $read = fgets($imapConnection, 1024);
d4467150 286 while ( (substr(substr($read, 0, strpos($read, " ")), -1) != ":") && (trim($read) != "") && (trim($read) != ")")) {
287 str_replace("\n", "", $line);
288 str_replace("\n", "", $read);
289 $line = "$line $read";
290 $read = fgets($imapConnection, 1024);
291 }
292
293 /** Detect the boundary of a multipart message **/
294 if (strpos(strtolower(trim($line)), "boundary=")) {
295 $pos = strpos($line, "boundary=") + 9;
296 $bound = trim($line);
297 if (strpos($line, " ", $pos) > 0) {
298 $bound = substr($bound, $pos, strpos($line, " ", $pos));
299 } else {
300 $bound = substr($bound, $pos);
301 }
aceb0d5c 302 $bound = str_replace("\"", "", $bound);
303 $header["BOUNDARY"] = $bound;
aceb0d5c 304 }
d4467150 305
306 /** Detect the charset **/
307 if (strpos(strtolower(trim($line)), "charset=")) {
308 $pos = strpos($line, "charset=") + 8;
309 $charset = trim($line);
310 if (strpos($line, " ", $pos) > 0) {
311 $charset = substr($charset, $pos, strpos($line, " ", $pos));
312 } else {
313 $charset = substr($charset, $pos);
314 }
315 $charset = str_replace("\"", "", $charset);
316 $header["CHARSET"] = $charset;
317 } else {
318 $header["CHARSET"] = "us-ascii";
319 }
320
7c9499e1 321 /** Detects filename if any **/
322 if (strpos(strtolower(trim($line)), "name=")) {
323 $pos = strpos($line, "name=") + 5;
324 $name = trim($line);
325 if (strpos($line, " ", $pos) > 0) {
326 $name = substr($name, $pos, strpos($line, " ", $pos));
327 } else {
328 $name = substr($name, $pos);
329 }
330 $name = str_replace("\"", "", $name);
331 $header["FILENAME"] = $name;
332 }
aceb0d5c 333 }
5c55c295 334
335 /** REPLY-TO **/
8405ee35 336 else if (strtolower(substr($read, 0, 9)) == "reply-to:") {
5c55c295 337 $header["REPLYTO"] = trim(substr($read, 9, strlen($read)));
338 $read = fgets($imapConnection, 1024);
339 }
340
aceb0d5c 341 /** FROM **/
8405ee35 342 else if (strtolower(substr($read, 0, 5)) == "from:") {
aceb0d5c 343 $header["FROM"] = trim(substr($read, 5, strlen($read) - 6));
5c55c295 344 if ($header["REPLYTO"] == "")
345 $header["REPLYTO"] = $header["FROM"];
aceb0d5c 346 $read = fgets($imapConnection, 1024);
347 }
348 /** DATE **/
8405ee35 349 else if (strtolower(substr($read, 0, 5)) == "date:") {
aceb0d5c 350 $d = substr($read, 5, strlen($read) - 6);
351 $d = trim($d);
352 $d = ereg_replace(" ", " ", $d);
353 $d = explode(" ", $d);
354 $header["DATE"] = getTimeStamp($d);
355 $read = fgets($imapConnection, 1024);
356 }
357 /** SUBJECT **/
8405ee35 358 else if (strtolower(substr($read, 0, 8)) == "subject:") {
aceb0d5c 359 $header["SUBJECT"] = trim(substr($read, 8, strlen($read) - 9));
360 if (strlen(Chop($header["SUBJECT"])) == 0)
361 $header["SUBJECT"] = "(no subject)";
362 $read = fgets($imapConnection, 1024);
363 }
364 /** CC **/
8405ee35 365 else if (strtolower(substr($read, 0, 3)) == "cc:") {
aceb0d5c 366 $pos = 0;
367 $header["CC"][$pos] = trim(substr($read, 4));
368 $read = fgets($imapConnection, 1024);
369 while ((substr($read, 0, 1) == " ") && (trim($read) != "")) {
370 $pos++;
371 $header["CC"][$pos] = trim($read);
372 $read = fgets($imapConnection, 1024);
373 }
374 }
375 /** TO **/
8405ee35 376 else if (strtolower(substr($read, 0, 3)) == "to:") {
aceb0d5c 377 $pos = 0;
378 $header["TO"][$pos] = trim(substr($read, 4));
379 $read = fgets($imapConnection, 1024);
380 while ((substr($read, 0, 1) == " ") && (trim($read) != "")){
381 $pos++;
382 $header["TO"][$pos] = trim($read);
383 $read = fgets($imapConnection, 1024);
384 }
385 }
386
387 /** ERROR CORRECTION **/
388 else if (substr($read, 0, 1) == ")") {
389 if ($header["SUBJECT"] == "")
390 $header["SUBJECT"] = "(no subject)";
391
392 if ($header["FROM"] == "")
393 $header["FROM"] = "(unknown sender)";
394
395 if ($header["DATE"] == "")
396 $header["DATE"] = time();
397 $read = fgets($imapConnection, 1024);
398 }
399 else {
400 $read = fgets($imapConnection, 1024);
401 }
402 }
403 return $header;
404 }
405
406 function fetchBody($imapConnection, $bound, $id, $type0, $type1) {
407 /** This first part reads in the full body of the message **/
05207a68 408 fputs($imapConnection, "messageFetch FETCH $id:$id BODY[TEXT]\n");
aceb0d5c 409 $read = fgets($imapConnection, 1024);
410
05207a68 411 $count = 0;
aceb0d5c 412 while ((substr($read, 0, 15) != "messageFetch OK") && (substr($read, 0, 16) != "messageFetch BAD")) {
413 $body[$count] = $read;
05207a68 414 $count++;
aceb0d5c 415
416 $read = fgets($imapConnection, 1024);
05207a68 417 }
418
aceb0d5c 419 /** this deletes the first line, and the last two (imap stuff we ignore) **/
e550d551 420 $i = 0;
421 $j = 0;
aceb0d5c 422 while ($i < count($body)) {
423 if ( ($i != 0) && ($i != count($body) - 1) && ($i != count($body)) ) {
424 $bodytmp[$j] = $body[$i];
e550d551 425 $j++;
426 }
427 $i++;
428 }
aceb0d5c 429 $body = $bodytmp;
e550d551 430
aceb0d5c 431 /** Now, lets work out the MIME stuff **/
432 /** (needs mime.php included) **/
433 return decodeMime($body, $bound, $type0, $type1);
434 }
05207a68 435
7c9499e1 436 function fetchEntityHeader($imapConnection, &$read, &$type0, &$type1, &$bound, &$encoding, &$charset, &$filename) {
aceb0d5c 437 /** defaults... if the don't get overwritten, it will display text **/
438 $type0 = "text";
439 $type1 = "plain";
d4467150 440 $encoding = "us-ascii";
aceb0d5c 441 $i = 0;
442 while (trim($read[$i]) != "") {
d4467150 443 if (substr($read[$i], 0, 26) == "Content-Transfer-Encoding:") {
444 $encoding = strtolower(trim(substr($read[$i], 26)));
445
446 } else if (substr($read[$i], 0, 13) == "Content-Type:") {
447 $cont = strtolower(trim(substr($read[$i], 13)));
448 if (strpos($cont, ";"))
449 $cont = substr($cont, 0, strpos($cont, ";"));
8405ee35 450
451 if (strpos($cont, "/")) {
452 $type0 = substr($cont, 0, strpos($cont, "/"));
453 $type1 = substr($cont, strpos($cont, "/")+1);
454 } else {
455 $type0 = $cont;
456 }
aceb0d5c 457
7c9499e1 458 $read[$i] = trim($read[$i]);
d4467150 459 $line = $read[$i];
7c9499e1 460 $i++;
d4467150 461 while ( (substr(substr($read[$i], 0, strpos($read[$i], " ")), -1) != ":") && (trim($read[$i]) != "") && (trim($read[$i]) != ")")) {
462 str_replace("\n", "", $line);
463 str_replace("\n", "", $read[$i]);
464 $line = "$line $read[$i]";
465 $i++;
7c9499e1 466 $read[$i] = trim($read[$i]);
d4467150 467 }
468
469 /** Detect the boundary of a multipart message **/
470 if (strpos(strtolower(trim($line)), "boundary=")) {
471 $pos = strpos($line, "boundary=") + 9;
472 $bound = trim($line);
473 if (strpos($line, " ", $pos) > 0) {
474 $bound = substr($bound, $pos, strpos($line, " ", $pos));
475 } else {
476 $bound = substr($bound, $pos);
477 }
aceb0d5c 478 $bound = str_replace("\"", "", $bound);
479 }
d4467150 480
481 /** Detect the charset **/
482 if (strpos(strtolower(trim($line)), "charset=")) {
483 $pos = strpos($line, "charset=") + 8;
484 $charset = trim($line);
485 if (strpos($line, " ", $pos) > 0) {
486 $charset = substr($charset, $pos, strpos($line, " ", $pos));
487 } else {
488 $charset = substr($charset, $pos);
489 }
490 $charset = str_replace("\"", "", $charset);
491 }
7c9499e1 492
493 /** Detects filename if any **/
494 if (strpos(strtolower(trim($line)), "name=")) {
495 $pos = strpos($line, "name=") + 5;
496 $name = trim($line);
497 if (strpos($line, " ", $pos) > 0) {
498 $name = substr($name, $pos, strpos($line, " ", $pos));
499 } else {
500 $name = substr($name, $pos);
501 }
502 $name = str_replace("\"", "", $name);
503 $filename = $name;
504 }
e550d551 505 }
aceb0d5c 506 $i++;
507 }
05207a68 508
97be2168 509 if ( ($encoding == "us-ascii") && ($type0 != "text") && ($type0 != "message") ) {
510 $encoding = "base64";
511 }
512
aceb0d5c 513 /** remove the header from the entity **/
514 $i = 0;
515 while (trim($read[$i]) != "") {
516 $i++;
e550d551 517 }
aceb0d5c 518 $i++;
05207a68 519
aceb0d5c 520 for ($p = 0; $i < count($read); $p++) {
521 $entity[$p] = $read[$i];
522 $i++;
523 }
524
525 $read = $entity;
e550d551 526 }
05207a68 527
4809f489 528 function parseHTMLMessage($line) {
529 /** Add any parsing you want to in here **/
530 return $line;
531 }
532
aceb0d5c 533 function parsePlainTextMessage($line) {
4809f489 534 /** Add any parsing you want to in here */
535
e550d551 536 $line = "^^$line";
05207a68 537
e550d551 538 if ((strpos(strtolower($line), "<!") == false) &&
539 (strpos(strtolower($line), "<html>") == false) &&
540 (strpos(strtolower($line), "</html>") == false)) {
541 $line = str_replace("<", "&lt;", $line);
542 $line = str_replace(">", "&gt;", $line);
05207a68 543 }
544
ff89ac8a 545 $wrap_at = 86; // Make this configurable int the config file some time
8467bf00 546 if (strlen($line) - 2 >= $wrap_at) // -2 because of the ^^ at the beginning
547 $line = wordWrap($line, $wrap_at);
b8ea4ed6 548
e550d551 549 $line = str_replace(" ", "&nbsp;", $line);
550 $line = str_replace("\t", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", $line);
8405ee35 551 $line = str_replace("\n", "", $line);
e550d551 552
e550d551 553 if (strpos(trim(str_replace("&nbsp;", "", $line)), "&gt;&gt;") == 2) {
554 $line = substr($line, 2, strlen($line));
555 $line = "<TT><FONT COLOR=FF0000>$line</FONT></TT><BR>\n";
556 } else if (strpos(trim(str_replace("&nbsp;", "", $line)), "&gt;") == 2) {
557 $line = substr($line, 2, strlen($line));
558 $line = "<TT><FONT COLOR=800000>$line</FONT></TT><BR>\n";
559 } else {
560 $line = substr($line, 2, strlen($line));
561 $line = "<TT><FONT COLOR=000000>$line</FONT></TT><BR>\n";
562 }
563
e550d551 564 if (strpos(strtolower($line), "http://") != false) {
9774bdef 565 $line = ereg_replace("<BR>", "", $line);
e550d551 566 $start = strpos(strtolower($line), "http://");
9774bdef 567 $link = substr($line, $start, strlen($line));
e550d551 568
9774bdef 569 if (strpos($link, " ")) {
570 $end = strpos($link, " ")-1;
571 }
572 else if (strpos($link, "&nbsp;")) {
573 $end = strpos($link, "&nbsp;")-1;
574 }
575 else if (strpos($link, "<")) {
e550d551 576 $end = strpos($link, "<");
9774bdef 577 }
578 else if (strpos($link, ">")) {
579 $end = strpos($link, ">");
580 }
581 else if (strpos($link, "(")) {
582 $end = strpos($link, "(")-1;
583 }
584 else if (strpos($link, ")")) {
585 $end = strpos($link, ")")-1;
586 }
587 else if (strpos($link, "{")) {
588 $end = strpos($link, "{")-1;
589 }
590 else if (strpos($link, "}")) {
591 $end = strpos($link, "}")-1;
592 }
e550d551 593 else
594 $end = strlen($link);
595
9774bdef 596 $link = substr($line, $start, $end);
597 $end = $end + $start;
598 $before = substr($line, 0, $start);
599 $after = substr($line, $end, strlen($line));
600
601 $line = "$before<A HREF=\"$link\" TARGET=_top>$link</A>$after<BR>";
e550d551 602 }
603
604 return $line;
05207a68 605 }
a09387f4 606?>