Home | History | Annotate | Download | only in smtp

Lines Matching refs:extension

155 // Only servers that advertise the STARTTLS extension support this function.
198 // Only servers that advertise the AUTH extension support this function.
243 // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
336 if ok, _ := c.Extension("STARTTLS"); ok {
375 // Extension reports whether an extension is support by the server.
376 // The extension name is case-insensitive. If the extension is supported,
377 // Extension also returns a string that contains any parameters the
378 // server specifies for the extension.
379 func (c *Client) Extension(ext string) (bool, string) {