From 838f91590253f77151ce07fee12e3cef895cace9 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Fri, 7 Jan 2000 23:07:23 +0000 Subject: [PATCH] Quoted the login session to hopefully fix some bugs git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@136 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- ChangeLog | 3 +++ functions/imap.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cce226d7..7ea36648 100644 --- a/ChangeLog +++ b/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) diff --git a/functions/imap.php b/functions/imap.php index 667d9c4b..d700c84e 100644 --- a/functions/imap.php +++ b/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
"; -- 2.25.1