/usr/include/dovecot/passdb-cache.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #ifndef PASSDB_CACHE_H
#define PASSDB_CACHE_H
#include "auth-cache.h"
#include "passdb.h"
extern struct auth_cache *passdb_cache;
bool passdb_cache_verify_plain(struct auth_request *request, const char *key,
const char *password,
enum passdb_result *result_r, int use_expired);
bool passdb_cache_lookup_credentials(struct auth_request *request,
const char *key, const char **password_r,
const char **scheme_r,
enum passdb_result *result_r,
bool use_expired);
void passdb_cache_init(const struct auth_settings *set);
void passdb_cache_deinit(void);
#endif
|