This file is indexed.

/usr/include/libetpan/imapdriver_tools_private.h is in libetpan-dev 1.0-5ubuntu3.

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
25
26
27
28
29
30
31
32
#ifndef IMAPDRIVER_TOOLS_PRIVATE_H

#define IMAPDRIVER_TOOLS_PRIVATE_H

#include "mail_cache_db.h"

int
imapdriver_get_cached_envelope(struct mail_cache_db * cache_db,
    MMAPString * mmapstr,
    mailsession * session, mailmessage * msg,
    struct mailimf_fields ** result);

int
imapdriver_write_cached_envelope(struct mail_cache_db * cache_db,
    MMAPString * mmapstr,
    mailsession * session, mailmessage * msg,
    struct mailimf_fields * fields);

int imap_error_to_mail_error(int error);

int imap_store_flags(mailimap * imap, uint32_t first, uint32_t last,
    struct mail_flags * flags);

int imap_fetch_flags(mailimap * imap,
    uint32_t indx, struct mail_flags ** result);

int imap_get_messages_list(mailimap * imap,
    mailsession * session, mailmessage_driver * driver,
    uint32_t first_index,
    struct mailmessage_list ** result);

#endif