mirror of
https://github.com/curl/curl.git
synced 2026-07-23 17:47:15 +03:00
imap: remove automatic password setting: it breaks external sasl authentication
This commit is contained in:
parent
0d24f64473
commit
fe79f20957
1 changed files with 2 additions and 3 deletions
|
|
@ -133,7 +133,7 @@ const struct Curl_handler Curl_handler_imap = {
|
|||
ZERO_NULL, /* readwrite */
|
||||
PORT_IMAP, /* defport */
|
||||
CURLPROTO_IMAP, /* protocol */
|
||||
PROTOPT_CLOSEACTION | PROTOPT_NEEDSPWD /* flags */
|
||||
PROTOPT_CLOSEACTION /* flags */
|
||||
};
|
||||
|
||||
#ifdef USE_SSL
|
||||
|
|
@ -158,8 +158,7 @@ const struct Curl_handler Curl_handler_imaps = {
|
|||
ZERO_NULL, /* readwrite */
|
||||
PORT_IMAPS, /* defport */
|
||||
CURLPROTO_IMAPS, /* protocol */
|
||||
PROTOPT_CLOSEACTION | PROTOPT_SSL |
|
||||
PROTOPT_NEEDSPWD /* flags */
|
||||
PROTOPT_CLOSEACTION | PROTOPT_SSL /* flags */
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue