/usr/include/dovecot/pop3c-settings.h is in dovecot-dev 1:2.2.22-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 23 | #ifndef POP3C_SETTINGS_H
#define POP3C_SETTINGS_H
#include "net.h"
struct pop3c_settings {
const char *pop3c_host;
in_port_t 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;
bool pop3c_quick_received_date;
};
const struct setting_parser_info *pop3c_get_setting_parser_info(void);
#endif
|