update README to reflect inclusion in squirrelmail-core-plugins
[squirrelmail.git] / plugins / listcommands / setup.php
CommitLineData
73ee43b1 1<?php
519f07d7 2
3/**
4 * setup.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 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$
ea5f4b8e 15 * @package plugins
16 * @subpackage listcommands
73ee43b1 17 */
519f07d7 18
ea5f4b8e 19/**
20 * Initialize the listcommands plugin
21 */
519f07d7 22function squirrelmail_plugin_init_listcommands () {
73ee43b1 23 global $squirrelmail_plugin_hooks;
24
25 $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';
26}
27
d54c9a9c 28function plugin_listcommands_menu() {
e527e60e 29 global $passed_id, $passed_ent_id, $color, $mailbox, $message, $startMessage;
73ee43b1 30
d54c9a9c 31 /**
32 * Array of commands we can deal with from the header. The Reply option
33 * is added later because we generate it using the Post information.
73ee43b1 34 */
83feb57a 35 $fieldsdescr = array('post' => _("Post to List"),
36 'reply' => _("Reply to List"),
37 'subscribe' => _("Subscribe"),
38 'unsubscribe' => _("Unsubscribe"),
39 'archive' => _("List Archives"),
40 'owner' => _("Contact Listowner"),
41 'help' => _("Help"));
ff5d0719 42 $output = array();
83feb57a 43
44 foreach ($message->rfc822_header->mlist as $cmd => $actions) {
45
91e0dccc 46 /* I don't know this action... skip it */
47 if ( !array_key_exists($cmd, $fieldsdescr) ) {
83feb57a 48 continue;
d54c9a9c 49 }
d54c9a9c 50
83feb57a 51 /* proto = {mailto,href} */
91e0dccc 52 $proto = array_shift(array_keys($actions));
53 $act = array_shift($actions);
73ee43b1 54
83feb57a 55 if ($proto == 'mailto') {
050722c4 56
83feb57a 57 if (($cmd == 'post') || ($cmd == 'owner')) {
e527e60e 58 $url = 'src/compose.php?'.
fdc1ca19 59 (isset($startMessage)?'startMessage='.$startMessage.'&amp;':'');
050722c4 60 } else {
d62c4938 61 $url = "plugins/listcommands/mailout.php?action=$cmd&amp;";
73ee43b1 62 }
83feb57a 63 $url .= 'send_to=' . strtr($act,'?','&');
050722c4 64
d62c4938 65 $output[] = makeComposeLink($url, $fieldsdescr[$cmd]);
66
83feb57a 67 if ($cmd == 'post') {
df2c5bc9 68 if (!isset($mailbox))
69 $mailbox = 'INBOX';
91e0dccc 70 $url .= '&amp;passed_id='.$passed_id.
71 '&amp;mailbox='.urlencode($mailbox).
72 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
84d12179 73 $url .= '&amp;smaction=reply';
d62c4938 74
75 $output[] = makeComposeLink($url, $fieldsdescr['reply']);
9c3e6cd4 76 }
9feb4369 77 } else if ($proto == 'href') {
b1379bdf 78 $output[] = '<a href="' . $act . '" target="_blank">'
79 . $fieldsdescr[$cmd] . '</a>';
73ee43b1 80 }
73ee43b1 81 }
82
73ee43b1 83 if (count($output) > 0) {
b1379bdf 84 echo '<tr>';
85 echo html_tag('td', '<b>' . _("Mailing List") . ':&nbsp;&nbsp;</b>',
86 'right', '', 'valign="middle" width="20%"') . "\n";
87 echo html_tag('td', '<small>' . implode('&nbsp;|&nbsp;', $output) . '</small>',
88 'left', $color[0], 'valign="middle" width="80%"') . "\n";
89 echo '</tr>';
73ee43b1 90 }
050722c4 91}
d54c9a9c 92
e50f5ac2 93?>