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
d80ef02e
Kaydet (Commit)
d80ef02e
authored
Haz 01, 2005
tarafından
Piers Lauder
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added GET/SETANNOTATION methods
üst
a0abb247
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
9 deletions
+46
-9
libimaplib.tex
Doc/lib/libimaplib.tex
+10
-0
imaplib.py
Lib/imaplib.py
+36
-9
No files found.
Doc/lib/libimaplib.tex
Dosyayı görüntüle @
d80ef02e
...
...
@@ -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.
...
...
Lib/imaplib.py
Dosyayı görüntüle @
d80ef02e
...
...
@@ -18,8 +18,9 @@ Public functions: Internaldate2tuple
# IMAP4_SSL contributed by Tino Lange <Tino.Lange@isg.de> March 2002.
# GET/SETQUOTA contributed by Andreas Zeidler <az@kreativkombinat.de> June 2002.
# PROXYAUTH contributed by Rick Holbert <holbert.13@osu.edu> November 2002.
# GET/SETANNOTATION contributed by Tomas Lindroos <skitta@abo.fi> June 2005.
__version__
=
"2.5
5
"
__version__
=
"2.5
6
"
import
binascii
,
os
,
random
,
re
,
socket
,
sys
,
time
...
...
@@ -51,6 +52,7 @@ Commands = {
'EXPUNGE'
:
(
'SELECTED'
,),
'FETCH'
:
(
'SELECTED'
,),
'GETACL'
:
(
'AUTH'
,
'SELECTED'
),
'GETANNOTATION'
:(
'AUTH'
,
'SELECTED'
),
'GETQUOTA'
:
(
'AUTH'
,
'SELECTED'
),
'GETQUOTAROOT'
:
(
'AUTH'
,
'SELECTED'
),
'MYRIGHTS'
:
(
'AUTH'
,
'SELECTED'
),
...
...
@@ -66,6 +68,7 @@ Commands = {
'SEARCH'
:
(
'SELECTED'
,),
'SELECT'
:
(
'AUTH'
,
'SELECTED'
),
'SETACL'
:
(
'AUTH'
,
'SELECTED'
),
'SETANNOTATION'
:(
'AUTH'
,
'SELECTED'
),
'SETQUOTA'
:
(
'AUTH'
,
'SELECTED'
),
'SORT'
:
(
'SELECTED'
,),
'STATUS'
:
(
'AUTH'
,
'SELECTED'
),
...
...
@@ -133,10 +136,10 @@ class IMAP4:
the command re-tried.
"readonly" exceptions imply the command should be re-tried.
Note: to use this module, you must read the RFCs pertaining
to the IMAP4 protocol, as the semantics of the arguments to
each IMAP4 command are left to the invoker, not to mention
the results
.
Note: to use this module, you must read the RFCs pertaining
to the
IMAP4 protocol, as the semantics of the arguments to each IMAP4
command are left to the invoker, not to mention the results. Also,
most IMAP servers implement a sub-set of the commands available here
.
"""
class
error
(
Exception
):
pass
# Logical errors - debug required
...
...
@@ -186,11 +189,10 @@ class IMAP4:
else
:
raise
self
.
error
(
self
.
welcome
)
cap
=
'CAPABILITY'
self
.
_simple_command
(
cap
)
if
not
cap
in
self
.
untagged_responses
:
typ
,
dat
=
self
.
capability
()
if
dat
==
[
None
]:
raise
self
.
error
(
'no CAPABILITY response from server'
)
self
.
capabilities
=
tuple
(
self
.
untagged_responses
[
cap
]
[
-
1
]
.
upper
()
.
split
())
self
.
capabilities
=
tuple
(
dat
[
-
1
]
.
upper
()
.
split
())
if
__debug__
:
if
self
.
debug
>=
3
:
...
...
@@ -345,6 +347,15 @@ class IMAP4:
return
typ
,
dat
def
capability
(
self
):
"""(typ, [data]) = <instance>.capability()
Fetch capabilities list from server."""
name
=
'CAPABILITY'
typ
,
dat
=
self
.
_simple_command
(
name
)
return
self
.
_untagged_response
(
typ
,
dat
,
name
)
def
check
(
self
):
"""Checkpoint mailbox on server.
...
...
@@ -436,6 +447,14 @@ class IMAP4:
return
self
.
_untagged_response
(
typ
,
dat
,
'ACL'
)
def
getannotation
(
self
,
mailbox
,
entry
,
attribute
):
"""(typ, [data]) = <instance>.getannotation(mailbox, entry, attribute)
Retrieve ANNOTATIONs."""
typ
,
dat
=
self
.
_simple_command
(
'GETANNOTATION'
,
mailbox
,
entry
,
attribute
)
return
self
.
_untagged_response
(
typ
,
dat
,
'ANNOTATION'
)
def
getquota
(
self
,
root
):
"""Get the quota root's resource usage and limits.
...
...
@@ -643,6 +662,14 @@ class IMAP4:
return
self
.
_simple_command
(
'SETACL'
,
mailbox
,
who
,
what
)
def
setannotation
(
self
,
*
args
):
"""(typ, [data]) = <instance>.setannotation(mailbox[, entry, attribute]+)
Set ANNOTATIONs."""
typ
,
dat
=
self
.
_simple_command
(
'SETANNOTATION'
,
*
args
)
return
self
.
_untagged_response
(
typ
,
dat
,
'ANNOTATION'
)
def
setquota
(
self
,
root
,
limits
):
"""Set the quota root's resource limits.
...
...
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