Browse Source

Quoted the login session to hopefully fix some bugs

Luke Ehresman 25 years ago
parent
commit
b318821249
2 changed files with 4 additions and 1 deletions
  1. 3 0
      ChangeLog
  2. 1 1
      functions/imap.php

+ 3 - 0
ChangeLog

@@ -8,6 +8,9 @@ Version 0.3pre1 -- Development
     Wrap incoming text at XX characters
     Editor window size (in characters)
 - Rewrote SMTP functions.  It now works and handles error correction.
+- Only folders that you're subscribed to will be listed
+- Fixed a bug in outbound messages that translated " into \"
+- Added themes in distrobution (7 total)
 
 
 

+ 1 - 1
functions/imap.php

@@ -100,7 +100,7 @@
       $serverInfo = fgets($imapConnection, 256);
  
       // login
-      fputs($imapConnection, "a001 LOGIN $username $key\n");
+      fputs($imapConnection, "a001 LOGIN \"$username\" \"$key\"\n");
       $read = fgets($imapConnection, 1024);
       if ($debug_login == true) {
          echo "SERVER SAYS: $read<BR>";