Fixed (c) headers. (I hope nothing has been messed up)
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 15 Nov 2001 09:50:28 +0000 (09:50 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 15 Nov 2001 09:50:28 +0000 (09:50 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1754 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/filters/filters.php
plugins/filters/options.php
plugins/filters/setup.php
plugins/filters/sqimap_read_data.php [deleted file]

index a919086ad9626ad84370741c133f9ae9731e3696..d4d487df4b5136a9fbc5e53c641e00415550e4c6 100644 (file)
@@ -1,10 +1,8 @@
 <?php
    /*
-    *  Message and Spam Filter Plugin 
-    *  By Luke Ehresman <luke@squirrelmail.org>
-    *     Tyler Akins
-    *     Brent Bice
-    *  (c) 2000 (GNU GPL - see ../../COPYING)
+    * Message and Spam Filter Plugin 
+    * Copyright (c) 1999-2001 The Squirrelmail Development Team
+    * Licensed under the GNU GPL. For full terms see the file COPYING.
     *
     *  This plugin filters your inbox into different folders based upon given
     *  criteria.  It is most useful for people who are subscibed to mailing lists
@@ -22,6 +20,8 @@
     *
     *  Also view plugins/README.plugins for more information.
     *
+    * $Id$    
+    *
     */
     
    function start_filters() {
index 5160a93f664febc13094634a5b34ea917f12d9e3..21582d9a9dbe1c6ee8ec043f6f6b310727f9abf1 100644 (file)
@@ -1,10 +1,8 @@
 <?php
    /*
     *  Message and Spam Filter Plugin
-    *  By Luke Ehresman <luke@squirrelmail.org>
-    *     Tyler Akins
-    *     Brent Bice
-    *  (c) 2000 (GNU GPL - see ../../COPYING)
+    *  Copyright (c) 1999-2001 The Squirrelmail Development Team
+    *  Licensed under the GNU GPL. For full terms see the file COPYING.
     *
     *  This plugin filters your inbox into different folders based upon given
     *  criteria.  It is most useful for people who are subscibed to mailing lists
     *
     *  Also view plugins/README.plugins for more information.
     *
+    *  $Id$
+    *
     */
+    
    chdir('..');
    require_once('../src/validate.php');
    require_once('../functions/page_header.php');
index 19057390d102dac1e6551769ba14f81f16ab9c69..03decc5a28e9b1e5d2d7f95bfd35ec4c10ea84bc 100644 (file)
@@ -1,10 +1,8 @@
 <?php
    /*
     *  Message and Spam Filter Plugin
-    *  By Luke Ehresman <luke@squirrelmail.org>
-    *     Tyler Akins
-    *     Brent Bice
-    *  (c) 2000 (GNU GPL - see ../../COPYING)
+    *  Copyright (c) 1999-2001 The Squirrelmail Development Team
+    *  Licensed under the GNU GPL. For full terms see the file COPYING.
     *
     *  This plugin filters your inbox into different folders based upon given
     *  criteria.  It is most useful for people who are subscibed to mailing lists
@@ -22,6 +20,8 @@
     *
     *  Also view plugins/README.plugins for more information.
     *
+    *  $Id$
+    *
     */
 
    // Set this to true if you have problems -- check the README file
diff --git a/plugins/filters/sqimap_read_data.php b/plugins/filters/sqimap_read_data.php
deleted file mode 100644 (file)
index 686b9e6..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-   /******************************************************************************
-    **  Reads the output from the IMAP stream.  If handle_errors is set to true,
-    **  this will also handle all errors that are received.  If it is not set,
-    **  the errors will be sent back through $response and $message
-    ******************************************************************************/
-   function sqimap_read_data ($imap_stream, $pre, $handle_errors, &$response, &$message) {
-      global $color, $squirrelmail_language, $imap_general_debug;
-
-      $data = array();
-      $size = 0;
-
-      do {
-         $read = fgets($imap_stream, 9096);
-         if (ereg("^$pre (OK|BAD|NO)(.*)$", $read, $regs)) {
-            break;  // found end of reply
-         }
-
-         // Continue if needed for this single line
-         while (strpos($read, "\n") === false) {
-            $read .= fgets($imap_stream, 9096);
-         }
-
-         $data[] = $read;
-
-         if (ereg("^\\* [0-9]+ FETCH.*\\{([0-9]+)\\}", $read, $regs)) {
-            $size = $regs[1];
-            if ($imap_general_debug) {
-               echo "<small><tt><font color=\"#CC0000\">Size is $size</font></tt></small><br>\n";
-            }
-
-            $total_size = 0;
-            do {
-               $read = fgets($imap_stream, 9096);
-               if ($imap_general_debug) {
-                  echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
-                  flush();
-               }
-               $data[] = $read;
-               $total_size += strlen($read);
-            } while ($total_size < $size);
-
-            $size = 0;
-         }
-         // For debugging purposes
-         if ($imap_general_debug) {
-            echo "<small><tt><font color=\"#CC0000\">$read</font></tt></small><br>\n";
-            flush();
-         }
-      } while (true);
-
-      $response = $regs[1];
-      $message = trim($regs[2]);
-
-      if ($imap_general_debug) echo '--<br>';
-
-      if ($handle_errors == false)
-          return $data;
-      if ($response == 'NO') {
-         // ignore this error from m$ exchange, it is not fatal (aka bug)
-         if (strstr($message, 'command resulted in') === false) {
-            set_up_language($squirrelmail_language);
-            echo "<br><b><font color=$color[2]>\n";
-            echo _("ERROR : Could not complete request.");
-            echo "</b><br>\n";
-            echo _("Reason Given: ");
-            echo $message . "</font><br>\n";
-            exit;
-         }
-      } else if ($response == 'BAD') {
-         set_up_language($squirrelmail_language);
-         echo "<br><b><font color=$color[2]>\n";
-         echo _("ERROR : Bad or malformed request.");
-         echo "</b><br>\n";
-         echo _("Server responded: ");
-         echo $message . "</font><br>\n";
-         exit;
-      }
-
-      return $data;
-   }
\ No newline at end of file