HomeSort by relevance Sort by last modified time
    Searched full:helo (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/curl/tests/data/
test902 5 SMTP HELO
43 HELO 902
test928 14 214 HELO EHLO RCPT DATA RSET MAIL VRFY EXPN QUIT HELP
test939 39 HELO 939
  /packages/apps/Settings/tests/app/res/values-ms-rMY/
strings.xml 22 <string name="operator_hello" msgid="5164036004953019483">"Helo Pembawa!"</string>
25 <string name="manufacturer_hello" msgid="5926168503597475062">"Helo Pengeluar!"</string>
  /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/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/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/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/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
78 c.helloError = c.helo()
84 // Hello sends a HELO or EHLO to the server as the given host name.
109 // helo sends the HELO greeting to the server. It should be used only when the
111 func (c *Client) helo() error {
113 _, _, err := c.cmd(250, "HELO %s", c.localName)
smtp_test.go 118 if err := c.helo(); err != nil {
119 t.Fatalf("HELO failed: %s", err)
206 var basicClient = `HELO localhost
309 HELO localhost
402 HELO customhost
497 HELO localhost
  /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
78 c.helloError = c.helo()
84 // Hello sends a HELO or EHLO to the server as the given host name.
109 // helo sends the HELO greeting to the server. It should be used only when the
111 func (c *Client) helo() error {
113 _, _, err := c.cmd(250, "HELO %s", c.localName)
smtp_test.go 118 if err := c.helo(); err != nil {
119 t.Fatalf("HELO failed: %s", err)
206 var basicClient = `HELO localhost
309 HELO localhost
402 HELO customhost
497 HELO localhost
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/test/data/
msg_25.txt 2 Received: from [204.245.199.98] (helo=zinfandel.lacita.com)
83 Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/test/data/
msg_25.txt 2 Received: from [204.245.199.98] (helo=zinfandel.lacita.com)
83 Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/
msg_25.txt 2 Received: from [204.245.199.98] (helo=zinfandel.lacita.com)
83 Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/
msg_25.txt 2 Received: from [204.245.199.98] (helo=zinfandel.lacita.com)
83 Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root)
  /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/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/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/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
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 114 * TODO may need to add code to fall back to HELO I switched it from
115 * using HELO on non STARTTLS connections because of AOL's mail
  /system/core/libziparchive/
zip_writer_test.cc 255 ASSERT_EQ(0, writer.WriteBytes("helo", 4));
274 EXPECT_STREQ("helo", buffer);
  /frameworks/base/core/java/android/ddm/
DdmHandleHello.java 34 public static final int CHUNK_HELO = type("HELO");
  /dalvik/docs/
debugmon.html 232 <p>After the JDWP handshake, the server sends a HELO chunk to the client.
235 <p>On the client side, upon seeing a HELO it can know that a DDM server
239 <h4>Chunk HELO (server --&gt; client)</h4>
246 <h4>Chunk HELO (client --&gt; server, reply only)</h4>
247 Information about the client. Must be sent in response to the HELO message.
301 chunk will be sent up at about the same time as the HELO response.
  /libcore/ojluni/src/main/java/sun/net/smtp/
SmtpClient.java 129 issueCommand("helo "+InetAddress.getLocalHost().getHostName()+"\r\n", 250);

Completed in 2730 milliseconds

1 2 3 4 5 6