This file is indexed.

/usr/include/dovecot/access-lookup.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
#ifndef ACCESS_LOOKUP_H
#define ACCESS_LOOKUP_H

typedef void access_lookup_callback_t(bool success, void *context);

struct access_lookup *
access_lookup(const char *path, int client_fd, const char *daemon_name,
	      access_lookup_callback_t *callback, void *context);
void access_lookup_destroy(struct access_lookup **lookup);

#endif