6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
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.
17 function squirrelmail_plugin_init_listcommands () {
18 global $squirrelmail_plugin_hooks;
20 $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';
23 function plugin_listcommands_menu() {
24 global $passed_id, $passed_ent_id, $color, $mailbox,
25 $message, $compose_new_win;
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.
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"),
39 foreach ($message->rfc822_header
->mlist
as $cmd => $actions) {
41 /* I don't know this action... skip it */
42 if(!array_key_exists($cmd, $fieldsdescr)) {
46 /* proto = {mailto,href} */
47 $proto = array_shift(array_keys($actions));
48 $act = array_shift($actions);
50 if ($proto == 'mailto') {
52 if (($cmd == 'post') ||
($cmd == 'owner')) {
53 $url = 'compose.php?';
55 $url = "../plugins/listcommands/mailout.php?action=$cmd&";
57 $url .= 'send_to=' . strtr($act,'?','&');
59 if ($compose_new_win == '1') {
60 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr[$cmd] . '</A>';
63 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr[$cmd] . '</A>';
66 $url .= '&passed_id='.$passed_id.
67 '&mailbox='.urlencode($mailbox).
68 (isset($passed_ent_id)?
'&passed_ent_id='.$passed_ent_id:'');
69 $url .= '&action=reply';
70 if ($compose_new_win == '1') {
71 $output[] = "<A HREF=\"javascript:void(0)\" onClick=\"comp_in_new('$url')\">" . $fieldsdescr['reply'] . '</A>';
74 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr['reply'] . '</A>';
77 } elseif ($proto == 'href') {
78 $output[] = '<A HREF="' . $act . '" TARGET="_blank">'
79 . $fieldsdescr[$cmd] . '</A>';
83 if (count($output) > 0) {
84 echo '<table width="100%" cellpadding="3" cellspacing="0" align="center"'.
85 ' border="0" bgcolor="'.$color[0].'">'. "\n";
87 echo html_tag( 'td', '<b>'._("Mailing List").': </b>', 'right', $color[0], 'valign="top" width="20%"') . "\n";
89 '<small>' . implode(' | ', $output) . '</small>', 'left', $color[0], 'valign="top" width="80%"');