update doc/changelog about signature

This commit is contained in:
Clément DOUIN 2021-04-03 12:02:36 +02:00
parent 17115319ee
commit cbc74916a9
No known key found for this signature in database
GPG key ID: 69C9B9CFFDEE2DEF
2 changed files with 34 additions and 13 deletions

View file

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Copy feature [#35] - Copy feature [#35]
- Move feature [#31] - Move feature [#31]
- Delete feature [#36] - Delete feature [#36]
- Signature support [#33]
### Changed ### Changed
@ -88,6 +89,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#30]: https://github.com/soywod/himalaya/issues/30 [#30]: https://github.com/soywod/himalaya/issues/30
[#31]: https://github.com/soywod/himalaya/issues/31 [#31]: https://github.com/soywod/himalaya/issues/31
[#32]: https://github.com/soywod/himalaya/issues/32 [#32]: https://github.com/soywod/himalaya/issues/32
[#33]: https://github.com/soywod/himalaya/issues/33
[#34]: https://github.com/soywod/himalaya/issues/34 [#34]: https://github.com/soywod/himalaya/issues/34
[#35]: https://github.com/soywod/himalaya/issues/35 [#35]: https://github.com/soywod/himalaya/issues/35
[#38]: https://github.com/soywod/himalaya/issues/38 [#38]: https://github.com/soywod/himalaya/issues/38

View file

@ -25,6 +25,9 @@ Minimalist CLI email client, written in Rust.
* [Move a message](#move-a-message) * [Move a message](#move-a-message)
* [Delete a message](#delete-a-message) * [Delete a message](#delete-a-message)
* [Listen to new messages](#listen-to-new-messages) * [Listen to new messages](#listen-to-new-messages)
* [Interfaces](#interfaces)
* [GUI](#gui)
* [TUI](#tui)
* [License](https://github.com/soywod/himalaya/blob/master/LICENSE) * [License](https://github.com/soywod/himalaya/blob/master/LICENSE)
* [Changelog](https://github.com/soywod/himalaya/blob/master/CHANGELOG.md) * [Changelog](https://github.com/soywod/himalaya/blob/master/CHANGELOG.md)
* [Credits](#credits) * [Credits](#credits)
@ -56,6 +59,7 @@ for other installation methods.*
name = "Your full name" name = "Your full name"
downloads-dir = "/abs/path/to/downloads" downloads-dir = "/abs/path/to/downloads"
signature = "Regards,"
[gmail] [gmail]
default = true default = true
@ -78,7 +82,7 @@ for all the options.*
## Usage ## Usage
``` ```
Himalaya 0.2.0 himalaya 0.2.0
soywod <clement.douin@posteo.net> soywod <clement.douin@posteo.net>
📫 Minimalist CLI email client 📫 Minimalist CLI email client
@ -90,23 +94,28 @@ FLAGS:
-V, --version Prints version information -V, --version Prints version information
OPTIONS: OPTIONS:
-a, --account <STRING> Name of the account to use -a, --account <STRING> Selects a specific account
-o, --output <STRING> Format of the output to print [possible values: text, json] -m, --mailbox <MAILBOX> Selects a specific mailbox [default: INBOX]
-o, --output <STRING> Defines the output format [default: plain] [possible values: plain, json]
SUBCOMMANDS: SUBCOMMANDS:
attachments Downloads all attachments from an email attachments Downloads all message attachments
forward Forwards an email copy Copy a message to the targetted mailbox
delete Delete a message
flags Handles flags
forward Forwards a message
help Prints this message or the help of the given subcommand(s) help Prints this message or the help of the given subcommand(s)
idle Starts the idle mode idle Spawns a blocking idle daemon
list Lists emails sorted by arrival date list Lists all messages
mailboxes Lists all available mailboxes mailboxes Lists all mailboxes
read Reads text bodies of an email move Move a message to the targetted mailbox
reply Answers to an email read Reads text bodies of a message
save Saves a raw message in the given mailbox reply Answers to a message
search Lists emails matching the given IMAP query save Saves a raw message
search Lists messages matching the given IMAP query
send Sends a raw message send Sends a raw message
template Generates a message template template Generates a message template
write Writes a new email write Writes a new message
``` ```
*See the [wiki section](https://github.com/soywod/himalaya/wiki/Usage) for more *See the [wiki section](https://github.com/soywod/himalaya/wiki/Usage) for more
@ -226,6 +235,16 @@ systemctl --user enable himalaya.service
systemctl --user start himalaya.service systemctl --user start himalaya.service
``` ```
## Interfaces
### GUI
Not yet, but feel free to contribute ;)
### TUI
- [Vim plugin](https://github.com/soywod/himalaya.vim)
## Credits ## Credits
- [IMAP RFC3501](https://tools.ietf.org/html/rfc3501) - [IMAP RFC3501](https://tools.ietf.org/html/rfc3501)