Adding template for error box.
[squirrelmail.git] / plugins / spamcop / spamcop.php
... / ...
CommitLineData
1<?php
2
3/**
4 * spamcop.php -- SpamCop plugin -- main page
5 *
6 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
8 * @version $Id$
9 * @package plugins
10 * @subpackage spamcop
11 */
12
13/** @ignore */
14define('SM_PATH','../../');
15
16/* SquirrelMail required files. */
17require_once(SM_PATH . 'include/validate.php');
18include_once(SM_PATH . 'functions/display_messages.php');
19include_once(SM_PATH . 'functions/imap.php');
20/* plugin functions */
21include_once(SM_PATH . 'plugins/spamcop/functions.php');
22
23/* GLOBALS */
24
25sqgetGlobalVar('username', $username, SQ_SESSION);
26sqgetGlobalVar('key', $key, SQ_COOKIE);
27sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
28
29sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
30sqgetGlobalVar('passed_id', $passed_id, SQ_GET);
31sqgetGlobalVar('js_web', $js_web, SQ_GET);
32
33if (! sqgetGlobalVar('startMessage', $startMessage, SQ_GET) ) {
34 $startMessage = 1;
35}
36if (! sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET) ) {
37 $passed_ent_id = 0;
38}
39if (! sqgetGlobalVar('js_web', $js_web, SQ_GET) ) {
40 $js_web = 0;
41}
42
43sqgetGlobalVar('compose_messages', $compose_messages, SQ_SESSION);
44
45if(! sqgetGlobalVar('composesession', $composesession, SQ_SESSION) ) {
46 $composesession = 0;
47 sqsession_register($composesession, 'composesession');
48}
49/* END GLOBALS */
50
51// js_web variable is 1 only when link opens web based report page in new window
52// and in new window menu line or extra javascript code is not needed.
53if ($js_web) {
54 displayHTMLHeader(_("SpamCop reporting"));
55 echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n";
56} else {
57 displayPageHeader($color,$mailbox);
58}
59
60/** is spamcop plugin disabled */
61if (! is_plugin_enabled('spamcop')) {
62 error_box(_("Plugin is disabled."),$color);
63 echo "\n</body></html>\n";
64 exit();
65}
66
67 $imap_stream = sqimap_login($username, $key, $imapServerAddress,
68 $imapPort, 0);
69 sqimap_mailbox_select($imap_stream, $mailbox);
70
71 if ($spamcop_method == 'quick_email' ||
72 $spamcop_method == 'thorough_email') {
73 // Use email-based reporting -- save as an attachment
74 $session = "$composesession"+1;
75 $composesession = $session;
76 sqsession_register($composesession,'composesession');
77 if (!isset($compose_messages)) {
78 $compose_messages = array();
79 }
80 if (!isset($compose_messages[$session]) || ($compose_messages[$session] == NULL)) {
81 $composeMessage = new Message();
82 $rfc822_header = new Rfc822Header();
83 $composeMessage->rfc822_header = $rfc822_header;
84 $composeMessage->reply_rfc822_header = '';
85 $compose_messages[$session] = $composeMessage;
86 sqsession_register($compose_messages,'compose_messages');
87 } else {
88 $composeMessage=$compose_messages[$session];
89 }
90
91
92 $message = sqimap_get_message($imap_stream, $passed_id, $mailbox);
93 $composeMessage = spamcop_getMessage_RFC822_Attachment($message, $composeMessage, $passed_id,
94 $passed_ent_id, $imap_stream);
95
96 $compose_messages[$session] = $composeMessage;
97 sqsession_register($compose_messages, 'compose_messages');
98
99 $fn = getPref($data_dir, $username, 'full_name');
100 $em = getPref($data_dir, $username, 'email_address');
101
102 $HowItLooks = $fn . ' ';
103 if ($em != '')
104 $HowItLooks .= '<' . $em . '>';
105 }
106
107
108echo "<p>";
109echo _("Sending this spam report will give you back a reply with URLs that you can click on to properly report this spam message to the proper authorities. This is a free service. By pressing the \"Send Spam Report\" button, you agree to follow SpamCop's rules/terms of service/etc.");
110echo "</p>";
111
112?>
113
114<table align="center" width="75%" border="0" cellpadding="0" cellspacing="0">
115<tr>
116<td align="left" valign="top">
117<?php if (isset($js_web) && $js_web) {
118 echo '<form method="post" action="javascript:return false">';
119 echo '<input type="button" value="' . _("Close Window") . "\" onclick=\"window.close(); return true;\" />\n";
120} else {
121 ?><form method="post" action="../../src/right_main.php">
122 <input type="hidden" name="mailbox" value="<?php echo htmlspecialchars($mailbox) ?>" />
123 <input type="hidden" name="startMessage" value="<?php echo htmlspecialchars($startMessage) ?>" />
124<?php
125 echo '<input type="submit" value="' . _("Cancel / Done") . "\" />";
126}
127 ?></form>
128</td>
129<td align="right" valign="top">
130<?php if ($spamcop_method == 'thorough_email' ||
131 $spamcop_method == 'quick_email') {
132 if ($spamcop_method == 'thorough_email')
133 $report_email = 'submit.' . $spamcop_id . '@spam.spamcop.net';
134 else
135 $report_email = 'quick.' . $spamcop_id . '@spam.spamcop.net';
136 $form_action = SM_PATH . 'src/compose.php';
137?> <form method="post" action="<?php echo $form_action?>">
138 <input type="hidden" name="mailbox" value="<?php echo htmlspecialchars($mailbox) ?>" />
139 <input type="hidden" name="spamcop_is_composing" value="<?php echo htmlspecialchars($passed_id) ?>" />
140 <input type="hidden" name="send_to" value="<?php echo htmlspecialchars($report_email)?>" />
141 <input type="hidden" name="subject" value="reply anyway" />
142 <input type="hidden" name="identity" value="0" />
143 <input type="hidden" name="session" value="<?php echo $session?>" />
144<?php
145 echo '<input type="submit" name="send" value="' . _("Send Spam Report") . "\" />\n";
146} else {
147 $spam_message = mime_fetch_body ($imap_stream, $passed_id, $passed_ent_id, 50000);
148
149 if (strlen($spam_message) == 50000) {
150 $Warning = "\n[truncated by SpamCop]\n";
151 $spam_message = substr($spam_message, 0, 50000 - strlen($Warning)) . $Warning;
152 }
153 if ($spamcop_type=='member') {
154 $action_url="http://members.spamcop.net/sc";
155 } else {
156 $action_url="http://www.spamcop.net/sc";
157 }
158 if (isset($js_web) && $js_web) {
159 echo "<form method=\"post\" action=\"$action_url\" name=\"submitspam\"".
160 " enctype=\"multipart/form-data\">\n";
161 } else {
162 echo "<form method=\"post\" action=\"$action_url\" name=\"submitspam\"".
163 " enctype=\"multipart/form-data\" target=\"_blank\">\n";
164 } ?>
165 <input type="hidden" name="action" value="submit" />
166 <input type="hidden" name="oldverbose" value="1" />
167 <input type="hidden" name="code" value="<?php echo htmlspecialchars($spamcop_id) ?>" />
168 <input type="hidden" name="spam" value="<?php echo htmlspecialchars($spam_message); ?>" />
169 <?php
170 echo '<input type="submit" name="x1" value="' . _("Send Spam Report") . "\" />\n";
171 }
172?> </form>
173</td>
174</tr>
175</table>
176</body>
177</html>