blob: 9f0b2aa6d48a25a8a792c4a644167ef9657081f5 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#ifndef IMAP_URL_H
#define IMAP_URL_H
#include "uri-util.h"
struct imap_url {
/* server */
struct uri_host host;
in_port_t port;
/* user */
const char *userid;
const char *auth_type;
/* mailbox */
const char *mailbox;
uint32_t uidvalidity; /* 0 if not set */
/* message part */
uint32_t uid;
const char *section;
uoff_t partial_offset;
uoff_t partial_size; /* 0 if not set */
/* message list (uid == 0) */
const char *search_program;
/* urlauth */
const char *uauth_rumpurl;
const char *uauth_access_application;
const char *uauth_access_user;
const char *uauth_mechanism;
const unsigned char *uauth_token;
size_t uauth_token_size;
time_t uauth_expire; /* (time_t)-1 if not set */
bool have_partial:1;
};
/*
* IMAP URL parsing
*/
enum imap_url_parse_flags {
/* Scheme part 'imap:' is already parsed externally. This implies that
this is an absolute IMAP URL. */
IMAP_URL_PARSE_SCHEME_EXTERNAL = 0x01,
/* Require relative URL (omitting _both_ scheme and authority), e.g.
/MAILBOX/;UID=uid or even ;UID=uid. This flag means that an absolute
URL makes no sense in this context. Relative URLs are allowed once a
base URL is provided to the parser. */
IMAP_URL_PARSE_REQUIRE_RELATIVE = 0x02,
/* Allow URLAUTH URL */
IMAP_URL_PARSE_ALLOW_URLAUTH = 0x04
};
/* Parses full IMAP URL. The returned URL is allocated from data stack. */
int imap_url_parse(const char *url, const struct imap_url *base,
enum imap_url_parse_flags flags,
struct imap_url **url_r, const char **error_r);
/*
* IMAP URL construction
*/
const char *imap_url_create(const struct imap_url *url);
const char *imap_url_add_urlauth(const char *rumpurl, const char *mechanism,
const unsigned char *token, size_t token_len);
#endif
|