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

  /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
84 c.helloError = c.helo()
90 // Hello sends a HELO or EHLO to the server as the given host name.
115 // helo sends the HELO greeting to the server. It should be used only when the
117 func (c *Client) helo() error { func
119 _, _, err := c.cmd(250, "HELO %s", c.localName)
smtp_test.go 158 if err := c.helo(); err != nil {
159 t.Fatalf("HELO failed: %s", err)
246 var basicClient = `HELO localhost
349 HELO localhost
442 HELO customhost
537 HELO localhost
  /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
84 c.helloError = c.helo()
90 // Hello sends a HELO or EHLO to the server as the given host name.
115 // helo sends the HELO greeting to the server. It should be used only when the
117 func (c *Client) helo() error { func
119 _, _, err := c.cmd(250, "HELO %s", c.localName)
smtp_test.go 158 if err := c.helo(); err != nil {
159 t.Fatalf("HELO failed: %s", err)
246 var basicClient = `HELO localhost
349 HELO localhost
442 HELO customhost
537 HELO localhost
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
123 """The server refused our HELO reply."""
196 most recent HELO command.
248 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
379 def helo(self, name=''): member in class:SMTP
380 """SMTP 'helo' command.
384 self.putcmd("helo", name or self.local_hostname)
513 """Call self.ehlo() and/or self.helo() if needed.
515 If there has been no previous EHLO or HELO command this session, this
521 the helo greeting.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_smtplib.py 213 # check that a second HELO returns a message that it's a duplicate
216 smtp.helo()
217 expected = (503, 'Duplicate HELO/EHLO')
218 self.assertEqual(smtp.helo(), expected)
264 # test response of client to a non-successful HELO message
  /external/python/cpython2/Lib/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
124 """The server refused our HELO reply."""
208 most recent HELO command.
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
397 def helo(self, name=''): member in class:SMTP
398 """SMTP 'helo' command.
402 self.putcmd("helo", name or self.local_hostname)
531 """Call self.ehlo() and/or self.helo() if needed.
533 If there has been no previous EHLO or HELO command this session, thi
    [all...]
  /external/python/cpython2/Lib/test/
test_smtplib.py 213 # check that a second HELO returns a message that it's a duplicate
216 smtp.helo()
217 expected = (503, 'Duplicate HELO/EHLO')
218 self.assertEqual(smtp.helo(), expected)
264 # test response of client to a non-successful HELO message
  /prebuilts/gdb/darwin-x86/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
123 """The server refused our HELO reply."""
203 most recent HELO command.
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
389 def helo(self, name=''): member in class:SMTP
390 """SMTP 'helo' command.
394 self.putcmd("helo", name or self.local_hostname)
523 """Call self.ehlo() and/or self.helo() if needed.
525 If there has been no previous EHLO or HELO command this session, this
531 the helo greeting
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_smtplib.py 213 # check that a second HELO returns a message that it's a duplicate
216 smtp.helo()
217 expected = (503, 'Duplicate HELO/EHLO')
218 self.assertEqual(smtp.helo(), expected)
264 # test response of client to a non-successful HELO message
  /prebuilts/gdb/linux-x86/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
123 """The server refused our HELO reply."""
203 most recent HELO command.
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
389 def helo(self, name=''): member in class:SMTP
390 """SMTP 'helo' command.
394 self.putcmd("helo", name or self.local_hostname)
523 """Call self.ehlo() and/or self.helo() if needed.
525 If there has been no previous EHLO or HELO command this session, this
531 the helo greeting
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_smtplib.py 213 # check that a second HELO returns a message that it's a duplicate
216 smtp.helo()
217 expected = (503, 'Duplicate HELO/EHLO')
218 self.assertEqual(smtp.helo(), expected)
264 # test response of client to a non-successful HELO message
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
123 """The server refused our HELO reply."""
203 most recent HELO command.
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
389 def helo(self, name=''): member in class:SMTP
390 """SMTP 'helo' command.
394 self.putcmd("helo", name or self.local_hostname)
523 """Call self.ehlo() and/or self.helo() if needed.
525 If there has been no previous EHLO or HELO command this session, this
531 the helo greeting
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_smtplib.py 213 # check that a second HELO returns a message that it's a duplicate
216 smtp.helo()
217 expected = (503, 'Duplicate HELO/EHLO')
218 self.assertEqual(smtp.helo(), expected)
264 # test response of client to a non-successful HELO message
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 21 HELO EHLO MAIL RCPT DATA
123 """The server refused our HELO reply."""
203 most recent HELO command.
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
389 def helo(self, name=''): member in class:SMTP
390 """SMTP 'helo' command.
394 self.putcmd("helo", name or self.local_hostname)
523 """Call self.ehlo() and/or self.helo() if needed.
525 If there has been no previous EHLO or HELO command this session, this
531 the helo greeting
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_smtplib.py 213 # check that a second HELO returns a message that it's a duplicate
216 smtp.helo()
217 expected = (503, 'Duplicate HELO/EHLO')
218 self.assertEqual(smtp.helo(), expected)
264 # test response of client to a non-successful HELO message

Completed in 5178 milliseconds