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
6244867e
Kaydet (Commit)
6244867e
authored
Eyl 17, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revamped test case and updated doc string.
üst
452a9833
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
23 deletions
+41
-23
mailbox.py
Lib/mailbox.py
+41
-23
No files found.
Lib/mailbox.py
Dosyayı görüntüle @
6244867e
#
# A class to hand a unix-style or mmdf-style mailboxes
#
# Jack Jansen, CWI, March 1994.
#
#
!/usr/local/bin/python
"""Classes to handle Unix style, MMDF style, and MH style mailboxes."""
import
rfc822
import
os
import
regex
...
...
@@ -134,17 +134,32 @@ class MHMailbox:
return
rfc822
.
Message
(
fp
)
if
__name__
==
'__main__'
:
import
posix
def
_test
():
import
time
import
sys
import
string
## mbox = '/usr/mail/'+posix.environ['USER']
## fp = open(mbox, 'r')
## mb = UnixMailbox(fp)
mbox
=
posix
.
environ
[
'HOME'
]
+
'/Mail/inbox'
mb
=
MHMailbox
(
mbox
)
import
os
args
=
sys
.
argv
[
1
:]
if
not
args
:
if
os
.
environ
.
has_key
(
'MAIL'
):
mbox
=
os
.
environ
[
'MAIL'
]
elif
os
.
environ
.
has_key
(
'MAIL'
):
mbox
=
os
.
environ
[
'USER'
]
else
:
print
"Who are you?"
return
else
:
mbox
=
args
[
0
]
if
mbox
[:
1
]
==
'+'
:
mbox
=
os
.
environ
[
'HOME'
]
+
'/Mail/'
+
mbox
[
1
:]
elif
not
'/'
in
mbox
:
mbox
=
'/usr/mail/'
+
mbox
if
os
.
path
.
isdir
(
mbox
):
mb
=
MHMailbox
(
mbox
)
else
:
fp
=
open
(
mbox
,
'r'
)
mb
=
UnixMailbox
(
fp
)
msgs
=
[]
while
1
:
...
...
@@ -152,17 +167,20 @@ if __name__ == '__main__':
if
not
msg
:
break
msgs
.
append
(
msg
)
if
len
(
sys
.
argv
)
>
1
:
num
=
string
.
atoi
(
sys
.
argv
[
1
])
if
len
(
args
)
>
1
:
num
=
string
.
atoi
(
args
[
1
])
print
'Message
%
d body:'
%
num
msg
=
msgs
[
num
-
1
]
msg
.
rewindbody
()
sys
.
stdout
.
write
(
msg
.
fp
.
read
())
sys
.
exit
(
0
)
print
'Mailbox'
,
mbox
,
'has'
,
len
(
msgs
),
'messages:'
for
msg
in
msgs
:
f
=
msg
.
getheader
(
'from'
)
s
=
msg
.
getheader
(
'subject'
)
d
=
(
msg
.
getheader
(
'date'
))
print
'
%20.20
s
%18.18
s
%-30.30
s'
%
(
f
,
d
[
5
:],
s
)
else
:
print
'Mailbox'
,
mbox
,
'has'
,
len
(
msgs
),
'messages:'
for
msg
in
msgs
:
f
=
msg
.
getheader
(
'from'
)
s
=
msg
.
getheader
(
'subject'
)
d
=
(
msg
.
getheader
(
'date'
))
print
'
%20.20
s
%18.18
s
%-30.30
s'
%
(
f
,
d
[
5
:],
s
)
if
__name__
==
'__main__'
:
_test
()
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