X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_header.php;h=3d6652f31f272f995f773cc1554117d10e54e4c8;hp=9e3c7411de5e92f2ec33a7337d86efe487e8ae1f;hb=c4faef335b2362c81b8ebf026d4066c12d70536c;hpb=79ba18dc89b1b096ecdf0b77169d57e0caf661db diff --git a/src/view_header.php b/src/view_header.php index 9e3c7411..3d6652f3 100644 --- a/src/view_header.php +++ b/src/view_header.php @@ -5,7 +5,7 @@ * * This is the code to view the message header. * - * @copyright 1999-2013 The SquirrelMail Project Team + * @copyright 1999-2020 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -23,7 +23,21 @@ require('../include/init.php'); require_once(SM_PATH . 'functions/imap.php'); require_once(SM_PATH . 'functions/url_parser.php'); -function parse_viewheader($imapConnection,$id, $passed_ent_id) { +/** + * Extract message headers + * + * @param resource $imapConnection + * @param string $id Message ID + * @param string $passed_ent_id Nested/attached/embedded message ID (if any) + * + * @return array List of all message headers, where each + * element is a sub-array that contains two + * elements: header name and header value + * (in that order) where the header value is + * HTML-formatted, ready for display in browser + * + */ +function parse_viewheader($imapConnection, $id, $passed_ent_id) { $header_output = array(); $second = array(); @@ -93,8 +107,9 @@ if ( !sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET) ) { } sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); +global $imap_stream_options; // in case not defined in config $imapConnection = sqimap_login($username, false, $imapServerAddress, - $imapPort, 0); + $imapPort, 0, $imap_stream_options); $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox, false, false, true); $header = parse_viewheader($imapConnection,$passed_id, $passed_ent_id);