1 /* $NetBSD: smtpd_sasl_proto.h,v 1.1.1.1 2009/06/23 10:08:56 tron Exp $ */ 2 3 /*++ 4 /* NAME 5 /* smtpd_sasl_proto 3h 6 /* SUMMARY 7 /* Postfix SMTP protocol support for SASL authentication 8 /* SYNOPSIS 9 /* #include "smtpd_sasl_proto.h" 10 /* DESCRIPTION 11 /* .nf 12 13 /* 14 * SMTP protocol interface. 15 */ 16 extern int smtpd_sasl_auth_cmd(SMTPD_STATE *, int, SMTPD_TOKEN *); 17 extern void smtpd_sasl_auth_reset(SMTPD_STATE *); 18 extern char *smtpd_sasl_mail_opt(SMTPD_STATE *, const char *); 19 extern void smtpd_sasl_mail_log(SMTPD_STATE *); 20 extern void smtpd_sasl_mail_reset(SMTPD_STATE *); 21 22 /* LICENSE 23 /* .ad 24 /* .fi 25 /* The Secure Mailer license must be distributed with this software. 26 /* AUTHOR(S) 27 /* Initial implementation by: 28 /* Till Franke 29 /* SuSE Rhein/Main AG 30 /* 65760 Eschborn, Germany 31 /* 32 /* Adopted by: 33 /* Wietse Venema 34 /* IBM T.J. Watson Research 35 /* P.O. Box 704 36 /* Yorktown Heights, NY 10598, USA 37 /*--*/ 38