/usr/include/dovecot/message-date.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 | #ifndef MESSAGE_DATE_H
#define MESSAGE_DATE_H
/* Parses RFC2822 date/time string. timezone_offset is filled with the
timezone's difference to UTC in minutes. */
bool message_date_parse(const unsigned char *data, size_t size,
time_t *timestamp_r, int *timezone_offset_r);
/* Create RFC2822 date/time string from given time in local timezone. */
const char *message_date_create(time_t timestamp);
#endif
|