Lines Matching defs:Hello
40 helloError error // the error from the hello
72 // hello runs a hello exchange if needed.
73 func (c *Client) hello() error {
84 // Hello sends a HELO or EHLO to the server as the given host name.
87 // automatically otherwise. If Hello is called, it must be called before
89 func (c *Client) Hello(localName string) error {
91 return errors.New("smtp: Hello called after other methods")
94 return c.hello()
117 // ehlo sends the EHLO (extended hello) greeting to the server. It
147 if err := c.hello(); err != nil {
176 if err := c.hello(); err != nil {
187 if err := c.hello(); err != nil {
234 if err := c.hello(); err != nil {
306 if err = c.hello(); err != nil {
353 if err := c.hello(); err != nil {
367 if err := c.hello(); err != nil {
376 if err := c.hello(); err != nil {