dk step 1
[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');
86725763 19require_once(SM_PATH . 'functions/imap.php');
20require_once(SM_PATH . 'functions/html.php');
21require_once(SM_PATH . 'functions/url_parser.php');
a777439a 22
65f8ca87 23function parse_viewheader($imapConnection,$id, $passed_ent_id) {
a777439a 24 global $uid_support;
25
26 $header_full = array();
5add5fcc 27 if (!$passed_ent_id) {
28 $read=sqimap_run_command ($imapConnection, "FETCH $id BODY[HEADER]",
a777439a 29 true, $a, $b, $uid_support);
5add5fcc 30 } else {
31 $query = "FETCH $id BODY[".$passed_ent_id.'.HEADER]';
32 $read=sqimap_run_command ($imapConnection, $query,
33 true, $a, $b, $uid_support);
34 }
a777439a 35 $cnum = 0;
36 for ($i=1; $i < count($read); $i++) {
37 $line = htmlspecialchars($read[$i]);
65f8ca87 38 switch (true) {
39 case (eregi("^&gt;", $line)):
a777439a 40 $second[$i] = $line;
41 $first[$i] = '&nbsp;';
42 $cnum++;
65f8ca87 43 break;
44 case (eregi("^[ |\t]", $line)):
a777439a 45 $second[$i] = $line;
46 $first[$i] = '';
65f8ca87 47 break;
48 case (eregi("^([^:]+):(.+)", $line, $regs)):
a777439a 49 $first[$i] = $regs[1] . ':';
50 $second[$i] = $regs[2];
51 $cnum++;
65f8ca87 52 break;
53 default:
a777439a 54 $second[$i] = trim($line);
55 $first[$i] = '';
65f8ca87 56 break;
a777439a 57 }
58 }
59 for ($i=0; $i < count($second); $i = $j) {
65f8ca87 60 $f = (isset($first[$i]) ? $first[$i] : '');
61 $s = (isset($second[$i]) ? nl2br($second[$i]) : '');
a777439a 62 $j = $i + 1;
63 while (($first[$j] == '') && ($j < count($first))) {
64 $s .= '&nbsp;&nbsp;&nbsp;&nbsp;' . nl2br($second[$j]);
65 $j++;
66 }
65f8ca87 67 if(strtolower($f) != 'message-id:') {
27fbf839 68 parseEmail($s);
69 }
65f8ca87 70 if ($f) {
36cd4eaa 71 $header_output[] = array($f,$s);
a777439a 72 }
73 }
a777439a 74 sqimap_logout($imapConnection);
98349cf6 75 return $header_output;
a777439a 76}
77
be61c5a6 78function view_header($header, $mailbox, $color) {
65f8ca87 79 $ret_addr = SM_PATH . 'src/read_body.php?'.$_SERVER['QUERY_STRING'];
be61c5a6 80
81 displayPageHeader($color, $mailbox);
82
a777439a 83 echo '<BR>' .
84 '<TABLE WIDTH="100%" CELLPADDING="2" CELLSPACING="0" BORDER="0"'.
85 ' ALIGN="CENTER">' . "\n" .
86 " <TR><TD BGCOLOR=\"$color[9]\" WIDTH=\"100%\" ALIGN=\"CENTER\"><B>".
87 _("Viewing Full Header") . '</B> - '.
88 '<a href="';
be61c5a6 89 echo_template_var($ret_addr);
a777439a 90 echo '">' ._("View message") . "</a></b></td></tr></table>\n";
91
be61c5a6 92 echo_template_var($header,
a777439a 93 array(
94 "<table width='99%' cellpadding='2' cellspacing='0' border='0'".
5eb5b57e 95 "align=center>\n".'<tr><td>',
a777439a 96 '<nobr><tt><b>',
97 '</b>',
98 '</tt></nobr>',
99 '</td></tr></table>'."\n"
100 ) );
be61c5a6 101 echo '</body></html>';
a777439a 102}
103
fe369c70 104/* get global vars */
105$passed_id = $_GET['passed_id'];
106$username = $_SESSION['username'];
107$key = $_COOKIE['key'];
108$delimiter = $_SESSION['delimiter'];
109$onetimepad = $_SESSION['onetimepad'];
110
111if (!isset($_GET['passed_ent_id'])) {
be61c5a6 112 $passed_ent_id = '';
fe369c70 113} else {
114 $passed_ent_id = $_GET['passed_ent_id'];
be61c5a6 115}
fe369c70 116
117$mailbox = decodeHeader($_GET['mailbox']);
be61c5a6 118
119$imapConnection = sqimap_login($username, $key, $imapServerAddress,
120 $imapPort, 0);
121$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true);
122
123$header = parse_viewheader($imapConnection,$passed_id, $passed_ent_id);
124view_header($header, $mailbox, $color);
125
a777439a 126?>