~ubuntu-branches/ubuntu/trusty/postfix/trusty-updates

« back to all changes in this revision

Viewing changes to src/lmtp/lmtp_sasl.h

Tags: upstream-2.3.1
ImportĀ upstreamĀ versionĀ 2.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*++
2
 
/* NAME
3
 
/*      lmtp_sasl 3h
4
 
/* SUMMARY
5
 
/*      Postfix SASL interface for LMTP client
6
 
/* SYNOPSIS
7
 
/*      #include "lmtp_sasl.h"
8
 
/* DESCRIPTION
9
 
/* .nf
10
 
 
11
 
 /*
12
 
 * SASL protocol functions
13
 
 */
14
 
extern void lmtp_sasl_initialize(void);
15
 
extern void lmtp_sasl_connect(LMTP_STATE *);
16
 
extern int lmtp_sasl_passwd_lookup(LMTP_STATE *);
17
 
extern void lmtp_sasl_start(LMTP_STATE *, const char *, const char *);
18
 
extern int lmtp_sasl_authenticate(LMTP_STATE *, VSTRING *);
19
 
extern void lmtp_sasl_cleanup(LMTP_STATE *);
20
 
 
21
 
extern void lmtp_sasl_helo_auth(LMTP_STATE *, const char *);
22
 
extern int lmtp_sasl_helo_login(LMTP_STATE *);
23
 
 
24
 
/* LICENSE
25
 
/* .ad
26
 
/* .fi
27
 
/*      The Secure Mailer license must be distributed with this software.
28
 
/* AUTHOR(S)
29
 
/*      Initial implementation by:
30
 
/*      Till Franke
31
 
/*      SuSE Rhein/Main AG
32
 
/*      65760 Eschborn, Germany
33
 
/*
34
 
/*      Adopted by:
35
 
/*      Wietse Venema
36
 
/*      IBM T.J. Watson Research
37
 
/*      P.O. Box 704
38
 
/*      Yorktown Heights, NY 10598, USA
39
 
/*--*/