Home | History | Annotate | Download | only in smtp

Lines Matching defs:ehlo

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 {
130 _, msg, err := c.cmd(250, "EHLO %s", c.localName)
167 return c.ehlo()