forked from pimalaya/himalaya
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update main screenshot readme * add contributing file * update changelog * doc: remove roadmap from reame * improve main comments * improve arg and handler logs * fix multiple recipients issue (pimalaya#288) * add notify-query config option (pimalaya#289) * set up end-to-end encryption (pimalaya#287) * init basic pgp encrypt/decrypt * add small rpgp poc for (pimalaya#286) * improve decrypt parts logs * add pgp-decrypt-cmd to config * add pgp-encrypt-cmd to config * init pgp signature * improve decrypt part readability * improve encrypt multipart, remove sign * remove unused md5 lib * add encrypt arg to reply and forward commands * fix typos * prepare v0.5.5
- Loading branch information
Showing
29 changed files
with
762 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Himalaya contributing guide | ||
|
||
Thank you for investing your time in contributing to Himalaya! | ||
|
||
In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR. | ||
|
||
## New contributor guide | ||
|
||
To get an overview of the project, read the [README](README.md). To get more information about the project, read the [wiki](https://github.com/soywod/himalaya/wiki). | ||
|
||
## Getting started | ||
|
||
### Issues | ||
|
||
#### Create a new issue | ||
|
||
If you spot a problem with the docs, [search if an issue already exists](https://github.com/soywod/himalaya/issues). If a related issue doesn't exist, you can open a new issue using a relevant [issue form](https://github.com/soywod/himalaya/issues/new/choose). | ||
|
||
#### Solve an issue | ||
|
||
Scan through our [existing issues](https://github.com/soywod/himalaya/issues) to find one that interests you. You can narrow down the search using `labels` as filters. If you find an issue to work on, you are welcome to open a PR with a fix. | ||
|
||
### Make Changes | ||
|
||
#### Make changes in the UI | ||
|
||
Click **Make a contribution** at the bottom of any docs page to make small changes such as a typo, sentence fix, or a broken link. This takes you to the `.md` file where you can make your changes and [create a pull request](#pull-request) for a review. | ||
|
||
#### Make changes locally | ||
|
||
First, follow the instructions on [how to install Himalaya from sources](https://github.com/soywod/himalaya/wiki/Installation:sources). Then, create a working branch and start with your changes! | ||
|
||
### Commit your update | ||
|
||
Commit the changes once you are happy with them. Commit messages follow the [Angular Convention](https://gist.github.com/stephenparish/9941e89d80e2bc58a153), but contain only a subject. The subject can be prefixed with a custom context like `msg: `, `mbox: `, `imap: ` etc. | ||
|
||
> Use imperative, present tense: “change” not “changed” nor | ||
> “changes”<br>Don't capitalize first letter<br>No dot (.) at the end | ||
### Pull Request | ||
|
||
When you're finished with the changes, create a pull request, also known as a PR. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "himalaya" | ||
description = "Command-line interface for email management" | ||
version = "0.5.4" | ||
version = "0.5.5" | ||
authors = ["soywod <[email protected]>"] | ||
edition = "2018" | ||
license-file = "LICENSE" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,15 @@ | |
|
||
Command-line interface for email management | ||
|
||
*The project is under active development. Do not use in production before the | ||
`v1.0.0` (see the [roadmap](https://github.com/soywod/himalaya/milestone/5)).* | ||
*The project is under active development. Do not use in production before the `v1.0.0`.* | ||
|
||
 | ||
 | ||
|
||
## Motivation | ||
|
||
Bringing emails to the terminal is a *pain*. First, because they are sensitive | ||
data. Secondly, the existing TUIs ([Mutt](http://www.mutt.org/), | ||
[NeoMutt](https://neomutt.org/), [Alpine](https://alpine.x10host.com/), | ||
[aerc](https://aerc-mail.org/)…) are really hard to configure. They require time | ||
and patience. | ||
Bringing emails to the terminal is a *pain*. First, because they are sensitive data. Secondly, the existing TUIs ([Mutt](http://www.mutt.org/), [NeoMutt](https://neomutt.org/), [Alpine](https://alpine.x10host.com/), [aerc](https://aerc-mail.org/)…) are really hard to configure. They require time and patience. | ||
|
||
The aim of Himalaya is to extract the email logic into a simple (yet solid) CLI | ||
API that can be used directly from the terminal, from scripts, from UIs… | ||
Possibilities are endless! | ||
The aim of Himalaya is to extract the email logic into a simple (yet solid) CLI API that can be used directly from the terminal, from scripts, from UIs… Possibilities are endless! | ||
|
||
## Installation | ||
|
||
|
@@ -28,9 +21,7 @@ Possibilities are endless! | |
curl -sSL https://raw.githubusercontent.com/soywod/himalaya/master/install.sh | PREFIX=~/.local sh | ||
``` | ||
|
||
*See the | ||
[wiki](https://github.com/soywod/himalaya/wiki/Installation:from-binary) for | ||
other installation methods.* | ||
*See the [wiki](https://github.com/soywod/himalaya/wiki/Installation:from-binary) for other installation methods.* | ||
|
||
## Configuration | ||
|
||
|
@@ -59,9 +50,7 @@ smtp-login = "[email protected]" | |
smtp-passwd-cmd = "security find-internet-password -gs gmail -w" | ||
``` | ||
|
||
*See the | ||
[wiki](https://github.com/soywod/himalaya/wiki/Configuration:config-file) for | ||
all the options.* | ||
*See the [wiki](https://github.com/soywod/himalaya/wiki/Configuration:config-file) for all the options.* | ||
|
||
## Features | ||
|
||
|
@@ -76,8 +65,7 @@ all the options.* | |
- JSON output | ||
- … | ||
|
||
*See the [wiki](https://github.com/soywod/himalaya/wiki/Usage:msg:list) for all | ||
the features.* | ||
*See the [wiki](https://github.com/soywod/himalaya/wiki/Usage:msg:list) for all the features.* | ||
|
||
## Sponsoring | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.