diff options
Diffstat (limited to 'src/lmtp/lmtp-proxy.h')
-rw-r--r-- | src/lmtp/lmtp-proxy.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lmtp/lmtp-proxy.h b/src/lmtp/lmtp-proxy.h new file mode 100644 index 0000000..18d27b7 --- /dev/null +++ b/src/lmtp/lmtp-proxy.h @@ -0,0 +1,29 @@ +#ifndef LMTP_PROXY_H +#define LMTP_PROXY_H + +#include "net.h" + +#include "smtp-common.h" +#include "smtp-params.h" +#include "smtp-client.h" + +#define LMTP_PROXY_DEFAULT_TTL 5 + +struct smtp_server_cmd_ctx; +struct smtp_server_cmd_rcpt; +struct lmtp_proxy; +struct client; + +void lmtp_proxy_deinit(struct lmtp_proxy **proxy); + +int lmtp_proxy_rcpt(struct client *client, + struct smtp_server_cmd_ctx *cmd, + struct lmtp_recipient *rcpt, const char *username, + const char *detail, char delim); + +void lmtp_proxy_data(struct client *client, + struct smtp_server_cmd_ctx *cmd, + struct smtp_server_transaction *trans ATTR_UNUSED, + struct istream *data_input); + +#endif |