Workarounds for Russian Apache and charsets/attachments problem.
[squirrelmail.git] / src / redirect.php
index 18d96199b2b7a1eb47c525f47e3025e4b9f01c52..b99ad2e04d9c877200ee89455ed420be5fafaec2 100644 (file)
     **  prevents users from reposting their form data after a
     **  successful logout
     **
+    **  $Id$
     **/
 
    if (!isset($strings_php))
       include ("../functions/strings.php");
+   include("../config/config.php");
 
    // Before starting the session, the base URI must be known.
    // Assuming that this file is in the src/ subdirectory (or
       session_register("onetimepad");
       // verify that username and password are correct
       if ($force_username_lowercase)
-          username = strtolower($login_username);
+          $login_username = strtolower($login_username);
       $imapConnection = sqimap_login($login_username, $key, $imapServerAddress, $imapPort, 0);
+         if (!$imapConnection) {
+               exit;
+         }
       sqimap_logout($imapConnection);
 
       setcookie("username", $login_username, 0, $base_uri);