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.
 
 

17 lines
273 B

#ifndef _SMTPD_MAIL_
#define _SMTPD_MAIL_
#include <smtpd/types.hpp>
#include <vector>
#include <string>
namespace smtpd {
struct Mail {
bool hasHeader = false;
std::vector<std::string> header;
std::vector<std::string> body;
};
};
#endif