on second thought, revise r12527 to use one, generic constant
[squirrelmail.git] / src / view_header.php
CommitLineData
a777439a 1<?php
2
3/**
4 * view_header.php
5 *
a777439a 6 * This is the code to view the message header.
7 *
4b5049de 8 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 10 * @version $Id$
8f6f9ba5 11 * @package squirrelmail
a777439a 12 */
86725763 13
30967a1e 14/**
202bcbcc 15 * Include the SquirrelMail initialization file.
30967a1e 16 */
202bcbcc 17require('../include/init.php');
86725763 18
19/* SquirrelMail required files. */
86725763 20require_once(SM_PATH . 'functions/imap.php');
86725763 21require_once(SM_PATH . 'functions/url_parser.php');
a777439a 22
65f8ca87 23function parse_viewheader($imapConnection,$id, $passed_ent_id) {
a777439a 24
e44fc2eb 25 $header_output = array();
4a44f12c 26 $second = array();
79df8884 27 $first = array();
e44fc2eb 28
dbdfdf6c 29 if (!$passed_ent_id) {
91e0dccc 30 $read=sqimap_run_command ($imapConnection, "FETCH $id BODY[HEADER]",
6201339c 31 true, $a, $b, TRUE);
dbdfdf6c 32 } else {
33 $query = "FETCH $id BODY[".$passed_ent_id.'.HEADER]';
91e0dccc 34 $read=sqimap_run_command ($imapConnection, $query,
6201339c 35 true, $a, $b, TRUE);
91e0dccc 36 }
a777439a 37 $cnum = 0;
38 for ($i=1; $i < count($read); $i++) {
39 $line = htmlspecialchars($read[$i]);
134e4174 40 switch (true) {
41 case (eregi("^&gt;", $line)):
42 $second[$i] = $line;
43 $first[$i] = '&nbsp;';
44 $cnum++;
45 break;
46 case (eregi("^[ |\t]", $line)):
47 $second[$i] = $line;
48 $first[$i] = '';
49 break;
50 case (eregi("^([^:]+):(.+)", $line, $regs)):
51 $first[$i] = $regs[1] . ':';
52 $second[$i] = $regs[2];
53 $cnum++;
54 break;
55 default:
56 $second[$i] = trim($line);
57 $first[$i] = '';
58 break;
a777439a 59 }
60 }
61 for ($i=0; $i < count($second); $i = $j) {
65f8ca87 62 $f = (isset($first[$i]) ? $first[$i] : '');
91e0dccc 63 $s = (isset($second[$i]) ? nl2br($second[$i]) : '');
a777439a 64 $j = $i + 1;
65 while (($first[$j] == '') && ($j < count($first))) {
66 $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
67 $j++;
68 }
dbdfdf6c 69 $lowf=strtolower($f);
70 /* do not mark these headers as emailaddresses */
71 if($lowf != 'message-id:' && $lowf != 'in-reply-to:' && $lowf != 'references:') {
72 parseEmail($s);
73 }
65f8ca87 74 if ($f) {
36cd4eaa 75 $header_output[] = array($f,$s);
a777439a 76 }
77 }
a777439a 78 sqimap_logout($imapConnection);
98349cf6 79 return $header_output;
a777439a 80}
81
fe369c70 82/* get global vars */
1e12d1ff 83if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) {
84 $passed_id = (int) $temp;
be61c5a6 85}
1e12d1ff 86if ( sqgetGlobalVar('mailbox', $temp, SQ_GET) ) {
fdc9d9b5 87 $mailbox = $temp;
1e12d1ff 88}
89if ( !sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET) ) {
90 $passed_ent_id = '';
91e0dccc 91}
1e12d1ff 92sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
be61c5a6 93
906f7e9f 94$imapConnection = sqimap_login($username, false, $imapServerAddress,
be61c5a6 95 $imapPort, 0);
96$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
91e0dccc 97$header = parse_viewheader($imapConnection,$passed_id, $passed_ent_id);
be61c5a6 98
d3558aef 99$aTemplateHeaders = array();
100foreach ($header as $h) {
101 $aTemplateHeaders[] = array (
102 'Header' => $h[0],
103 'Value' => $h[1]
104 );
105}
106
107sqgetGlobalVar('QUERY_STRING', $queryStr, SQ_SERVER);
108$ret_addr = SM_PATH . 'src/read_body.php?'.$queryStr;
109
110displayPageHeader( $color, $mailbox );
111
112$oTemplate->assign('view_message_href', $ret_addr);
113$oTemplate->assign('headers', $aTemplateHeaders);
114
115$oTemplate->display('view_header.tpl');
116
117$oTemplate->display('footer.tpl');
118?>