Source for file message_details_main.php

Documentation is available at message_details_main.php

  1. <?php
  2. /**
  3.  * Message Details plugin - main frame
  4.  *
  5.  * Plugin to view the RFC822 raw message output and the bodystructure of
  6.  * a message
  7.  *
  8.  * @author Marc Groot Koerkamp
  9.  * @copyright 2002 Marc Groot Koerkamp, The Netherlands
  10.  * @copyright 2004-2020 The SquirrelMail Project Team
  11.  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  12.  * @version $Id: message_details_main.php 14840 2020-01-07 07:42:38Z pdontthink $
  13.  * @package plugins
  14.  * @subpackage message_details
  15.  */
  16.  
  17. /**
  18.  * Path for SquirrelMail required files.
  19.  * @ignore
  20.  */
  21. define('SM_PATH','../../');
  22.  
  23. /* SquirrelMail required files. */
  24. require_once(SM_PATH 'include/validate.php');
  25.  
  26. displayHtmlHeader_("Message Details")''FALSE );
  27.  
  28. sqgetGlobalVar('mailbox'$mailboxSQ_GET);
  29. sqgetGlobalVar('passed_id'$passed_idSQ_GET);
  30. if (!sqgetGlobalVar('passed_ent_id'$passed_ent_idSQ_GET))
  31.     $passed_ent_id 0;
  32.  
  33. echo "<frameset rows=\"60, *\" noresize border=\"0\">\n";
  34. echo '<frame src="message_details_top.php?mailbox=' 
  35.     . urlencode($mailbox.'&amp;passed_id=' $passed_id
  36.     . '&amp;passed_ent_id=' $passed_ent_id
  37.     . '" name="top_frame" scrolling="off">';
  38. echo '<frame src="message_details_bottom.php?mailbox=' 
  39.     . urlencode($mailbox.'&amp;passed_id=' $passed_id 
  40.     . '&amp;passed_ent_id=' $passed_ent_id
  41.     . '" name="bottom_frame">';
  42. echo '</frameset>'."\n"."</html>\n";
  43. ?>

Documentation generated on Mon, 13 Jan 2020 04:24:57 +0100 by phpDocumentor 1.4.3