/usr/include/dovecot/lda-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 21 22 23 24 | #ifndef LDA_SETTINGS_H
#define LDA_SETTINGS_H
struct mail_user_settings;
struct lda_settings {
const char *postmaster_address;
const char *hostname;
const char *submission_host;
const char *sendmail_path;
const char *rejection_subject;
const char *rejection_reason;
const char *deliver_log_format;
const char *recipient_delimiter;
const char *lda_original_recipient_header;
bool quota_full_tempfail;
bool lda_mailbox_autocreate;
bool lda_mailbox_autosubscribe;
};
extern const struct setting_parser_info lda_setting_parser_info;
#endif
|