/usr/include/dovecot/imapc-search.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 | #ifndef IMAPC_SEARCH_H
#define IMAPC_SEARCH_H
struct mail_search_context *
imapc_search_init(struct mailbox_transaction_context *t,
struct mail_search_args *args,
const enum mail_sort_type *sort_program,
enum mail_fetch_field wanted_fields,
struct mailbox_header_lookup_ctx *wanted_headers);
bool imapc_search_next_update_seq(struct mail_search_context *ctx);
int imapc_search_deinit(struct mail_search_context *ctx);
void imapc_search_reply(const struct imap_arg *args,
struct imapc_mailbox *mbox);
#endif
|