blob: cbbdb0d533deac253f86d8b3bf34bd55da068b36 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#ifndef _SMTP_SASL_AUTH_CACHE_H_INCLUDED_
#define _SMTP_SASL_AUTH_CACHE_H_INCLUDED_
/*++
/* NAME
/* smtp_sasl_auth_cache 3h
/* SUMMARY
/* Postfix SASL authentication failure cache
/* SYNOPSIS
/* #include "smtp.h"
/* #include "smtp_sasl_auth_cache.h"
/* DESCRIPTION
/* .nf
/*
* Utility library.
*/
#include <dict.h>
/*
* This code stores hashed passwords which requires OpenSSL.
*/
#if defined(USE_TLS) && defined(USE_SASL_AUTH)
#define HAVE_SASL_AUTH_CACHE
/*
* External interface.
*/
typedef struct {
DICT *dict;
int ttl;
char *dsn;
char *text;
} SMTP_SASL_AUTH_CACHE;
extern SMTP_SASL_AUTH_CACHE *smtp_sasl_auth_cache_init(const char *, int);
extern void smtp_sasl_auth_cache_store(SMTP_SASL_AUTH_CACHE *, const SMTP_SESSION *, const SMTP_RESP *);
extern int smtp_sasl_auth_cache_find(SMTP_SASL_AUTH_CACHE *, const SMTP_SESSION *);
#define smtp_sasl_auth_cache_dsn(cp) ((cp)->dsn)
#define smtp_sasl_auth_cache_text(cp) ((cp)->text)
#endif
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Initial implementation by:
/* Till Franke
/* SuSE Rhein/Main AG
/* 65760 Eschborn, Germany
/*
/* Adopted by:
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
#endif
|