Bogofilter adapter for OpenSMTPD in C++
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
368 B

#ifndef _SMTPD_
#define _SMTPD_
/* In this file, and the library in general, headers are always in reverse order
* of dependence. This helps weed out missing includes to some degree. */
#include <smtpd/iosprotocol.hpp>
#include <smtpd/protocol.hpp>
#include <smtpd/message.hpp>
#include <smtpd/mail.hpp>
#include <smtpd/token.hpp>
#include <smtpd/types.hpp>
#endif