X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fspamcop%2Fsetup.php;h=9f0c2a6cdafa5ce895f3d8cc6a9372e67babef9f;hb=eaddf11f4c08b8a19396d50c8f80c2360f71d70a;hp=835884dd06868e3d80a7faf7f71a01f8c6661b8e;hpb=0dabfa7f269b2fcbbff713a49f8d58069a13a305;p=squirrelmail.git diff --git a/plugins/spamcop/setup.php b/plugins/spamcop/setup.php index 835884dd..9f0c2a6c 100755 --- a/plugins/spamcop/setup.php +++ b/plugins/spamcop/setup.php @@ -1,127 +1,157 @@ \n"; - - if ($spamcop_method == 'web_form') { -?> + + _("SpamCop - Spam Reporting"), - 'url' => '../plugins/spamcop/options.php', - 'desc' => _("Help fight the battle against unsolicited email. SpamCop reads the spam email and determines the correct addresses to send complaints to. Quite fast, really smart, and easy to use."), - 'js' => false - ); + global $optpage_blocks; + + $optpage_blocks[] = array( + 'name' => _("SpamCop - Spam Reporting"), + 'url' => '../plugins/spamcop/options.php', + 'desc' => _("Help fight the battle against unsolicited email. SpamCop reads the spam email and determines the correct addresses to send complaints to. Quite fast, really smart, and easy to use."), + 'js' => false + ); } -// When we send the email, we optionally trash it then too +/** + * When we send the email, we optionally trash it then too + * @access private + */ function spamcop_while_sending() { - global $mailbox, $spamcop_delete, $spamcop_is_composing, $auto_expunge, - $username, $key, $imapServerAddress, $imapPort; - - if ($spamcop_delete) { - $imapConnection = sqimap_login($username, $key, $imapServerAddress, - $imapPort, 0); - sqimap_mailbox_select($imapConnection, $mailbox); - sqimap_messages_delete($imapConnection, $spamcop_is_composing, - $spamcop_is_composing, $mailbox); - if ($auto_expunge) - sqimap_mailbox_expunge($imapConnection, $mailbox, true); - } + global $mailbox, $spamcop_delete, $spamcop_is_composing, $auto_expunge, + $username, $key, $imapServerAddress, $imapPort; + + if ($spamcop_delete) { + $imapConnection = sqimap_login($username, $key, $imapServerAddress, + $imapPort, 0); + sqimap_mailbox_select($imapConnection, $mailbox); + sqimap_messages_delete($imapConnection, $spamcop_is_composing, + $spamcop_is_composing, $mailbox); + if ($auto_expunge) + sqimap_mailbox_expunge($imapConnection, $mailbox, true); + } } -?> +?> \ No newline at end of file