diff options
author | Piers Lauder <piers@cs.su.oz.au> | 2005-06-01 23:50:52 (GMT) |
---|---|---|
committer | Piers Lauder <piers@cs.su.oz.au> | 2005-06-01 23:50:52 (GMT) |
commit | d80ef02ec0e2445d34824bf908f93024a7079809 (patch) | |
tree | 90276c9f1840df08f39bbf5634518325de1409a9 /Doc/lib/libimaplib.tex | |
parent | a0abb24729dd3689d75ff89e7f73fa0f79d580e0 (diff) | |
download | cpython-d80ef02ec0e2445d34824bf908f93024a7079809.zip cpython-d80ef02ec0e2445d34824bf908f93024a7079809.tar.gz cpython-d80ef02ec0e2445d34824bf908f93024a7079809.tar.bz2 |
added GET/SETANNOTATION methods
Diffstat (limited to 'Doc/lib/libimaplib.tex')
-rw-r--r-- | Doc/lib/libimaplib.tex | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/lib/libimaplib.tex b/Doc/lib/libimaplib.tex index 3448ba6..2c4555d 100644 --- a/Doc/lib/libimaplib.tex +++ b/Doc/lib/libimaplib.tex @@ -222,6 +222,11 @@ data = authobject(response) The method is non-standard, but is supported by the \samp{Cyrus} server. \end{methoddesc} +\begin{methoddesc}{getannotation}{mailbox, entry, attribute} + Retrieve the specified \samp{ANNOTATION}s for \var{mailbox}. + The method is non-standard, but is supported by the \samp{Cyrus} server. +\end{methoddesc} + \begin{methoddesc}{getquota}{root} Get the \samp{quota} \var{root}'s resource usage and limits. This method is part of the IMAP4 QUOTA extension defined in rfc2087. @@ -357,6 +362,11 @@ msgnums = M.search(None, '(FROM "LDJ")') The method is non-standard, but is supported by the \samp{Cyrus} server. \end{methoddesc} +\begin{methoddesc}{setannotation}{mailbox, entry, attribute\optional{, ...}} + Set \samp{ANNOTATION}s for \var{mailbox}. + The method is non-standard, but is supported by the \samp{Cyrus} server. +\end{methoddesc} + \begin{methoddesc}{setquota}{root, limits} Set the \samp{quota} \var{root}'s resource \var{limits}. This method is part of the IMAP4 QUOTA extension defined in rfc2087. |