diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:24 +0000 |
commit | f7548d6d28c313cf80e6f3ef89aed16a19815df1 (patch) | |
tree | a3f6f2a3f247293bee59ecd28e8cd8ceb6ca064a /src/lmtp/lmtp-proxy.h | |
parent | Initial commit. (diff) | |
download | dovecot-upstream.tar.xz dovecot-upstream.zip |
Adding upstream version 1:2.3.19.1+dfsg1.upstream/1%2.3.19.1+dfsg1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 |