summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libimaplib.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-05-26 04:08:37 (GMT)
committerFred Drake <fdrake@acm.org>2000-05-26 04:08:37 (GMT)
commit99d707af476c127cbbb42a914ee0116a8f3cc319 (patch)
treeaa2510c6cb1d15d8e097c2bbd85a725a9cc1d9dd /Doc/lib/libimaplib.tex
parent6153fa19ce701a4d5f9ced5a829b7ad5f8ea7700 (diff)
downloadcpython-99d707af476c127cbbb42a914ee0116a8f3cc319.zip
cpython-99d707af476c127cbbb42a914ee0116a8f3cc319.tar.gz
cpython-99d707af476c127cbbb42a914ee0116a8f3cc319.tar.bz2
Piers Lauder <piers@cs.su.oz.au>:
I've added an extra comment about quoting arguments to IMAP4 commands. Also changed the command descriptions to show optional extra commands where appropriate. Fred Drake: Added example usage for the search() method based on comments from <Lucas.DeJonge@awtpl.com.au>; elaborated error handling information when arguments are missing from search() and uid().
Diffstat (limited to 'Doc/lib/libimaplib.tex')
-rw-r--r--Doc/lib/libimaplib.tex37
1 files changed, 29 insertions, 8 deletions
diff --git a/Doc/lib/libimaplib.tex b/Doc/lib/libimaplib.tex
index 5725fd3..9e57818 100644
--- a/Doc/lib/libimaplib.tex
+++ b/Doc/lib/libimaplib.tex
@@ -96,6 +96,9 @@ passed as an IMAP4 literal. If necessary (the string contains IMAP4
protocol-sensitive characters and isn't enclosed with either
parentheses or double quotes) each string is quoted. However, the
\var{password} argument to the \samp{LOGIN} command is always quoted.
+If you want to avoid having an argument string quoted
+(eg: the \var{flags} argument to \samp{STORE}) then enclose the string in
+parentheses (eg: \code{r'(\e Deleted)'}).
Each command returns a tuple: \code{(\var{type}, [\var{data},
...])} where \var{type} is usually \code{'OK'} or \code{'NO'},
@@ -144,8 +147,10 @@ An \class{IMAP4} instance has the following methods:
\end{methoddesc}
\begin{methoddesc}{fetch}{message_set, message_parts}
- Fetch (parts of) messages. Returned data are tuples of message part
- envelope and data.
+ Fetch (parts of) messages. \var{message_parts} should be
+ a string of message part names enclosed within parentheses,
+ eg: \samp{"(UID BODY[TEXT])"}. Returned data are tuples
+ of message part envelope and data.
\end{methoddesc}
\begin{methoddesc}{list}{\optional{directory\optional{, pattern}}}
@@ -199,9 +204,23 @@ An \class{IMAP4} instance has the following methods:
\code{None}. Returns the given code, instead of the usual type.
\end{methoddesc}
-\begin{methoddesc}{search}{charset, criteria}
- Search mailbox for matching messages. Returned data contains a space
- separated list of matching message numbers.
+\begin{methoddesc}{search}{charset, criterium\optional{, ...}}
+ Search mailbox for matching messages. Returned data contains a space
+ separated list of matching message numbers. \var{charset} may be
+ \code{None}, in which case no \samp{CHARSET} will be specified in the
+ request to the server. The IMAP protocol requires that at least one
+ criterium be specified; an exception will be raised when the server
+ returns an error.
+
+ Example:
+
+\begin{verbatim}
+# M is a connected IMAP4 instance...
+msgnums = M.search(None, 'FROM', '"LDJ"')
+
+# or:
+msgnums = M.search(None, '(FROM "LDJ")')
+\end{verbatim}
\end{methoddesc}
\begin{methoddesc}{select}{\optional{mailbox\optional{, readonly}}}
@@ -227,16 +246,18 @@ An \class{IMAP4} instance has the following methods:
Subscribe to new mailbox.
\end{methoddesc}
-\begin{methoddesc}{uid}{command, args}
+\begin{methoddesc}{uid}{command, arg\optional{, ...}}
Execute command args with messages identified by UID, rather than
- message number. Returns response appropriate to command.
+ message number. Returns response appropriate to command. At least
+ one argument must be supplied; if none are provided, the server will
+ return an error and an exception will be raised.
\end{methoddesc}
\begin{methoddesc}{unsubscribe}{mailbox}
Unsubscribe from old mailbox.
\end{methoddesc}
-\begin{methoddesc}{xatom}{name\optional{, arg1\optional{, arg2}}}
+\begin{methoddesc}{xatom}{name\optional{, arg\optional{, ...}}}
Allow simple extension commands notified by server in
\samp{CAPABILITY} response.
\end{methoddesc}