1Mail::JMAPTalk(3)     User Contributed Perl Documentation    Mail::JMAPTalk(3)
2
3
4

NAME

6       Mail::JMAPTalk - Perl client for the http://jmap.io/ protocol
7

SYNOPSIS

9           use Mail::JMAPTalk;
10
11           my $Talk = Mail::JMAPTalk->new(url => $url);
12
13           my $res = $jmap->Request([['setContacts', {
14              create => {
15                  "#1" => {firstName => "first", lastName => "last"},
16                  "#2" => {firstName => "second", lastName => "last"},
17              }}, "R1"]]);
18           # [["contactsSet", {created => { "#1" => {...}, "#2" => {...} } }, "R1"]]
19

DESCRIPTION

21       This is a really basic wrapper around the JMAP protocol.  It has a
22       rudimentary "Login" command as well, but it doesn't support the entire
23       protocol yet.
24

SEE ALSO

26       http://jmap.io/ - protocol documentation and client guide.
27

AUTHOR

29       Bron Gondwana, <brong@>
30
32       Copyright (C) 2015 by FastMail Pty Ltd.
33
34       This library is free software; you can redistribute it and/or modify it
35       under the same terms as Perl itself, either Perl version 5.20.1 or, at
36       your option, any later version of Perl 5 you may have available.
37
38
39
40perl v5.28.1                      2019-04-18                 Mail::JMAPTalk(3)
Impressum