9383d751b954398be417157ca964041c3e38ba34
4 * Message Details plugin - main setup script
6 * Plugin to view the RFC822 raw message output and the bodystructure of a message
8 * @author Marc Groot Koerkamp
9 * @copyright 2002 Marc Groot Koerkamp, The Netherlands
10 * @copyright 2002-2019 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
14 * @subpackage message_details
18 * Initialize the plugin
21 function squirrelmail_plugin_init_message_details()
23 global $squirrelmail_plugin_hooks;
25 $squirrelmail_plugin_hooks['read_body_header_right']['message_details'] = 'show_message_details';
29 * Add message details link in message view
32 function show_message_details(&$links) {
33 global $passed_id, $mailbox, $passed_ent_id;
35 if (strlen(trim($mailbox)) < 1) {
39 $params = '?passed_ent_id=' . $passed_ent_id .
40 '&mailbox=' . urlencode($mailbox) .
41 '&passed_id=' . $passed_id;
43 $url = checkForJavascript() ?
'javascript:MessageSource();' :
44 '../plugins/message_details/message_details_main.php' .
47 /* Output the link. */
48 $links[] = array('URL' => $url,
49 'Text' => _("View Message Details") );
51 if (checkForJavascript()) {
52 echo '<script type="text/javascript">' . "\n"
54 . " function MessageSource() {\n"
57 . 'plugins/message_details/message_details_main.php' .
58 $params . '","MessageDetails","width=800,height=600");' . "\n"