HomeSort by relevance Sort by last modified time
    Searched refs:ehlo (Results 1 - 25 of 32) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_smtpnet.py 17 server.ehlo()
24 server.ehlo()
test_smtplib.py 198 # EHLO isn't implemented in DebuggingServer
200 expected = (502, 'Error: command "EHLO" not implemented')
201 self.assertEqual(smtp.ehlo(), expected)
217 expected = (503, 'Duplicate HELO/EHLO')
252 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
431 # no features should be present before the EHLO
442 smtp.ehlo()
  /external/python/cpython2/Lib/test/
test_smtpnet.py 15 server.ehlo()
22 server.ehlo()
test_smtplib.py 198 # EHLO isn't implemented in DebuggingServer
200 expected = (502, 'Error: command "EHLO" not implemented')
201 self.assertEqual(smtp.ehlo(), expected)
217 expected = (503, 'Duplicate HELO/EHLO')
252 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
457 # no features should be present before the EHLO
468 smtp.ehlo()
541 code, message = smtp.ehlo()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_smtpnet.py 17 server.ehlo()
24 server.ehlo()
test_smtplib.py 198 # EHLO isn't implemented in DebuggingServer
200 expected = (502, 'Error: command "EHLO" not implemented')
201 self.assertEqual(smtp.ehlo(), expected)
217 expected = (503, 'Duplicate HELO/EHLO')
252 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
430 # no features should be present before the EHLO
441 smtp.ehlo()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_smtpnet.py 17 server.ehlo()
24 server.ehlo()
test_smtplib.py 198 # EHLO isn't implemented in DebuggingServer
200 expected = (502, 'Error: command "EHLO" not implemented')
201 self.assertEqual(smtp.ehlo(), expected)
217 expected = (503, 'Duplicate HELO/EHLO')
252 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
430 # no features should be present before the EHLO
441 smtp.ehlo()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_smtpnet.py 17 server.ehlo()
24 server.ehlo()
test_smtplib.py 198 # EHLO isn't implemented in DebuggingServer
200 expected = (502, 'Error: command "EHLO" not implemented')
201 self.assertEqual(smtp.ehlo(), expected)
217 expected = (503, 'Duplicate HELO/EHLO')
252 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
430 # no features should be present before the EHLO
441 smtp.ehlo()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_smtpnet.py 17 server.ehlo()
24 server.ehlo()
test_smtplib.py 198 # EHLO isn't implemented in DebuggingServer
200 expected = (502, 'Error: command "EHLO" not implemented')
201 self.assertEqual(smtp.ehlo(), expected)
217 expected = (503, 'Duplicate HELO/EHLO')
252 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
430 # no features should be present before the EHLO
441 smtp.ehlo()
  /external/python/cpython3/Lib/test/
