Cache the base url (protocol://host:port) in the session to make it
[squirrelmail.git] / plugins / listcommands / setup.php
1 <?php
2
3 /**
4 * setup.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Implementation of RFC 2369 for SquirrelMail.
10 * When viewing a message from a mailinglist complying with this RFC,
11 * this plugin displays a menu which gives the user a choice of mailinglist
12 * commands such as (un)subscribe, help and list archives.
13 *
14 * $Id$
15 */
16
17 function squirrelmail_plugin_init_listcommands () {
18 global $squirrelmail_plugin_hooks;
19
20 $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';
21 }
22
23 function plugin_listcommands_menu() {
24 global $passed_id, $passed_ent_id, $color, $mailbox,
25 $message, $compose_new_win;
26
27 /**
28 * Array of commands we can deal with from the header. The Reply option
29 * is added later because we generate it using the Post information.
30 */
31 $fieldsdescr = array('post' => _("Post to List"),
32 'reply' => _("Reply to List"),
33 'subscribe' => _("Subscribe"),
34 'unsubscribe' => _("Unsubscribe"),
35 'archive' => _("List Archives"),
36 'owner' => _("Contact Listowner"),
37 'help' => _("Help"));
38 $output = array();
39
40 foreach ($message->rfc822_header->mlist as $cmd => $actions) {
41
42 /* I don't know this action... skip it */
43 if ( ( function_exists('array_key_exists') && /* PHP >= 4.1 */
44 !array_key_exists($cmd, $fieldsdescr) ) ||
45 !key_exists($cmd, $fieldsdescr) /* PHP == 4.0.6 */
46 ) {
47 continue;
48 }
49
50 /* proto = {mailto,href} */
51 $proto = array_shift(array_keys($actions));
52 $act = array_shift($actions);
53
54 if ($proto == 'mailto') {
55
56 if (($cmd == 'post') || ($cmd == 'owner')) {
57 $url = 'compose.php?';
58 } else {
59 $url = "../plugins/listcommands/mailout.php?action=$cmd&amp;";
60 }
61 $url .= 'send_to=' . strtr($act,'?','&');
62
63 if ($compose_new_win == '1') {
64 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr[$cmd] . '</a>';
65 }
66 else {
67 $output[] = '<a href="' . $url . '">' . $fieldsdescr[$cmd] . '</a>';
68 }
69 if ($cmd == 'post') {
70 $url .= '&amp;passed_id='.$passed_id.
71 '&amp;mailbox='.urlencode($mailbox).
72 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
73 $url .= '&amp;action=reply';
74 if ($compose_new_win == '1') {
75 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr['reply'] . '</a>';
76 } else {
77 $output[] = '<a href="' . $url . '">' . $fieldsdescr['reply'] . '</a>';
78 }
79 }
80 } else if ($proto == 'href') {
81 $output[] = '<a href="' . $act . '" target="_blank">'
82 . $fieldsdescr[$cmd] . '</a>';
83 }
84 }
85
86 if (count($output) > 0) {
87 echo '<tr>';
88 echo html_tag('td', '<b>' . _("Mailing List") . ':&nbsp;&nbsp;</b>',
89 'right', '', 'valign="middle" width="20%"') . "\n";
90 echo html_tag('td', '<small>' . implode('&nbsp;|&nbsp;', $output) . '</small>',
91 'left', $color[0], 'valign="middle" width="80%"') . "\n";
92 echo '</tr>';
93 }
94 }
95
96 ?>