adapt layout to fit in read_body + fix for comp_in_new stuff
[squirrelmail.git] / plugins / listcommands / setup.php
CommitLineData
73ee43b1 1<?php
519f07d7 2
3/**
4 * setup.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
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() {
050722c4 24 global $imapConnection, $passed_id, $color, $mailbox,
9da70022 25 $message, $ent_num, $priority_level, $compose_new_win, $uid_support;
8beb6b5b 26
27 $subject = trim($message->header->subject);
73ee43b1 28
d54c9a9c 29 /**
30 * Array of commands we can deal with from the header. The Reply option
31 * is added later because we generate it using the Post information.
73ee43b1 32 */
d54c9a9c 33 $fieldsdescr = array('Post' => _("Post to List"),
34 'Reply' => _("Reply to List"),
35 'Subscribe' => _("Subscribe"),
36 'Unsubscribe' => _("Unsubscribe"),
37 'Archive' => _("List Archives"),
38 'Owner' => _("Contact Listowner"),
39 'Help' => _("Help"));
40 $fields = array_keys($fieldsdescr);
41
42 $sorted_cmds = array();
43 $unsorted_cmds = array();
73ee43b1 44 $output = array();
45
46 $lfields = 'List-' . implode (' List-', $fields);
47
9da70022 48 $sid = sqimap_session_id($uid_support);
73ee43b1 49 fputs ($imapConnection, "$sid FETCH $passed_id BODY.PEEK[HEADER.FIELDS ($lfields)]\r\n");
d54c9a9c 50 $read = sqimap_read_data($imapConnection, $sid, true, $response, $emessage);
73ee43b1 51
050722c4 52 for ($i = 1; $i < count($read); $i++) {
53 foreach ($fields as $field) {
54 if ( preg_match("/^List-$field: *<(.+?)>/i", $read[$i], $match) ) {
d54c9a9c 55 $unsorted_cmds[$field] = $match[1];
56 }
57 }
58 }
59
60 if (count($unsorted_cmds) == 0) {
61 return;
62 }
63
64 foreach ($fields as $field) {
65 foreach ($unsorted_cmds as $cmd => $url) {
66 if ($field == $cmd) {
67 $cmds[$cmd] = $url;
73ee43b1 68 }
69 }
70 }
71
050722c4 72 foreach ($cmds as $cmd => $url) {
d54c9a9c 73 if (eregi('mailto:(.+)', $url, $regs)) {
73ee43b1 74 $purl = parse_url($url);
050722c4 75
d54c9a9c 76 if (($cmd == 'Post') || ($cmd == 'Owner')) {
73ee43b1 77 $url = 'compose.php?';
050722c4 78 } else {
f6f50b4d 79 $url = "../plugins/listcommands/mailout.php?action=$cmd&amp;";
d6ba3a2d 80
73ee43b1 81 }
d6ba3a2d 82 $url .= '&amp;send_to=' . $purl['path'];
050722c4 83
d54c9a9c 84 if (isset($purl['query'])) {
f6f50b4d 85 $url .= '&amp;' . $purl['query'];
73ee43b1 86 }
9c3e6cd4 87 if ($compose_new_win == '1') {
d6ba3a2d 88 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr[$cmd] . '</A>';
9c3e6cd4 89 }
90 else {
91 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr[$cmd] . '</A>';
92 }
d54c9a9c 93 if ($cmd == 'Post') {
d6ba3a2d 94 $url .= '&amp;passed_id='.$passed_id.
95 '&amp;mailbox='.urlencode($mailbox).
96 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
97 $url .= '&amp;action=reply';
91e33f2c 98 if ($compose_new_win == '1') {
d6ba3a2d 99 $output[] = "<A HREF=\"javascript:void(0)\" onClick=\"comp_in_new('$url')\">" . $fieldsdescr['Reply'] . '</A>';
91e33f2c 100 }
101 else {
102 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr['Reply'] . '</A>';
103 }
9c3e6cd4 104 }
d54c9a9c 105 } else if (eregi('^(http|ftp)', $url)) {
106 $output[] = '<A HREF="' . $url . '" TARGET="_blank">'
107 . $fieldsdescr[$cmd] . '</A>';
73ee43b1 108 }
73ee43b1 109 }
110
73ee43b1 111 if (count($output) > 0) {
d6ba3a2d 112 echo '<table width="100%" cellpadding="3" cellspacing="0" align="center"'.
113 ' border="0" bgcolor="'.$color[0].'">'. "\n";
114 echo '<tr>';
115 echo html_tag( 'td', '<b>'._("Mailing List").':&nbsp;&nbsp;</b>', 'right', $color[0], 'valign="top" width="20%"') . "\n";
116 echo html_tag( 'td',
117 '<small>' . implode('&nbsp;|&nbsp;', $output) . '</small>', 'left', $color[0], 'valign="top" width="80%"');
118 echo "\n</tr>";
119 echo '</table>'."\n";
73ee43b1 120 }
050722c4 121}
d54c9a9c 122
123?>