blob: f7b9c8427d8d357854e2a1493f4aab51fa1ea93b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef SIEVE_SMTP_H
#define SIEVE_SMTP_H
#include "sieve-common.h"
bool sieve_smtp_available
(const struct sieve_script_env *senv);
struct sieve_smtp_context;
struct sieve_smtp_context *sieve_smtp_start
(const struct sieve_script_env *senv,
const struct smtp_address *mail_from);
void sieve_smtp_add_rcpt
(struct sieve_smtp_context *sctx,
const struct smtp_address *rcpt_to);
struct ostream *sieve_smtp_send
(struct sieve_smtp_context *sctx);
struct sieve_smtp_context *sieve_smtp_start_single
(const struct sieve_script_env *senv,
const struct smtp_address *rcpt_to,
const struct smtp_address *mail_from,
struct ostream **output_r);
void sieve_smtp_abort
(struct sieve_smtp_context *sctx);
int sieve_smtp_finish
(struct sieve_smtp_context *sctx, const char **error_r);
#endif
|