1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/*
imap_remove_msg.cpp
-------------------
Connects to IMAP server and removes a message in mailbox.
Copyright (C) 2016, Tomislav Karastojkovic (http://www.alepho.com).
Distributed under the FreeBSD license, see the accompanying file LICENSE or
copy at http://www.freebsd.org/copyright/freebsd-license.html.
*/
#include <iostream>
#include <mailio/imap.hpp>
using mailio::imap;
using mailio::imap_error;
using mailio::dialog_error;
using std::cout;
using std::endl;
int main()
{
try
{
// use a server with plain (non-SSL) connectivity
imap conn("imap.mailserver.com", 143);
// modify to use real account
conn.authenticate("mailio@mailserver.com", "mailiopass", imap::auth_method_t::LOGIN);
// remove first message from mailbox
conn.remove("inbox", 1);
}
catch (imap_error& exc)
{
cout << exc.what() << endl;
}
catch (dialog_error& exc)
{
cout << exc.what() << endl;
}
return EXIT_SUCCESS;
}
|