smtp.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. // Copyright 2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
  5. // It also implements the following extensions:
  6. // 8BITMIME RFC 1652
  7. // AUTH RFC 2554
  8. // STARTTLS RFC 3207
  9. // Additional extensions may be handled by clients.
  10. //
  11. // The smtp package is frozen and is not accepting new features.
  12. // Some external packages provide more functionality. See:
  13. //
  14. // https://godoc.org/?q=smtp
  15. package emailer
  16. import (
  17. "crypto/tls"
  18. "encoding/base64"
  19. "errors"
  20. "fmt"
  21. "io"
  22. "net"
  23. "net/textproto"
  24. "strings"
  25. "time"
  26. )
  27. // A Client represents a client connection to an SMTP server.
  28. type Client struct {
  29. // Text is the textproto.Conn used by the Client. It is exported to allow for
  30. // clients to add extensions.
  31. Text *textproto.Conn
  32. // keep a reference to the connection so it can be used to create a TLS
  33. // connection later
  34. conn net.Conn
  35. // whether the Client is using TLS
  36. tls bool
  37. serverName string
  38. // map of supported extensions
  39. ext map[string]string
  40. // supported auth mechanisms
  41. auth []string
  42. localName string // the name to use in HELO/EHLO
  43. didHello bool // whether we've said HELO/EHLO
  44. helloError error // the error from the hello
  45. }
  46. // Dial returns a new Client connected to an SMTP server at addr.
  47. // The addr must include a port, as in "mail.example.com:smtp".
  48. func Dial(addr string) (*Client, error) {
  49. conn, err := net.DialTimeout("tcp", addr, time.Second*10)
  50. if err != nil {
  51. return nil, err
  52. }
  53. host, _, _ := net.SplitHostPort(addr)
  54. return NewClient(conn, host)
  55. }
  56. // NewClient returns a new Client using an existing connection and host as a
  57. // server name to be used when authenticating.
  58. func NewClient(conn net.Conn, host string) (*Client, error) {
  59. text := textproto.NewConn(conn)
  60. _, _, err := text.ReadResponse(220)
  61. if err != nil {
  62. text.Close()
  63. return nil, err
  64. }
  65. c := &Client{Text: text, conn: conn, serverName: host, localName: "localhost"}
  66. _, c.tls = conn.(*tls.Conn)
  67. return c, nil
  68. }
  69. // Close closes the connection.
  70. func (c *Client) Close() error {
  71. return c.Text.Close()
  72. }
  73. // hello runs a hello exchange if needed.
  74. func (c *Client) hello() error {
  75. if !c.didHello {
  76. c.didHello = true
  77. err := c.ehlo()
  78. if err != nil {
  79. c.helloError = c.helo()
  80. }
  81. }
  82. return c.helloError
  83. }
  84. // Hello sends a HELO or EHLO to the server as the given host name.
  85. // Calling this method is only necessary if the client needs control
  86. // over the host name used. The client will introduce itself as "localhost"
  87. // automatically otherwise. If Hello is called, it must be called before
  88. // any of the other methods.
  89. func (c *Client) Hello(localName string) error {
  90. if err := validateLine(localName); err != nil {
  91. return err
  92. }
  93. if c.didHello {
  94. return errors.New("smtp: Hello called after other methods")
  95. }
  96. c.localName = localName
  97. return c.hello()
  98. }
  99. // cmd is a convenience function that sends a command and returns the response
  100. func (c *Client) cmd(expectCode int, format string, args ...any) (int, string, error) {
  101. id, err := c.Text.Cmd(format, args...)
  102. if err != nil {
  103. return 0, "", err
  104. }
  105. c.Text.StartResponse(id)
  106. defer c.Text.EndResponse(id)
  107. code, msg, err := c.Text.ReadResponse(expectCode)
  108. return code, msg, err
  109. }
  110. // helo sends the HELO greeting to the server. It should be used only when the
  111. // server does not support ehlo.
  112. func (c *Client) helo() error {
  113. c.ext = nil
  114. _, _, err := c.cmd(250, "HELO %s", c.localName)
  115. return err
  116. }
  117. // ehlo sends the EHLO (extended hello) greeting to the server. It
  118. // should be the preferred greeting for servers that support it.
  119. func (c *Client) ehlo() error {
  120. _, msg, err := c.cmd(250, "EHLO %s", c.localName)
  121. if err != nil {
  122. return err
  123. }
  124. ext := make(map[string]string)
  125. extList := strings.Split(msg, "\n")
  126. if len(extList) > 1 {
  127. extList = extList[1:]
  128. for _, line := range extList {
  129. k, v, _ := strings.Cut(line, " ")
  130. ext[k] = v
  131. }
  132. }
  133. if mechs, ok := ext["AUTH"]; ok {
  134. c.auth = strings.Split(mechs, " ")
  135. }
  136. c.ext = ext
  137. return err
  138. }
  139. // StartTLS sends the STARTTLS command and encrypts all further communication.
  140. // Only servers that advertise the STARTTLS extension support this function.
  141. func (c *Client) StartTLS(config *tls.Config) error {
  142. if err := c.hello(); err != nil {
  143. return err
  144. }
  145. _, _, err := c.cmd(220, "STARTTLS")
  146. if err != nil {
  147. return err
  148. }
  149. c.conn = tls.Client(c.conn, config)
  150. c.Text = textproto.NewConn(c.conn)
  151. c.tls = true
  152. return c.ehlo()
  153. }
  154. // TLSConnectionState returns the client's TLS connection state.
  155. // The return values are their zero values if StartTLS did
  156. // not succeed.
  157. func (c *Client) TLSConnectionState() (state tls.ConnectionState, ok bool) {
  158. tc, ok := c.conn.(*tls.Conn)
  159. if !ok {
  160. return
  161. }
  162. return tc.ConnectionState(), true
  163. }
  164. // Verify checks the validity of an email address on the server.
  165. // If Verify returns nil, the address is valid. A non-nil return
  166. // does not necessarily indicate an invalid address. Many servers
  167. // will not verify addresses for security reasons.
  168. func (c *Client) Verify(addr string) error {
  169. if err := validateLine(addr); err != nil {
  170. return err
  171. }
  172. if err := c.hello(); err != nil {
  173. return err
  174. }
  175. _, _, err := c.cmd(250, "VRFY %s", addr)
  176. return err
  177. }
  178. // Auth authenticates a client using the provided authentication mechanism.
  179. // A failed authentication closes the connection.
  180. // Only servers that advertise the AUTH extension support this function.
  181. func (c *Client) Auth(a Auth) error {
  182. if err := c.hello(); err != nil {
  183. return err
  184. }
  185. encoding := base64.StdEncoding
  186. mech, resp, err := a.Start(&ServerInfo{c.serverName, c.tls, c.auth})
  187. if err != nil {
  188. c.Quit()
  189. return err
  190. }
  191. resp64 := make([]byte, encoding.EncodedLen(len(resp)))
  192. encoding.Encode(resp64, resp)
  193. code, msg64, err := c.cmd(0, strings.TrimSpace(fmt.Sprintf("AUTH %s %s", mech, resp64)))
  194. for err == nil {
  195. var msg []byte
  196. switch code {
  197. case 334:
  198. msg, err = encoding.DecodeString(msg64)
  199. case 235:
  200. // the last message isn't base64 because it isn't a challenge
  201. msg = []byte(msg64)
  202. default:
  203. err = &textproto.Error{Code: code, Msg: msg64}
  204. }
  205. if err == nil {
  206. resp, err = a.Next(msg, code == 334)
  207. }
  208. if err != nil {
  209. // abort the AUTH
  210. c.cmd(501, "*")
  211. c.Quit()
  212. break
  213. }
  214. if resp == nil {
  215. break
  216. }
  217. resp64 = make([]byte, encoding.EncodedLen(len(resp)))
  218. encoding.Encode(resp64, resp)
  219. code, msg64, err = c.cmd(0, string(resp64))
  220. }
  221. return err
  222. }
  223. // Mail issues a MAIL command to the server using the provided email address.
  224. // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
  225. // parameter. If the server supports the SMTPUTF8 extension, Mail adds the
  226. // SMTPUTF8 parameter.
  227. // This initiates a mail transaction and is followed by one or more Rcpt calls.
  228. func (c *Client) Mail(from string) error {
  229. if err := validateLine(from); err != nil {
  230. return err
  231. }
  232. if err := c.hello(); err != nil {
  233. return err
  234. }
  235. cmdStr := "MAIL FROM:<%s>"
  236. if c.ext != nil {
  237. if _, ok := c.ext["8BITMIME"]; ok {
  238. cmdStr += " BODY=8BITMIME"
  239. }
  240. if _, ok := c.ext["SMTPUTF8"]; ok {
  241. cmdStr += " SMTPUTF8"
  242. }
  243. }
  244. _, _, err := c.cmd(250, cmdStr, from)
  245. return err
  246. }
  247. // Rcpt issues a RCPT command to the server using the provided email address.
  248. // A call to Rcpt must be preceded by a call to Mail and may be followed by
  249. // a Data call or another Rcpt call.
  250. func (c *Client) Rcpt(to string) error {
  251. if err := validateLine(to); err != nil {
  252. return err
  253. }
  254. _, _, err := c.cmd(25, "RCPT TO:<%s>", to)
  255. return err
  256. }
  257. type dataCloser struct {
  258. c *Client
  259. io.WriteCloser
  260. }
  261. func (d *dataCloser) Close() error {
  262. d.WriteCloser.Close()
  263. _, _, err := d.c.Text.ReadResponse(250)
  264. return err
  265. }
  266. // Data issues a DATA command to the server and returns a writer that
  267. // can be used to write the mail headers and body. The caller should
  268. // close the writer before calling any more methods on c. A call to
  269. // Data must be preceded by one or more calls to Rcpt.
  270. func (c *Client) Data() (io.WriteCloser, error) {
  271. _, _, err := c.cmd(354, "DATA")
  272. if err != nil {
  273. return nil, err
  274. }
  275. return &dataCloser{c, c.Text.DotWriter()}, nil
  276. }
  277. var testHookStartTLS func(*tls.Config) // nil, except for tests
  278. // SendMail connects to the server at addr, switches to TLS if
  279. // possible, authenticates with the optional mechanism a if possible,
  280. // and then sends an email from address from, to addresses to, with
  281. // message msg.
  282. // The addr must include a port, as in "mail.example.com:smtp".
  283. //
  284. // The addresses in the to parameter are the SMTP RCPT addresses.
  285. //
  286. // The msg parameter should be an RFC 822-style email with headers
  287. // first, a blank line, and then the message body. The lines of msg
  288. // should be CRLF terminated. The msg headers should usually include
  289. // fields such as "From", "To", "Subject", and "Cc". Sending "Bcc"
  290. // messages is accomplished by including an email address in the to
  291. // parameter but not including it in the msg headers.
  292. //
  293. // The SendMail function and the net/smtp package are low-level
  294. // mechanisms and provide no support for DKIM signing, MIME
  295. // attachments (see the mime/multipart package), or other mail
  296. // functionality. Higher-level packages exist outside of the standard
  297. // library.
  298. func SendMail(addr string, a Auth, from string, to []string, msg []byte) error {
  299. if err := validateLine(from); err != nil {
  300. return err
  301. }
  302. for _, recp := range to {
  303. if err := validateLine(recp); err != nil {
  304. return err
  305. }
  306. }
  307. c, err := Dial(addr)
  308. if err != nil {
  309. return err
  310. }
  311. defer c.Close()
  312. if err = c.hello(); err != nil {
  313. return err
  314. }
  315. if ok, _ := c.Extension("STARTTLS"); ok {
  316. config := &tls.Config{ServerName: c.serverName}
  317. if testHookStartTLS != nil {
  318. testHookStartTLS(config)
  319. }
  320. if err = c.StartTLS(config); err != nil {
  321. return err
  322. }
  323. }
  324. if a != nil && c.ext != nil {
  325. if _, ok := c.ext["AUTH"]; !ok {
  326. return errors.New("smtp: server doesn't support AUTH")
  327. }
  328. if err = c.Auth(a); err != nil {
  329. return err
  330. }
  331. }
  332. if err = c.Mail(from); err != nil {
  333. return err
  334. }
  335. for _, addr := range to {
  336. if err = c.Rcpt(addr); err != nil {
  337. return err
  338. }
  339. }
  340. w, err := c.Data()
  341. if err != nil {
  342. return err
  343. }
  344. _, err = w.Write(msg)
  345. if err != nil {
  346. return err
  347. }
  348. err = w.Close()
  349. if err != nil {
  350. return err
  351. }
  352. return c.Quit()
  353. }
  354. // Extension reports whether an extension is support by the server.
  355. // The extension name is case-insensitive. If the extension is supported,
  356. // Extension also returns a string that contains any parameters the
  357. // server specifies for the extension.
  358. func (c *Client) Extension(ext string) (bool, string) {
  359. if err := c.hello(); err != nil {
  360. return false, ""
  361. }
  362. if c.ext == nil {
  363. return false, ""
  364. }
  365. ext = strings.ToUpper(ext)
  366. param, ok := c.ext[ext]
  367. return ok, param
  368. }
  369. // Reset sends the RSET command to the server, aborting the current mail
  370. // transaction.
  371. func (c *Client) Reset() error {
  372. if err := c.hello(); err != nil {
  373. return err
  374. }
  375. _, _, err := c.cmd(250, "RSET")
  376. return err
  377. }
  378. // Noop sends the NOOP command to the server. It does nothing but check
  379. // that the connection to the server is okay.
  380. func (c *Client) Noop() error {
  381. if err := c.hello(); err != nil {
  382. return err
  383. }
  384. _, _, err := c.cmd(250, "NOOP")
  385. return err
  386. }
  387. // Quit sends the QUIT command and closes the connection to the server.
  388. func (c *Client) Quit() error {
  389. if err := c.hello(); err != nil {
  390. return err
  391. }
  392. _, _, err := c.cmd(221, "QUIT")
  393. if err != nil {
  394. return err
  395. }
  396. return c.Text.Close()
  397. }
  398. // validateLine checks to see if a line has CR or LF as per RFC 5321
  399. func validateLine(line string) error {
  400. if strings.ContainsAny(line, "\n\r") {
  401. return errors.New("smtp: A line must not contain CR or LF")
  402. }
  403. return nil
  404. }