updating pot
[squirrelmail.git] / plugins / message_details / message_details_main.php
CommitLineData
bbdea028 1<?php
2/** Message Source
8d6a115b 3 *
4 * Plugin to view the RFC822 raw message output and the bodystructure of a message
5 *
6 * Copyright (c) 2002 Marc Groot Koerkamp, The Netherlands
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * $Id$
ea5f4b8e 10 * @package plugins
11 * @subpackage message_details
8d6a115b 12 */
bbdea028 13
ea5f4b8e 14/**
15 * Path for SquirrelMail required files.
16 * @ignore
17 */
92219031 18define('SM_PATH','../../');
89252d71 19
20/* SquirrelMail required files. */
21require_once(SM_PATH . 'include/validate.php');
22require_once(SM_PATH . 'functions/page_header.php');
23require_once(SM_PATH . 'functions/strings.php');
bbdea028 24
3720bcfc 25displayHtmlHeader( _("Message Details"), '', FALSE );
bbdea028 26
b587ac51 27sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
28sqgetGlobalVar('passed_id', $passed_id, SQ_GET);
04f6008a 29
bbdea028 30echo "<frameset rows=\"60, *\" noresize border=\"0\">\n";
796f91d9 31echo '<frame src="message_details_top.php?mailbox=' . urlencode($mailbox) .'&passed_id=' . "$passed_id". '" name="top_frame" scrolling="off" />';
32echo '<frame src="message_details_bottom.php?mailbox=' . urlencode($mailbox) .'&passed_id=' . "$passed_id" . '" name="bottom_frame" />';
bbdea028 33echo '</frameset>'."\n"."</html>\n";
796f91d9 34?>