Go to file
Jan Engelhardt 82377e0342
Build: add FreeBSD & libc++ compilation support (#288)
* build: add FreeBSD compilation support

* build: unbreak compilation with clang libc++

unary_function is obsolete with C++11 and removed in C++17.
gnu-gcc-libstdc++ still has the class, but llvm-clang-libc++ does
not, and there is a compile error.

vmime should have just stopped using unary_function with commit
v0.9.2-48-g8564b2f8.

	$ cat x.cpp
	$ clang++ -std=c++17 -stdlib=libc++ -c x.cpp
	In file included from x.cpp:1:
	In file included from /usr/local/include/vmime/net/transport.hpp:34:
	In file included from /usr/local/include/vmime/net/service.hpp:36:
	In file included from /usr/local/include/vmime/net/session.hpp:40:
	In file included from /usr/local/include/vmime/utility/url.hpp:30:
	/usr/local/include/vmime/propertySet.hpp:339:33: error: no template named
	/'unary_function' in namespace 'std'; did you mean '__unary_function'?
		class propFinder : public std::unary_function <shared_ptr <property>, bool> {
					  ~~~~~^~~~~~~~~~~~~~
					       __unary_function
2023-12-31 15:22:36 +01:00
cmake Build: add FreeBSD & libc++ compilation support (#288) 2023-12-31 15:22:36 +01:00
contrib Issue #126: even more warnings fixed. 2016-03-24 08:00:34 +01:00
doc/book Code style and clarity. 2018-09-05 23:54:48 +02:00
examples Code style and clarity. 2018-09-05 23:54:48 +02:00
src/vmime Build: add FreeBSD & libc++ compilation support (#288) 2023-12-31 15:22:36 +01:00
tests Fixed possible recursion crash when parsing mailbox groups. 2022-01-25 10:28:20 +01:00
.gitignore Merged source and header files in directory structure. Got rid of SConstruct build. 2013-12-29 10:02:12 +01:00
.travis.yml Fixed location of config and lib export include files. 2016-03-25 08:25:43 +01:00
AUTHORS Issue #36: added support for wildcard in Common Name when verifying host name (thanks to Anthony Dervish). 2013-04-26 20:58:04 +02:00
CMakeLists.txt Build: add FreeBSD & libc++ compilation support (#288) 2023-12-31 15:22:36 +01:00
COPYING Relicensed VMime under the GNU GPL version 3. Changed copyright year to 2009. 2009-09-06 12:02:10 +00:00
COPYING.OpenSSL #236 OpenSSL license exception 2020-02-14 22:25:58 +01:00
Doxyfile.in Define "VMIME_HAVE_FILESYSTEM_FEATURES" to generate doc for classes related to files (eg. fileAttachment). 2013-05-18 08:43:39 +02:00
HACKING Code style and clarity. 2018-09-05 23:54:48 +02:00
NEWS Initial import. 2004-10-05 10:28:21 +00:00
README Updated README. 2012-04-05 12:34:51 +02:00
README.autotools Migrated build system to CMake. Conditional file compilation. Automatic selection of platform handler. 2012-11-01 18:20:06 +01:00
test-outsourced-build.sh Use string option instead of mutually exclusive bool options for charset and TLS library. 2014-05-27 21:59:37 +02:00
vmime.pc.in Pkg-config file changed back to "vmime.pc" (fixed issue #35). 2013-03-24 20:28:36 +01:00

VMime is a powerful C++ class library for working with RFC-822 and MIME messages
and Internet messaging services like IMAP, POP or SMTP.

With VMime you can parse, generate and modify messages, and also connect to store
and transport services to receive or send messages over the Internet. The library
offers all the features to build a complete mail client.

Key Features
------------

* it is free software! GNU GPL license (Commercial licenses available!)
* fully RFC-compliant implementation
* object-oriented and modular design
* very easy-to-use (intuitive design)
* well documented code
* very high reliability
* maximum portability

Features Overview
-----------------

* RFC-2822 and multipart messages
* aggregate documents and embedded objects
* 8-bit MIME and encoded word extensions
* full support for attachments
* POP3, IMAP, SMTP, maildir and sendmail
* SSL/TLS security layer and X.509 certificates (using GNU TLS)
* SASL authentication (using GNU SASL)