2004-10-05 10:28:21 +00:00
|
|
|
//
|
2005-03-18 21:33:11 +00:00
|
|
|
// VMime library (http://www.vmime.org)
|
2018-09-05 21:54:48 +00:00
|
|
|
// Copyright (C) 2002 Vincent Richard <vincent@vmime.org>
|
2004-10-05 10:28:21 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
2009-09-06 12:02:10 +00:00
|
|
|
// published by the Free Software Foundation; either version 3 of
|
2004-10-05 10:28:21 +00:00
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
2005-09-17 10:10:29 +00:00
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// Linking this library statically or dynamically with other modules is making
|
|
|
|
// a combined work based on this library. Thus, the terms and conditions of
|
|
|
|
// the GNU General Public License cover the whole combination.
|
2004-10-05 10:28:21 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// EXAMPLE DESCRIPTION:
|
|
|
|
// ====================
|
|
|
|
// This sample program demonstrate the use of the messageParser component
|
|
|
|
// to enumerate the attachments in a message.
|
|
|
|
//
|
|
|
|
// For more information, please visit:
|
2005-03-18 21:33:11 +00:00
|
|
|
// http://www.vmime.org/
|
2004-10-05 10:28:21 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#include <iostream>
|
2014-01-15 23:27:51 +00:00
|
|
|
#include <locale>
|
|
|
|
#include <clocale>
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2004-12-26 20:23:29 +00:00
|
|
|
#include "vmime/vmime.hpp"
|
2004-12-30 09:32:32 +00:00
|
|
|
#include "vmime/platforms/posix/posixHandler.hpp"
|
2004-10-05 10:28:21 +00:00
|
|
|
|
|
|
|
|
2018-09-05 21:54:48 +00:00
|
|
|
int main() {
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
std::cout << std::endl;
|
|
|
|
|
2014-01-15 23:27:51 +00:00
|
|
|
// Set the global C and C++ locale to the user-configured locale.
|
|
|
|
// The locale should use UTF-8 encoding for these tests to run successfully.
|
2018-09-05 21:54:48 +00:00
|
|
|
try {
|
2014-01-15 23:27:51 +00:00
|
|
|
std::locale::global(std::locale(""));
|
2018-09-05 21:54:48 +00:00
|
|
|
} catch (std::exception &) {
|
2014-01-15 23:27:51 +00:00
|
|
|
std::setlocale(LC_ALL, "");
|
|
|
|
}
|
2004-10-05 10:28:21 +00:00
|
|
|
|
2018-09-05 21:54:48 +00:00
|
|
|
try {
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
vmime::messageParser mp("<...MIME message content...>");
|
|
|
|
|
|
|
|
// Enumerate attachments
|
2018-09-05 21:54:48 +00:00
|
|
|
for (size_t i = 0 ; i < mp.getAttachmentCount() ; ++i) {
|
|
|
|
|
2004-10-21 15:05:47 +00:00
|
|
|
const vmime::attachment& att = *mp.getAttachmentAt(i);
|
|
|
|
|
|
|
|
// Media type (content type) is in "att.getType()"
|
2005-07-15 09:51:55 +00:00
|
|
|
// Name is in "att.getName()"
|
2004-10-21 15:05:47 +00:00
|
|
|
// Description is in "att.getDescription()"
|
|
|
|
// Data is in "att.getData()"
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|
2018-09-05 21:54:48 +00:00
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
// VMime exception
|
2018-09-05 21:54:48 +00:00
|
|
|
} catch (vmime::exception& e) {
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
std::cout << "vmime::exception: " << e.what() << std::endl;
|
|
|
|
throw;
|
2018-09-05 21:54:48 +00:00
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
// Standard exception
|
2018-09-05 21:54:48 +00:00
|
|
|
} catch (std::exception& e) {
|
|
|
|
|
2004-10-05 10:28:21 +00:00
|
|
|
std::cout << "std::exception: " << e.what() << std::endl;
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
2018-09-05 21:54:48 +00:00
|
|
|
|
|
|
|
return 0;
|
2004-10-05 10:28:21 +00:00
|
|
|
}
|