test_smtpnet.py 38 server.ehlo()
50 server.ehlo()
57 server.ehlo()
65 server.ehlo()
78 server.ehlo()
test_smtplib.py 270 # EHLO isn't implemented in DebuggingServer
273 self.assertEqual(smtp.ehlo(), expected)
297 expected = (503, b'Duplicate HELO/EHLO')
303 self.assertEqual(smtp.help(), b'Supported commands: EHLO HELO MAIL ' + \
560 self.assertRaises(smtplib.SMTPServerDisconnected, smtp.ehlo)
668 self.push('503 Error: send EHLO first')
874 # no features should be present before the EHLO
885 smtp.ehlo()
    [all...]
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp.go 44 localName string // the name to use in HELO/EHLO
45 didHello bool // whether we've said HELO/EHLO
83 err := c.ehlo()
91 // Hello sends a HELO or EHLO to the server as the given host name.
120 // server does not support ehlo.
127 // ehlo sends the EHLO (extended hello) greeting to the server. It
129 func (c *Client) ehlo() error { func
130 _, msg, err := c.cmd(250, "EHLO %s", c.localName)
167 return c.ehlo()
    [all...]
  /prebuilts/go/linux-x86/src/net/smtp/
smtp.go 44 localName string // the name to use in HELO/EHLO
45 didHello bool // whether we've said HELO/EHLO
83 err := c.ehlo()
91 // Hello sends a HELO or EHLO to the server as the given host name.
120 // server does not support ehlo.
127 // ehlo sends the EHLO (extended hello) greeting to the server. It
129 func (c *Client) ehlo() error { func
130 _, msg, err := c.cmd(250, "EHLO %s", c.localName)
167 return c.ehlo()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
200 most recent EHLO command. This is usually multiline.
203 This is a True value _after you do an EHLO command_, if the
208 will _after you do an EHLO command_, contain the names of the
222 ehlo_msg = "ehlo"
248 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
389 def ehlo(self, name=''): member in class:SMTP
390 """ SMTP 'ehlo' command.
398 # MTA's will disconnect on an ehlo. Toss an exception if
407 #parse the ehlo response -ddm
    [all...]
  /external/python/cpython2/Lib/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
212 most recent EHLO command. This is usually multiline.
215 This is a True value _after you do an EHLO command_, if the
220 will _after you do an EHLO command_, contain the names of the
234 ehlo_msg = "ehlo"
249 HELO/EHLO command. Otherwise, the local hostname is found using
262 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
407 def ehlo(self, name=''): member in class:SMTP
408 """ SMTP 'ehlo' command.
416 # MTA's will disconnect on an ehlo. Toss an exception i
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
207 most recent EHLO command. This is usually multiline.
210 This is a True value _after you do an EHLO command_, if the
215 will _after you do an EHLO command_, contain the names of the
229 ehlo_msg = "ehlo"
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
399 def ehlo(self, name=''): member in class:SMTP
400 """ SMTP 'ehlo' command.
408 # MTA's will disconnect on an ehlo. Toss an exception if
417 #parse the ehlo response -dd
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
207 most recent EHLO command. This is usually multiline.
210 This is a True value _after you do an EHLO command_, if the
215 will _after you do an EHLO command_, contain the names of the
229 ehlo_msg = "ehlo"
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
399 def ehlo(self, name=''): member in class:SMTP
400 """ SMTP 'ehlo' command.
408 # MTA's will disconnect on an ehlo. Toss an exception if
417 #parse the ehlo response -dd
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
207 most recent EHLO command. This is usually multiline.
210 This is a True value _after you do an EHLO command_, if the
215 will _after you do an EHLO command_, contain the names of the
229 ehlo_msg = "ehlo"
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
399 def ehlo(self, name=''): member in class:SMTP
400 """ SMTP 'ehlo' command.
408 # MTA's will disconnect on an ehlo. Toss an exception if
417 #parse the ehlo response -dd
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
207 most recent EHLO command. This is usually multiline.
210 This is a True value _after you do an EHLO command_, if the
215 will _after you do an EHLO command_, contain the names of the
229 ehlo_msg = "ehlo"
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
399 def ehlo(self, name=''): member in class:SMTP
400 """ SMTP 'ehlo' command.
408 # MTA's will disconnect on an ehlo. Toss an exception if
417 #parse the ehlo response -dd
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
handlers.py     [all...]
  /external/python/cpython2/Lib/logging/
handlers.py     [all...]
  /external/python/cpython3/Lib/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
199 most recent EHLO command. This is usually multiline.
202 This is a True value _after you do an EHLO command_, if the
207 will _after you do an EHLO command_, contain the names of the
221 ehlo_msg = "ehlo"
236 `local_hostname` is used as the FQDN of the local host in the HELO/EHLO
257 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
433 def ehlo(self, name=''): member in class:SMTP
434 """ SMTP 'ehlo' command.
442 # MTA's will disconnect on an ehlo. Toss an exception i
    [all...]

Completed in 830 milliseconds

1 2