00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 00023 /* <DESC> 00024 * IMAP example showing how to modify the properties of an e-mail 00025 * </DESC> 00026 */ 00027 00028 #include <stdio.h> 00029 #include <curl/curl.h> 00030 00031 /* This is a simple example showing how to modify an existing mail using 00032 * libcurl's IMAP capabilities with the STORE command. 00033 * 00034 * Note that this example requires libcurl 7.30.0 or above. 00035 */ 00036 00037 int main(void) 00038 { 00039 CURL *curl; 00040 CURLcode res = CURLE_OK; 00041 00042 curl = curl_easy_init(); 00043 if(curl) { 00044 /* Set username and password */ 00045 curl_easy_setopt(curl, CURLOPT_USERNAME, "user"); 00046 curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret"); 00047 00048 /* This is the mailbox folder to select */ 00049 curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com/INBOX"); 00050 00051 /* Set the STORE command with the Deleted flag for message 1. Note that 00052 * you can use the STORE command to set other flags such as Seen, Answered, 00053 * Flagged, Draft and Recent. */ 00054 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "STORE 1 +Flags \\Deleted"); 00055 00056 /* Perform the custom request */ 00057 res = curl_easy_perform(curl); 00058 00059 /* Check for errors */ 00060 if(res != CURLE_OK) 00061 fprintf(stderr, "curl_easy_perform() failed: %s\n", 00062 curl_easy_strerror(res)); 00063 else { 00064 /* Set the EXPUNGE command, although you can use the CLOSE command if you 00065 * don't want to know the result of the STORE */ 00066 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "EXPUNGE"); 00067 00068 /* Perform the second custom request */ 00069 res = curl_easy_perform(curl); 00070 00071 /* Check for errors */ 00072 if(res != CURLE_OK) 00073 fprintf(stderr, "curl_easy_perform() failed: %s\n", 00074 curl_easy_strerror(res)); 00075 } 00076 00077 /* Always cleanup */ 00078 curl_easy_cleanup(curl); 00079 } 00080 00081 return (int)res; 00082 }