summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/message/sender.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/message/sender.cpp b/src/message/sender.cpp
index 849f646..a0ef6ee 100644
--- a/src/message/sender.cpp
+++ b/src/message/sender.cpp
@@ -92,7 +92,9 @@ namespace smtp::message
curl_easy_setopt( curl, CURLOPT_READFUNCTION, ReadCallBack );
curl_easy_setopt( curl, CURLOPT_READDATA, &upload_ctx );
- curl_easy_setopt( curl, CURLOPT_UPLOAD, 1L );
+ curl_easy_setopt( curl, CURLOPT_UPLOAD, 1L );
+ curl_easy_setopt( curl, CURLOPT_NOPROGRESS, 1L );
+
return true;
}