From Robert Günzler to ~sircmpwn/alpine-aports
https://tailscale.com The easiest, most secure way to use WireGuard and 2FA. --- testing/tailscale/APKBUILD | 70 ++++++++++++++++++++++++ testing/tailscale/tailscale.confd | 5 ++ testing/tailscale/tailscale.initd | 27 +++++++++ testing/tailscale/tailscale.logrotate | 6 ++ testing/tailscale/tailscale.modules-load | 1 + 5 files changed, 109 insertions(+) create mode 100644 testing/tailscale/APKBUILD create mode 100644 testing/tailscale/tailscale.confd create mode 100644 testing/tailscale/tailscale.initd create mode 100644 testing/tailscale/tailscale.logrotate create mode 100644 testing/tailscale/tailscale.modules-load [message trimmed]
From Robert Günzler to ~robertgzr/public-inbox
This is a _public_ inbox, that can be used to contact https//sr.ht/~robertgzr about any public projects, send patches or really anything.
From Robert Günzler to ~kennylevinsen/greetd
---
I'm trying to package for gentoo. Using the cargo eclass I get errors
like this:
error[E0432]: unresolved import `greetd_ipc::codec`
--> greetd/src/server.rs:17:5
|
17 | codec::{Error as CodecError, TokioCodec},
| ^^^^^ could not find `codec` in `greetd_ipc`
error[E0433]: failed to resolve: could not find `codec` in `greetd_ipc`
--> greetd/src/error.rs:42:23
|
42 | impl From<greetd_ipc::codec::Error> for Error {
[message trimmed]
From Robert Günzler to ~kennylevinsen/greetd-devel
---
I'm trying to package for gentoo. Using the cargo eclass I get errors
like this:
error[E0432]: unresolved import `greetd_ipc::codec`
--> greetd/src/server.rs:17:5
|
17 | codec::{Error as CodecError, TokioCodec},
| ^^^^^ could not find `codec` in `greetd_ipc`
error[E0433]: failed to resolve: could not find `codec` in `greetd_ipc`
--> greetd/src/error.rs:42:23
|
42 | impl From<greetd_ipc::codec::Error> for Error {
[message trimmed]
From Robert Günzler to ~sircmpwn/aerc
This patch parses the processed template for headers and populates
matching header editors.
Those are then stripped from the template body before prepending the template
and remaining header fields to the composer content.
The main motivation for this is keeping receiver, sender and subject
lines in the template file and generating the message subject from the
date.
---
> Whoops, I had to revert this. :reply -q fails with this patch, because
> it tries to interpret the message body as headers.
>
Ohno, should've tested this better myself :p
[message trimmed]
From Robert Günzler to ~sircmpwn/aerc
Parse the processed template for headers and populates matching header editors accordingly. Those are then stripped from the template body before prepending it and remaining header fields to the composer content. The motivation for this is keeping receiver, sender and subject lines in the template file and generating the message subject with the date functions. --- widgets/compose.go | 42 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/widgets/compose.go b/widgets/compose.go index 62aaafe..6e527cb 100644 [message trimmed]
From Robert Günzler to ~sircmpwn/aerc
This fixes prev/next-folder that broke after 546dfcd76dd228e0605359e9985f0b6a5672e8fa --- widgets/dirlist.go | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/widgets/dirlist.go b/widgets/dirlist.go index 944b72e..65fed9b 100644 --- a/widgets/dirlist.go +++ b/widgets/dirlist.go @@ -17,7 +17,6 @@ type DirectoryList struct { acctConf *config.AccountConfig uiConf *config.UIConfig store *lib.DirStore [message trimmed]
From Robert Günzler to ~sircmpwn/aerc
Adds an archive command that moves the current message into the folder
specified in the account config entry.
Supports three layouts at this point:
- flat: puts all messages next to each other
- year: creates a folder per year
- month: same as above, plus folders per month
This also adds a "-p" argument to "cp" and "mv" that works like
"--parents" on mkdir(1). We use this to auto-create the directories
for the archive layout.
---
ok I think I addressed pretty much all your feedback with this one.
[message trimmed]
From Robert Günzler to ~sircmpwn/aerc
Adds an archive command that moves the current message into the folder specified in the account config entry. Supports three layouts at this point: - flat: puts all messages next to each other - year: creates a folder per year - month: same as above, plus folders per month This also adds a "-p" argument to "cp" and "mv" that works like "--parents" on mkdir(1). We use this to auto-create the directories for the archive layout. --- commands/msg/archive.go | 59 ++++++++++++++++++++++++++++++++++++++++ [message trimmed]
From Robert Günzler to ~sircmpwn/aerc
Adds an archive command that moves the current message into the folder specified in the account config entry. Supports three layouts at this point: - flat: puts all messages next to each other - year: creates a folder per year - month: same as above, plus folders per month --- commands/account/archive.go | 58 +++++++++++++++++++++++++++++++++++++ config/binds.conf | 1 + config/config.go | 3 ++ 3 files changed, 62 insertions(+) create mode 100644 commands/account/archive.go [message trimmed]