This file is indexed.

/usr/include/dovecot/passdb-template.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
#ifndef PASSDB_TEMPLATE_H
#define PASSDB_TEMPLATE_H

#define STATIC_PASS_SCHEME "PLAIN"

struct passdb_template *passdb_template_build(pool_t pool, const char *args);
void passdb_template_export(struct passdb_template *tmpl,
			    struct auth_request *auth_request);
bool passdb_template_remove(struct passdb_template *tmpl,
			    const char *key, const char **value_r);

#endif