Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
8bc81fc5
Kaydet (Commit)
8bc81fc5
authored
May 20, 2004
tarafından
Piers Lauder
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added description for authenticate and namespace
üst
c1e32b65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
libimaplib.tex
Doc/lib/libimaplib.tex
+23
-4
No files found.
Doc/lib/libimaplib.tex
Dosyayı görüntüle @
8bc81fc5
...
...
@@ -138,12 +138,26 @@ An \class{IMAP4} instance has the following methods:
\begin{methoddesc}
{
append
}{
mailbox, flags, date
_
time, message
}
Append
message
to named mailbox.
Append
\var
{
message
}
to named mailbox.
\end{methoddesc}
\begin{methoddesc}
{
authenticate
}{
func
}
Authenticate command --- requires response processing. This is
currently unimplemented, and raises an exception.
\begin{methoddesc}
{
authenticate
}{
mechanism, authobject
}
Authenticate command --- requires response processing.
\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}
\begin{methoddesc}
{
check
}{}
...
...
@@ -228,6 +242,11 @@ An \class{IMAP4} instance has the following methods:
Returned data are tuples of message part envelope and data.
\end{methoddesc}
\begin{methoddesc}
{
namespace
}{}
Returns IMAP namespaces as defined in RFC2342.
\versionadded
{
2.3
}
\end{methoddesc}
\begin{methoddesc}
{
noop
}{}
Send
\samp
{
NOOP
}
to server.
\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