diff options
author | Steve Holme <steve_holme@hotmail.com> | 2012-06-02 22:11:37 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2012-06-02 22:11:37 +0100 |
commit | 69ba0da8272d7bddeef518670d4c1298b0627ad7 (patch) | |
tree | b1bd8255b0ad173428affdb95ef38303ed60e116 /RELEASE-NOTES | |
parent | 1fa2af5136e1167bfc18a128d16a89865ca5065a (diff) | |
download | curl-69ba0da8272d7bddeef518670d4c1298b0627ad7.tar.gz |
pop3: Fixed the issue of having to supply the user name for all requests
Previously it wasn't possible to connect to POP3 and not specify the
user name as a CURLE_ACCESS_DENIED error would be returned. This error
occurred because USER would be sent to the server with a blank user name
if no mailbox user was specified as the server would reply with -ERR.
This wasn't a problem prior to the 7.26.0 release but with the
introduction of custom commands the user and/or application developer
might want to issue a CAPA command without having to log in as a
specific mailbox user.
Additionally this fix won't send the newly introduced AUTH command if no
user name is specified.
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 3352e8f8b..115d6a3f1 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -14,6 +14,7 @@ This release includes the following changes: This release includes the following bugfixes: + o pop3: Fixed the issue of having to supply the user name for all requests o This release includes the following known bugs: |