-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmailboxes.rs
72 lines (63 loc) · 1.95 KB
/
mailboxes.rs
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
72
/*
* Copyright Stalwart Labs Ltd. See the COPYING
* file at the top-level directory of this distribution.
*
* Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
* https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
* file at the top-level directory of this distribution.
*
* Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
* https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
* <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
* option. This file may not be copied, modified, or distributed
* except according to those terms.
*/
#[cfg(feature = "async")]
use jmap_client::{
client::Client,
mailbox::{query::Filter, Role},
};
#[cfg(feature = "async")]
async fn mailboxes() {
// Connect to the JMAP server using Basic authentication
let client = Client::new()
.credentials(("[email protected]", "secret"))
.connect("https://jmap.example.org")
.await
.unwrap();
// Create a mailbox
let mailbox_id = client
.mailbox_create("My Mailbox", None::<String>, Role::None)
.await
.unwrap()
.take_id();
// Rename a mailbox
client
.mailbox_rename(&mailbox_id, "My Renamed Mailbox")
.await
.unwrap();
// Query mailboxes to obtain Inbox's id
let inbox_id = client
.mailbox_query(Filter::role(Role::Inbox).into(), None::<Vec<_>>)
.await
.unwrap()
.take_ids()
.pop()
.unwrap();
// Print Inbox's details
println!(
"{:?}",
client.mailbox_get(&inbox_id, None::<Vec<_>>).await.unwrap()
);
// Move the newly created mailbox under Inbox
client
.mailbox_move(&mailbox_id, inbox_id.into())
.await
.unwrap();
// Delete the mailbox including any messages
client.mailbox_destroy(&mailbox_id, true).await.unwrap();
}
fn main() {
#[cfg(feature = "async")]
let _c = mailboxes();
}