从POP3帐户的std :: string电子邮件创建mimetic :: MimeEntity

时间:2013-11-08 13:14:23

标签: c++ libcurl pop3

我目前正在尝试从POP3 Gmail帐户中读取一些邮件,并使用libCurl库执行此任务。我创建了一个 std :: list m_mailsInbox ,它存储了该帐户中每封电子邮件的索引。

正如您所看到的,我正在使用提到的索引在此列表中获取,并且我读取了存储在 std :: string dataEmail 中的每个邮件。在这个变量里面我有邮件的标题和正文,我需要的是使用模仿库创建一个 MimeEntity 对象。

这是我目前的代码:

void MailServer::ReadMails(char *username,char *password)
{
    //fetchs into the list one by one
    for(std::list<MailInbox>::iterator it = m_mailsInbox.begin(); it != m_mailsInbox.end(); ++it)   
    {
        struct MemoryStruct chunkMail;
        chunkMail.memory = (char*) malloc(1);  //it will grow as necessary
        chunkMail.size = 0;    //there's no data at this point

        curl_easy_setopt(handle,CURLOPT_USERNAME,username);
        curl_easy_setopt(handle,CURLOPT_PASSWORD,password);

        m_popsAccount = "pop3s://pop.gmail.com:995/" + it->index;   //creates the URL for the email it->index (i.e: 1)

        curl_easy_setopt(handle, CURLOPT_URL, m_popsAccount.c_str());
        curl_easy_setopt(handle, CURLOPT_USE_SSL, CURLUSESSL_ALL); 
        curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0); 
        curl_easy_setopt(handle, CURLOPT_SSL_VERIFYHOST, 0); 
        curl_easy_setopt(handle, CURLOPT_HEADER, 1); 
        curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, WriteMemoryCallback);
        curl_easy_setopt(handle, CURLOPT_VERBOSE, 1); 

        curl_easy_setopt(handle, CURLOPT_WRITEDATA, (void *)&chunkMail);
        //some servers needs this validation
        curl_easy_setopt(handle, CURLOPT_USERAGENT, "libcurl-agent/1.0");

        res = curl_easy_perform(handle); 
        if(res != CURLE_OK)
        {
            fprintf(stderr, "curl_easy_perform() failed: %s\n",
                curl_easy_strerror(res));
        }
        else //everything was fine
        {
            printf("%s\n",chunkMail.memory); //here is the information of the email

            if(ReadMailHeader(chunkMail.memory))
            {
                std::string dataEmail = chunkMail.memory;
                //if returns true, the mail must be saved
                MimeEntity mime; 
                //how i create this object using dataEmail string??                 
            }           
        }

        //frees the data inside
        if(chunkMail.memory)
            free(chunkMail.memory);
    }
}

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

                std::istringstream ss(std::string(chunkMail.memory,m_mailsInbox.at(i).size));

                ios_base::sync_with_stdio(false);   

                //si la funcion retorno true, entonces hay que guardar los datos
                MimeEntity me(ss); 

这足以做到这一点! :)