[Python-checkins] python/dist/src/Doc/lib libimaplib.tex,1.19,1.20
pierslauder@users.sourceforge.net
pierslauder@users.sourceforge.net
2002年6月17日 00:07:22 -0700
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv13513/dist/src/Doc/lib
Modified Files:
libimaplib.tex
Log Message:
Add IMAP4 QUOTA extension methods
Index: libimaplib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libimaplib.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** libimaplib.tex 8 Mar 2002 01:53:24 -0000 1.19
--- libimaplib.tex 17 Jun 2002 07:07:20 -0000 1.20
***************
*** 175,178 ****
--- 175,188 ----
\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.
+ \end{methoddesc}
+
+ \begin{methoddesc}{getquotaroot}{mailbox}
+ Get the list of \samp{quota} \samp{roots} for the named \var{mailbox}.
+ This method is part of the IMAP4 QUOTA extension defined in rfc2087.
+ \end{methoddesc}
+
\begin{methoddesc}{list}{\optional{directory\optional{, pattern}}}
List mailbox names in \var{directory} matching
***************
*** 205,209 ****
Opens socket to \var{port} at \var{host}.
The connection objects established by this method
! will be used in the \code{read}, \code{readline}, and \code{shutdown} methods.
You may override this method.
\end{methoddesc}
--- 215,219 ----
Opens socket to \var{port} at \var{host}.
The connection objects established by this method
! will be used in the \code{read}, \code{readline}, \code{send}, and \code{shutdown} methods.
You may override this method.
\end{methoddesc}
***************
*** 264,270 ****
--- 274,290 ----
\end{methoddesc}
+ \begin{methoddesc}{send}{data}
+ Sends \code{data} to the remote server.
+ You may override this method.
+ \end{methoddesc}
+
\begin{methoddesc}{setacl}{mailbox, who, what}
Set an \samp{ACL} 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.
\end{methoddesc}