Undo fix for PHP 4.0.4 since SquirrelMail doesn't work reliably with 4.0.4
[squirrelmail.git] / plugins / listcommands / setup.php
CommitLineData
73ee43b1 1<?php
519f07d7 2
3/**
4 * setup.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
519f07d7 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
73ee43b1 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 *
519f07d7 14 * $Id$
73ee43b1 15 */
519f07d7 16
17function squirrelmail_plugin_init_listcommands () {
73ee43b1 18 global $squirrelmail_plugin_hooks;
19
20 $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';
21}
22
d54c9a9c 23function plugin_listcommands_menu() {
83feb57a 24 global $passed_id, $passed_ent_id, $color, $mailbox,
25 $message, $compose_new_win;
73ee43b1 26
d54c9a9c 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.
73ee43b1 30 */
83feb57a 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"));
ff5d0719 38 $output = array();
83feb57a 39
40 foreach ($message->rfc822_header->mlist as $cmd => $actions) {
41
42 /* I don't know this action... skip it */
b1784aaf 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 ) {
83feb57a 47 continue;
d54c9a9c 48 }
d54c9a9c 49
83feb57a 50 /* proto = {mailto,href} */
51 $proto = array_shift(array_keys($actions));
52 $act = array_shift($actions);
73ee43b1 53
83feb57a 54 if ($proto == 'mailto') {
050722c4 55
83feb57a 56 if (($cmd == 'post') || ($cmd == 'owner')) {
73ee43b1 57 $url = 'compose.php?';
050722c4 58 } else {
f6f50b4d 59 $url = "../plugins/listcommands/mailout.php?action=$cmd&amp;";
73ee43b1 60 }
83feb57a 61 $url .= 'send_to=' . strtr($act,'?','&');
050722c4 62
9c3e6cd4 63 if ($compose_new_win == '1') {
b1379bdf 64 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr[$cmd] . '</a>';
9c3e6cd4 65 }
66 else {
b1379bdf 67 $output[] = '<a href="' . $url . '">' . $fieldsdescr[$cmd] . '</a>';
9c3e6cd4 68 }
83feb57a 69 if ($cmd == 'post') {
d6ba3a2d 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';
91e33f2c 74 if ($compose_new_win == '1') {
b1379bdf 75 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr['reply'] . '</a>';
9feb4369 76 } else {
b1379bdf 77 $output[] = '<a href="' . $url . '">' . $fieldsdescr['reply'] . '</a>';
91e33f2c 78 }
9c3e6cd4 79 }
9feb4369 80 } else if ($proto == 'href') {
b1379bdf 81 $output[] = '<a href="' . $act . '" target="_blank">'
82 . $fieldsdescr[$cmd] . '</a>';
73ee43b1 83 }
73ee43b1 84 }
85
73ee43b1 86 if (count($output) > 0) {
b1379bdf 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>';
73ee43b1 93 }
050722c4 94}
d54c9a9c 95
96?>