/usr/include/dovecot/imap-base-subject.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 | #ifndef IMAP_BASE_SUBJECT_H
#define IMAP_BASE_SUBJECT_H
/* Returns the base subject of the given string, according to
draft-ietf-imapext-sort-10. String is returned so that it's suitable for
strcmp() comparing with another base subject.
is_reply_or_forward is set to TRUE if message looks like reply or forward,
according to draft-ietf-imapext-thread-12 rules. */
const char *imap_get_base_subject_cased(pool_t pool, const char *subject,
bool *is_reply_or_forward_r);
#endif
|