~ubuntu-branches/ubuntu/wily/dovecot/wily-proposed

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
32
33
/* Copyright (c) 2002-2012 Pigeonhole authors, see the included COPYING file
 */
#include "lib.h"

#include "sieve-common.h"
#include "sieve-smtp.h"


bool sieve_smtp_available
(const struct sieve_script_env *senv)
{
    return ( senv->smtp_open != NULL && senv->smtp_close != NULL );
}

void *sieve_smtp_open
(const struct sieve_script_env *senv, const char *destination,
    const char *return_path, FILE **file_r)
{
    if ( senv->smtp_open == NULL || senv->smtp_close == NULL )
        return NULL;

    return senv->smtp_open(senv, destination, return_path, file_r);
}

bool sieve_smtp_close
(const struct sieve_script_env *senv, void *handle)
{
    if ( senv->smtp_open == NULL || senv->smtp_close == NULL )
        return NULL;

    return senv->smtp_close(senv, handle);
}