AW: POP3: UIDL for message

2023-05-30 Thread Patrick Schlangen via curl-library
. Mai 2023 09:31 An: curl-library@lists.haxx.se Cc: Сергей - Betreff: POP3: UIDL for message I'm trying to get a UIDL via POP3 for a specific message, but libcurl freezes. Receiving UIDL for all messages works fine. My simple example: CURL *curl; CURLcode res = CURLE_OK;

POP3: UIDL for message

2023-05-30 Thread Сергей - via curl-library
I'm trying to get a UIDL via POP3 for a specific message, but libcurl freezes. Receiving UIDL for all messages works fine. My simple example: CURL *curl; CURLcode res = CURLE_OK; curl = curl_easy_init(); char* cmd1="UIDL"; curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);