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
2880f6ec
Commit
2880f6ec
authored
Aug 10, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Untabified and deleted trailing blank lines.
parent
295da24e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
Lib/smtplib.py
Lib/smtplib.py
+7
-9
No files found.
Lib/smtplib.py
View file @
2880f6ec
...
...
@@ -135,7 +135,7 @@ class SMTP:
"""
Connect
to
a
host
on
a
given
port
.
If
the
hostname
ends
with
a
colon
(
`
:
') followed by a number,
and there is no port specified, that suffix will be stripped
and there is no port specified, that suffix will be stripped
off and the number interpreted as the port number to use.
Note: This method is automatically invoked by __init__,
...
...
@@ -161,9 +161,9 @@ class SMTP:
"""Send `str'
to
the
server
.
"""
if self.debuglevel > 0: print 'send:', `str`
if self.sock:
try:
try:
self.sock.send(str)
except socket.error:
except socket.error:
raise SMTPServerDisconnected
else:
raise SMTPServerDisconnected
...
...
@@ -241,9 +241,9 @@ class SMTP:
return
code
self
.
does_esmtp
=
1
#parse the ehlo responce -ddm
resp
=
string
.
split
(
self
.
ehlo_resp
,
'
\
n
'
)
resp
=
string
.
split
(
self
.
ehlo_resp
,
'
\
n
'
)
del
resp
[
0
]
for
each
in
resp
:
for
each
in
resp
:
m
=
re
.
match
(
r'(?P<feature>[A-Za-z0-9][A-Za-z0-9\
-]*)
',each)
if m:
feature=string.lower(m.group("feature"))
...
...
@@ -327,8 +327,8 @@ class SMTP:
for
the
mail
command
-
rcpt_options
:
List
of
ESMTP
options
(
such
as
DSN
commands
)
for
all
the
rcpt
commands
If
there
has
been
no
previous
EHLO
or
HELO
command
this
session
,
this
method
tries
ESMTP
EHLO
first
.
If
the
server
does
ESMTP
,
message
If
there
has
been
no
previous
EHLO
or
HELO
command
this
session
,
this
method
tries
ESMTP
EHLO
first
.
If
the
server
does
ESMTP
,
message
size
and
each
of
the
specified
options
will
be
passed
to
it
.
If
EHLO
fails
,
HELO
will
be
tried
and
ESMTP
options
suppressed
.
...
...
@@ -431,5 +431,3 @@ if __name__ == '__main__':
server.set_debuglevel(1)
server.sendmail(fromaddr, toaddrs, msg)
server.quit()
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