Add a META robots noindex/nofollow tag to SquirrelMail generated output.
[squirrelmail.git] / plugins / mail_fetch / class.POP3.php
index 046bb77cdb954cd4f8766176681c3e37fdf905c5..81ba34d8c496f636679a355acbbefbf0c143094d 100644 (file)
@@ -1,25 +1,25 @@
-<?php 
-
-   /**
-    * mail_fetch/setup.php
-    *
-    * Copyright (c) 1999-2004 The SquirrelMail Project Team
-    *
-    * Copyright (c) 1999 CDI (cdi@thewebmasters.net) All Rights Reserved
-    * Modified by Philippe Mingo 2001 mingo@rotedic.com
-    * An RFC 1939 compliant wrapper class for the POP3 protocol.
-    *
-    * Licensed under the GNU GPL. For full terms see the file COPYING.
-    *
-    * pop3 class
-    *
-    * $Id$
-    * @package plugins
-    * @subpackage mail_fetch
-    */
+<?php
 
 /**
- * This is the pop3 class - DOCUMENT ME
+ * mail_fetch/class.POP3.php
+ *
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
+ *
+ * Copyright (c) 1999 CDI (cdi@thewebmasters.net) All Rights Reserved
+ * Modified by Philippe Mingo 2001 mingo@rotedic.com
+ * An RFC 1939 compliant wrapper class for the POP3 protocol.
+ *
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * POP3 class
+ *
+ * @version $Id$
+ * @package plugins
+ * @subpackage mail_fetch
+ */
+
+/**
+ * This is the POP3 class - DOCUMENT ME
  * @package squirrelmail
  */
 class POP3 {
@@ -79,8 +79,8 @@ class POP3 {
         //  port defaults to 110. Returns true on success, false on fail
 
         // If MAILSERVER is set, override $server with it's value
-       
-       if (!isset($port) || !$port) {$port = 110;}
+
+        if (!isset($port) || !$port) {$port = 110;}
         if(!empty($this->MAILSERVER))
             $server = $this->MAILSERVER;
 
@@ -653,4 +653,4 @@ class POP3 {
 
 }   // End class
 
-?>
+?>
\ No newline at end of file