wasm-demo/src/components/mail
Manos Pitsidianakis 77dc1d74bf
Add smtp client support for sending mail in UI
`mailer_command` was removed, and a new setting `send_mail` was added.

Its possible values are a string, consisting of a shell command to
execute, or settings to configure an smtp server connection. The
configuration I used for testing this is:

  [composing]
  send_mail = { hostname = "smtp.mail.tld", port = 587, auth = { type = "auto", username = "yoshi", password = { type = "command_eval", value = "gpg2 --no-tty -q -d ~/.passwords/msmtp/yoshi.gpg" } }, security = { type = "STARTTLS" } }

For local smtp server:
  [composing]
  send_mail = { hostname = "localhost", port = 25, auth = { type = "none" }, security = { type = "none" } }
2020-07-15 15:24:01 +03:00
..
listing jobs: save handle for each Job 2020-07-15 15:22:33 +03:00
view Fix clippy lints 2020-07-06 15:27:08 +03:00
compose.rs Add smtp client support for sending mail in UI 2020-07-15 15:24:01 +03:00
listing.rs jobs: save handle for each Job 2020-07-15 15:22:33 +03:00
pgp.rs Remove ui crate 2020-02-04 17:29:55 +02:00
status.rs Show account online error status in status tab 2020-07-08 12:10:14 +03:00
view.rs Add smtp client support for sending mail in UI 2020-07-15 15:24:01 +03:00