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

  /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/chromium-trace/catapult/third_party/Paste/paste/exceptions/
reporter.py 51 server.ehlo()
53 server.ehlo()
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp.go 38 localName string // the name to use in HELO/EHLO
39 didHello bool // whether we've said HELO/EHLO
76 err := c.ehlo()
84 // Hello sends a HELO or EHLO to the server as the given host name.
110 // server does not support ehlo.
117 // ehlo sends the EHLO (extended hello) greeting to the server. It
119 func (c *Client) ehlo() error { func
120 _, msg, err := c.cmd(250, "EHLO %s", c.localName)
157 return c.ehlo()
    [all...]
smtp_test.go 121 if err := c.ehlo(); err == nil {
122 t.Fatalf("Expected first EHLO to fail")
124 if err := c.ehlo(); err != nil {
125 t.Fatalf("Second EHLO failed: %s", err)
207 EHLO localhost
208 EHLO localhost
268 var newClientClient = `EHLO localhost
308 var newClient2Client = `EHLO localhost
401 var baseHelloClient = `EHLO customhost
496 var sendMailClient = `EHLO localhos
    [all...]
  /prebuilts/go/linux-x86/src/net/smtp/
smtp.go 38 localName string // the name to use in HELO/EHLO
39 didHello bool // whether we've said HELO/EHLO
76 err := c.ehlo()
84 // Hello sends a HELO or EHLO to the server as the given host name.
110 // server does not support ehlo.
117 // ehlo sends the EHLO (extended hello) greeting to the server. It
119 func (c *Client) ehlo() error { func
120 _, msg, err := c.cmd(250, "EHLO %s", c.localName)
157 return c.ehlo()
    [all...]
smtp_test.go 121 if err := c.ehlo(); err == nil {
122 t.Fatalf("Expected first EHLO to fail")
124 if err := c.ehlo(); err != nil {
125 t.Fatalf("Second EHLO failed: %s", err)
207 EHLO localhost
208 EHLO localhost
268 var newClientClient = `EHLO localhost
308 var newClient2Client = `EHLO localhost
401 var baseHelloClient = `EHLO customhost
496 var sendMailClient = `EHLO localhos
    [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...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
utils.py 840 server.ehlo()
842 server.ehlo()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py     [all...]

Completed in 423 milliseconds