You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
meli/src
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" } }
4 years ago
..
components Add smtp client support for sending mail in UI 4 years ago
conf Add smtp client support for sending mail in UI 4 years ago
execute Add save-draft command 4 years ago
plugins Remove some needless clones and stuff (thanks to Clippy) 4 years ago
terminal Fix clippy lints 4 years ago
types Fix clippy lints 4 years ago
bin.rs Fix clippy lints 4 years ago
components.rs Add optional feature to save SVG screenshot 4 years ago
conf.rs Remove some needless clones and stuff (thanks to Clippy) 4 years ago
execute.rs Fix clippy lints 4 years ago
jobs.rs Add smtp client support for sending mail in UI 4 years ago
mailcap.rs Remove some needless clones and stuff (thanks to Clippy) 4 years ago
managesieve.rs imap: remove blocking imap backend, replace with async 4 years ago
plugins.rs Remove some needless clones and stuff (thanks to Clippy) 4 years ago
sqlite3.rs Fix clippy lints 4 years ago
state.rs Show account online error status when offline 4 years ago
terminal.rs Fix clippy lints 4 years ago
types.rs Add smtp client support for sending mail in UI 4 years ago
unix.rs MailBackend: change more methods to Futures 4 years ago
workers.rs Spawn workers on demand 4 years ago