This file is indexed.

/usr/include/dovecot/pop3c-settings.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
#ifndef POP3C_SETTINGS_H
#define POP3C_SETTINGS_H

struct pop3c_settings {
	const char *pop3c_host;
	unsigned int pop3c_port;

	const char *pop3c_user;
	const char *pop3c_master_user;
	const char *pop3c_password;

	const char *pop3c_ssl;
	bool pop3c_ssl_verify;

	const char *pop3c_rawlog_dir;
};

const struct setting_parser_info *pop3c_get_setting_parser_info(void);

#endif