Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8bc81fc5
Commit
8bc81fc5
authored
May 20, 2004
by
Piers Lauder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added description for authenticate and namespace
parent
c1e32b65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
Doc/lib/libimaplib.tex
Doc/lib/libimaplib.tex
+23
-4
No files found.
Doc/lib/libimaplib.tex
View file @
8bc81fc5
...
@@ -138,12 +138,26 @@ An \class{IMAP4} instance has the following methods:
...
@@ -138,12 +138,26 @@ An \class{IMAP4} instance has the following methods:
\begin{methoddesc}
{
append
}{
mailbox, flags, date
_
time, message
}
\begin{methoddesc}
{
append
}{
mailbox, flags, date
_
time, message
}
Append
message
to named mailbox.
Append
\var
{
message
}
to named mailbox.
\end{methoddesc}
\end{methoddesc}
\begin{methoddesc}
{
authenticate
}{
func
}
\begin{methoddesc}
{
authenticate
}{
mechanism, authobject
}
Authenticate command --- requires response processing. This is
Authenticate command --- requires response processing.
currently unimplemented, and raises an exception.
\var
{
mechanism
}
specifies which authentication mechanism is to
be used - it should appear in the instance variable
\code
{
capabilities
}
in the
form
\code
{
AUTH=mechanism
}
.
\var
{
authobject
}
must be a callable object:
\begin{verbatim}
data = authobject(response)
\end{verbatim}
It will be called to process server continuation responses.
It should return
\code
{
data
}
that will be encoded and sent to server.
It should return
\code
{
None
}
if the client abort response
\samp
{
*
}
should
be sent instead.
\end{methoddesc}
\end{methoddesc}
\begin{methoddesc}
{
check
}{}
\begin{methoddesc}
{
check
}{}
...
@@ -228,6 +242,11 @@ An \class{IMAP4} instance has the following methods:
...
@@ -228,6 +242,11 @@ An \class{IMAP4} instance has the following methods:
Returned data are tuples of message part envelope and data.
Returned data are tuples of message part envelope and data.
\end{methoddesc}
\end{methoddesc}
\begin{methoddesc}
{
namespace
}{}
Returns IMAP namespaces as defined in RFC2342.
\versionadded
{
2.3
}
\end{methoddesc}
\begin{methoddesc}
{
noop
}{}
\begin{methoddesc}
{
noop
}{}
Send
\samp
{
NOOP
}
to server.
Send
\samp
{
NOOP
}
to server.
\end{methoddesc}
\end{methoddesc}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment