Commit graph

635 commits

Author SHA1 Message Date
Perma Alesheikh 5a0ff83a5e
replace anyhow and log with color_eyre and tracing
Since Himalaya is intended to be ran as a CLI in the terminal emulator
environment, their user experience could vastly improve with better and
more colorful error messages and logging.

This change will replace more minimal libraries for error-reporting/han-
dling with their more advanced counterparts.

Since these crates have tight integrations, this commit will change both
in one shot.

Also we have don't need env_logger any more. So I also have removed that
guy as well.

Signed-off-by: Perma Alesheikh <me@prma.dev>
2024-04-15 12:17:56 +02:00
Clément DOUIN cc79f5cc38
fix wrong deps 2024-04-14 16:03:04 +02:00
Clément DOUIN 58df66b5fa
update deps 2024-04-07 11:47:09 +02:00
Clément DOUIN d95f277bab
adjust code for pimalaya new errors + sync hash 2024-04-05 11:05:55 +02:00
Clément DOUIN ee9718a482
add message.delete.style config option 2024-03-23 17:07:41 +01:00
Clément DOUIN a5ef14da9f
bump deps 2024-03-21 14:45:39 +01:00
Clément DOUIN 2cf30e2fda
fix template cursor row issue 2024-03-21 14:27:09 +01:00
Clément DOUIN 799ee8b25b
use new template cursor api 2024-03-21 13:57:26 +01:00
Clément DOUIN 1c23adc8a2
fix unit tests 2024-03-16 22:31:32 +01:00
Clément DOUIN 7ee710634b
bump deps, make global config option repeatable 2024-03-16 22:20:19 +01:00
Clément DOUIN 3868c62511
prevent unknown fields at top config level 2024-03-12 11:57:37 +01:00
Clément DOUIN 362a5ca647
add missing envelope property to 2024-03-10 11:40:37 +01:00
Clément DOUIN 2566d45a96
fix typos in changelog and readme 2024-03-10 11:06:50 +01:00
Clément DOUIN 3b53bcc529
add note about envelopes filtering and sorting in readme 2024-03-10 10:40:45 +01:00
Clément DOUIN c56a5f285b
bump email-lib, update changelog 2024-03-10 10:37:50 +01:00
Clément DOUIN c1ffc40bd3
add list envelopes query cli doc 2024-03-10 10:01:01 +01:00
Jalil David Salamé Messina ed5407a5c7
remove flake-utils from the flake inputs
As requested in <https://todo.sr.ht/~soywod/pimalaya/131> I removed
flake-utils. This reduces the number of flake inputs and doesn't add
much code.

The way this works, is that instead of `eachDefaultSystem` we have a
function `forEachSupportedSystem`, this function generates an attrset
with a key for each system in the `supportedSystems` array, whose value
is the result of calling the provided function with the system as an
argument:

```nix repl
repl> forEachSupportedSystem f
{
  "x86_64-linux" = f "x86_64-linux";
  ...
}
```

This is slightly clumsier than `flake-utils.lib.eachDefaultSystem`,
which rewrites the returned attrset, but it is much less code and
simpler to understand.

I tested the build with `nix build` on `x86_64-linux` and it still works
c:
2024-03-09 13:54:37 +01:00
Jalil David Salamé Messina da49352d4e
add himalaya-watch@.service
As discussed in
<https://github.com/nix-community/home-manager/issues/5069>.

I set `ExecStart=%install_dir%/himalaya` so when packaging himalaya
people nee to explicitly set the path to himalaya (i.e. `sed
's:%install_dir%:/usr/bin:' assets/himalaya-watch@.service`). This is
done automatically in `install.sh` if `$PREFIX` is `/usr`, Otherwise
the packager should handle it themselves

For `nix` it would be (`sed 's:%install_dir%:$out/bin:'
assets/himalaya-watch@.service`). I don't know where it should be placed
(probably `$out/share/systemd/user` as nix will add that to
`$XDG_DATA_DIRS` which is searched by `systemctl --user`.

I swear I checked the address like 4 times before sending the email, I
have no idea how I managed to mess it up T-T. I was wondering why the
formatting was so messed up in sr.ht.
2024-03-09 13:49:44 +01:00
Jalil David Salamé Messina 8867c99b91
fix(CONTRIBUTING): Patches are requested to the wrong email
I only updated the mailto link in the [last
patch](https://lists.sr.ht/~soywod/pimalaya/patches/50059). This also
updates the text.
2024-03-09 11:08:29 +01:00
Clément DOUIN a8e6dea162
bump email-lib 2024-03-09 11:06:05 +01:00
Clément DOUIN 46bf3eebfc
improve envelope list query error diagnostics 2024-02-29 10:21:01 +01:00
Clément DOUIN 1e7adc5e0c
add query arg to envelope list command 2024-02-28 09:09:03 +01:00
Clément DOUIN c28b4c6bb3
fix missing maildir deps for account-sync feature 2024-02-25 14:26:23 +01:00
Clément DOUIN 1f6f2fcc11
update changelog 2024-02-25 11:04:37 +01:00
Clément DOUIN 8e8040e036
bump email-lib@0.22.3 2024-02-25 10:44:58 +01:00
Clément DOUIN 1699a581ce
update flake and cargo 2024-02-25 09:07:40 +01:00
Clément DOUIN 04982a4644
fix cargo features issues 2024-02-24 14:27:05 +01:00
Clément DOUIN 556949a684
bump email lib 2024-02-24 11:23:26 +01:00
Clément DOUIN e945c4b8e2
replace sqlite by sled for id mapping storing 2024-02-24 09:37:55 +01:00
Clément DOUIN 0e35a0cd64
add account check-up command 2024-02-24 07:55:37 +01:00
Clément DOUIN 79da9404f3
fix smtp discovery wrong config 2024-02-23 08:46:21 +01:00
Clément DOUIN 5cb247169a
fix unit tests 2024-02-23 08:25:15 +01:00
Clément DOUIN faeda95978
fix flatten account config sample 2024-02-21 22:54:59 +01:00
Clément DOUIN 123224963d
adjust changelog 2024-02-21 22:51:09 +01:00
Clément DOUIN 1907817392
fix envelope issues preventing sync to work properly 2024-02-21 22:16:06 +01:00
Clément DOUIN 3e0cf0cfda
refactor backend system, remove accouts flattening 2024-02-21 11:38:50 +01:00
Clément DOUIN 76ab833a62
fix broken link readme#features 2024-02-09 07:10:39 +01:00
Clément DOUIN 8741508413
removed github issue template
GitHub Issues have been definitely closed, so the template does not
make sense anymore.
2024-02-04 21:03:16 +01:00
Clément DOUIN dd7e1a02be
improve pre and post edit choices interaction 2024-02-04 12:13:14 +01:00
Clément DOUIN 35c1453863
added wizard warning about google passwords 2024-02-04 11:36:11 +01:00
Clément DOUIN a945e1bf2f
make watch hooks cumulative 2024-02-03 22:30:15 +01:00
Clément DOUIN 83306d5f6a
fix pgp unit test 2024-01-28 08:42:18 +01:00
Clément DOUIN e5cf39b351
release v1.0.0-beta.2 2024-01-27 22:49:29 +01:00
Clément DOUIN 34a0978588
fix dead links and config sample 2024-01-27 22:47:06 +01:00
Clément DOUIN 7cdfecd7dd
fix changelog and contributing guide typos 2024-01-27 11:28:26 +01:00
Clément DOUIN b1cc03d2c7
fix readme typo (part 2) 2024-01-27 11:24:23 +01:00
Clément DOUIN 72c3e55bba
fix readme typo 2024-01-27 11:21:59 +01:00
Clément DOUIN 4f9705952a
refactor new backend api 2024-01-27 11:15:03 +01:00
Clément DOUIN 16266dbc0b
fix message save and send prevented due to clap help 2024-01-22 12:03:33 +01:00
Clément DOUIN 39d2dec9e8
fix readme typo 2024-01-22 10:42:26 +01:00