This file is indexed.

/usr/include/dovecot/mail-search-parser-private.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
22
#ifndef MAIL_SEARCH_PARSER_PRIVATE_H
#define MAIL_SEARCH_PARSER_PRIVATE_H

#include "mail-search-parser.h"

struct mail_search_parser_vfuncs {
	int (*parse_key)(struct mail_search_parser *parser, const char **key_r);
	int (*parse_string)(struct mail_search_parser *parser,
			    const char **value_r);
	bool (*parse_skip_next)(struct mail_search_parser *parser,
				const char *str);
};

struct mail_search_parser {
	struct mail_search_parser_vfuncs v;

	pool_t pool;
	const char *cur_key;
	const char *error;
};

#endif