0

現在、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);
    }
}

助言がありますか?

4

1 に答える 1