Do not turn references and in-reply-to headers into links.
[squirrelmail.git] / src / view_header.php
CommitLineData
a777439a 1<?php
2
3/**
4 * view_header.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
a777439a 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This is the code to view the message header.
10 *
11 * $Id$
12 */
86725763 13
14/* Path for SquirrelMail required files. */
15define('SM_PATH','../');
16
17/* SquirrelMail required files. */
08185f2a 18require_once(SM_PATH . 'include/validate.php');
8650e9e1 19require_once(SM_PATH . 'functions/global.php');
86725763 20require_once(SM_PATH . 'functions/imap.php');
21require_once(SM_PATH . 'functions/html.php');
22require_once(SM_PATH . 'functions/url_parser.php');
a777439a 23
65f8ca87 24function parse_viewheader($imapConnection,$id, $passed_ent_id) {
dbdfdf6c 25 global $uid_support;
a777439a 26
dbdfdf6c 27 $header_full = array();
28 if (!$passed_ent_id) {
29 $read=sqimap_run_command ($imapConnection, "FETCH $id BODY[HEADER]",
a777439a 30 true, $a, $b, $uid_support);
dbdfdf6c 31 } else {
32 $query = "FETCH $id BODY[".$passed_ent_id.'.HEADER]';
33 $read=sqimap_run_command ($imapConnection, $query,
5add5fcc 34 true, $a, $b, $uid_support);
dbdfdf6c 35 }
a777439a 36 $cnum = 0;
37 for ($i=1; $i < count($read); $i++) {
38 $line = htmlspecialchars($read[$i]);
65f8ca87 39 switch (true) {
40 case (eregi("^&gt;", $line)):
a777439a 41 $second[$i] = $line;
42 $first[$i] = '&nbsp;';
43 $cnum++;
65f8ca87 44 break;
45 case (eregi("^[ |\t]", $line)):
a777439a 46 $second[$i] = $line;
47 $first[$i] = '';
65f8ca87 48 break;
49 case (eregi("^([^:]+):(.+)", $line, $regs)):
a777439a 50 $first[$i] = $regs[1] . ':';
51 $second[$i] = $regs[2];
52 $cnum++;
65f8ca87 53 break;
54 default:
a777439a 55 $second[$i] = trim($line);
56 $first[$i] = '';
65f8ca87 57 break;
a777439a 58 }
59 }
60 for ($i=0; $i < count($second); $i = $j) {
65f8ca87 61 $f = (isset($first[$i]) ? $first[$i] : '');
62 $s = (isset($second[$i]) ? nl2br($second[$i]) : '');
a777439a 63 $j = $i + 1;
64 while (($first[$j] == '') && ($j < count($first))) {
65 $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
66 $j++;
67 }
dbdfdf6c 68 $lowf=strtolower($f);
69 /* do not mark these headers as emailaddresses */
70 if($lowf != 'message-id:' && $lowf != 'in-reply-to:' && $lowf != 'references:') {
71 parseEmail($s);
72 }
65f8ca87 73 if ($f) {
36cd4eaa 74 $header_output[] = array($f,$s);
a777439a 75 }
76 }
a777439a 77 sqimap_logout($imapConnection);
98349cf6 78 return $header_output;
a777439a 79}
80
be61c5a6 81function view_header($header, $mailbox, $color) {
1e12d1ff 82 sqgetGlobalVar('QUERY_STRING', $queryStr, SQ_SERVER);
83 $ret_addr = SM_PATH . 'src/read_body.php?'.$queryStr;
be61c5a6 84
85 displayPageHeader($color, $mailbox);
86
a777439a 87 echo '<BR>' .
88 '<TABLE WIDTH="100%" CELLPADDING="2" CELLSPACING="0" BORDER="0"'.
89 ' ALIGN="CENTER">' . "\n" .
90 " <TR><TD BGCOLOR=\"$color[9]\" WIDTH=\"100%\" ALIGN=\"CENTER\"><B>".
91 _("Viewing Full Header") . '</B> - '.
92 '<a href="';
be61c5a6 93 echo_template_var($ret_addr);
a777439a 94 echo '">' ._("View message") . "</a></b></td></tr></table>\n";
95
be61c5a6 96 echo_template_var($header,
a777439a 97 array(
98 "<table width='99%' cellpadding='2' cellspacing='0' border='0'".
5eb5b57e 99 "align=center>\n".'<tr><td>',
a777439a 100 '<nobr><tt><b>',
101 '</b>',
102 '</tt></nobr>',
103 '</td></tr></table>'."\n"
104 ) );
be61c5a6 105 echo '</body></html>';
a777439a 106}
107
fe369c70 108/* get global vars */
1e12d1ff 109if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) {
110 $passed_id = (int) $temp;
be61c5a6 111}
1e12d1ff 112if ( sqgetGlobalVar('mailbox', $temp, SQ_GET) ) {
fdc9d9b5 113 $mailbox = $temp;
1e12d1ff 114}
115if ( !sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET) ) {
116 $passed_ent_id = '';
117}
118sqgetGlobalVar('key', $key, SQ_COOKIE);
119sqgetGlobalVar('username', $username, SQ_SESSION);
120sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
121sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
be61c5a6 122
123$imapConnection = sqimap_login($username, $key, $imapServerAddress,
124 $imapPort, 0);
125$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
126
127$header = parse_viewheader($imapConnection,$passed_id, $passed_ent_id);
128view_header($header, $mailbox, $color);
129
a777439a 130?>