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