- $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed...
[squirrelmail.git] / plugins / mail_fetch / class.POP3.php
index ee1fa2c7c17f93317e38ab2ad45822eecb12955f..28daed7c090574dd98ef07a9d34734ae96cc58da 100644 (file)
@@ -1,17 +1,16 @@
 <?php
+
 /**
  * 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
  *
+ * @copyright &copy; 1999-2005 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package plugins
  * @subpackage mail_fetch
@@ -146,7 +145,7 @@ class POP3 {
         } else {
             $reply = $this->send_cmd("PASS $pass");
             if(!$this->is_ok($reply)) {
-                $this->ERROR = _("POP3 pass:") . ' ' . _("authentication failed ") . "[$reply]";
+                $this->ERROR = _("POP3 pass:") . ' ' . _("Authentication failed") . " [$reply]";
                 $this->quit();
                 return false;
             } else {