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
255 B

#ifndef _SMTPD_TYPES_
#define _SMTPD_TYPES_
#include <vector>
#include <string>
#include <memory>
#include <functional>
namespace smtpd {
using Token = std::string;
using SessionID = std::string;
using RequestToken = std::string;
}
#endif