~ser

Minnesota, USA

https://www.ser1.net

~ser/ddt-discuss

Last active 10 months ago

~ser/kanto-devel

Last active 10 months ago

~ser/kanto-announce

Last active 10 months ago

~ser/legume

Last active 11 months ago

~ser/claptrap

Last active 11 months ago

~ser/public-inbox

Last active 11 months ago
View more

Recent activity

Re: Resend / recompose? 9 months ago

From Sean E. Russell to ~rjarry/aerc-discuss

On Sun Dec 4, 2022 at 10:50 AM CST, inwit wrote:
> On Sun Dec 4, 2022 at 4:29 PM CET, Sean E. Russell wrote:
> > How do you resend a sent email, or edit a draft?
> You use the command :recall, with -f if the email is not in the draft folder.

That does it, thanks!

--- SER   
Sean E. Russell    
Age: age195vpft7nzsy83medxagqqsge0lrcuf9txe3z2znlu2wsk69cdu4sx8nfvp    
GPG key: https://ser1.net/.well-known/pgp.asc    
Matrix: @ser:matrix.org

Resend / recompose? 9 months ago

From Sean E. Russell to ~rjarry/aerc-discuss

Hi,

How do you resend a sent email, or edit a draft?

I'm sorry for such a basic question, but I've failed to find any answer in the man pages or aerc-discuss.

--- SER   
Sean E. Russell    
Age: age195vpft7nzsy83medxagqqsge0lrcuf9txe3z2znlu2wsk69cdu4sx8nfvp    
GPG key: https://ser1.net/.well-known/pgp.asc    
Matrix: @ser:matrix.org

Re: Flair marked messages 11 months ago

From Sean E. Russell to ~rjarry/aerc-discuss

On Mon Oct 17, 2022 at 3:00 PM CDT, Robin Jarry wrote:
> Sean E. Russell, Oct 17, 2022 at 16:45:
> > Is there a configuration option to have aerc flair marked messages?
> > Showing a "+", or some font change... something that lets the user see
> > which messages have been marked in the message list?
...
> The marked messages should have a '*' in the message flags %Z. Here is
> an example:

Thank you, that was it: I was missing the %Z.

--- SER   
Sean E. Russell    
Age: age195vpft7nzsy83medxagqqsge0lrcuf9txe3z2znlu2wsk69cdu4sx8nfvp

Flair marked messages 11 months ago

From Sean E. Russell to ~rjarry/aerc-discuss

Hi,

Is there a configuration option to have aerc flair marked messages? Showing a
"+", or some font change... something that lets the user see which messages have
been marked in the message list?

It may be that I can't find a discussion about this in the lists because I've
inadvertently disabled it, so if marked messages *should* be annotated in the
list, please let me know. I also found no matches for "mark" in the default
styleset (I've been searching for the keyword "mark" because of the commands).

Thank you,

--- SER

Fwd: Re: ~psic4t/qcard#1: Patches available in a fork 11 months ago

From Sean E. Russell to ~psic4t/public-inbox

Hi!

I've been grabbing the email address from the bottom of the readme, which is the
todo list; of course, the emails have been eaten by the mail server because
general discussions should be going to the mailing list, not the todo list.

Consequently, I'm forwarding some emails I sent to the wrong address.

Forwarded message from Sean E. Russell on Tue Oct 11, 2022 at 3:02 PM:
On Tue Oct 11, 2022 at 12:00 PM CDT, Matthias Debus wrote:
> qcal and qcard are my first Go projects, so some refactoring from a more
> skilled person than me is more than welcome. :)

Yeah, I just saw qcal in your list; I'll be looking at that, too.

Re: [PATCH] wiki: adds some instructions for printing emails 11 months ago

From Sean E. Russell to ~rjarry/aerc-devel

On Tue Oct 11, 2022 at 1:21 PM CDT, Moritz Poldrack wrote:
> Just curious: is there an advantage over :pipe lpr?

This will just dump raw text to my printer. email2pdf does some header
formatting, and it handles attachments intelligently. It prevents getting a ream
of base64 encoded pages because of a zip attachment. It handles image
attachments, and if the email has an HTML part -- or if the email is *only* an
HTML part, because it came from Outlook, email2pdf will print that nicely and
not as raw html.

Those are advantages, for me.

--- SER   
Sean E. Russell

Re: [PATCH] Adds support for local ICS directories 11 months ago

From Sean E. Russell to ~psic4t/public-inbox

Sorry about sending patches to the mailing list. I got a rejection from the todo
list saying 16k was too big a patch, so I assumed I sent it to the wrong place.

> <~psic4t/qcard@todo.sr.ht>: host todo.sr.ht[173.195.146.145] said: 550 Ticket
>    body must be less than 16 KiB in size (in reply to end of DATA command)

I don't know what that's about.

--- SER   
Sean E. Russell    
Age: age195vpft7nzsy83medxagqqsge0lrcuf9txe3z2znlu2wsk69cdu4sx8nfvp    
Minisign: https://ser1.net/.well-known/minisign.pub    
GPG key: https://ser1.net/.well-known/pgp.asc    
Matrix: @ser:matrix.org

[PATCH] Refactoring 11 months ago

From Sean E. Russell to ~psic4t/public-inbox

Removes a lot of dead code; localizes variables that didn't need to be global;
consistent variable names; remove redundant naming (e.g. type thingStruct
struct); generalizes some functions; and general clean-ups.

---
 README.md       |  20 ++++---
 caldavserver.go | 135 +++++++++++++++++++++---------------------------
 defines.go      |  51 +++++++-----------
 directory.go    |  85 +++++++++++-------------------
 go.mod          |   2 +-
 helpers.go      |  64 +++++++++++------------
 main.go         | 117 ++++++++++++++++++++++++++---------------
 parse.go        |   6 +--
 8 files changed, 232 insertions(+), 248 deletions(-)
[message trimmed]

[PATCH] Adds support for local ICS directories 11 months ago

From Sean E. Russell to ~psic4t/public-inbox

---
 README.md          |   8 +-
 caldavserver.go    | 202 +++++++++++++++++++++++++++++
 config-sample.json |   5 +-
 defines.go         |  25 ++--
 directory.go       | 131 +++++++++++++++++++
 helpers.go         | 308 +++++++++++++++++---------------------------
 main.go            | 310 +++++++++++++++------------------------------
 parse.go           | 114 ++++++-----------
 vcard.templ        |  21 +++
 9 files changed, 636 insertions(+), 488 deletions(-)
 create mode 100644 caldavserver.go
 create mode 100644 directory.go
 create mode 100644 vcard.templ
[message trimmed]

[PATCH] wiki: adds some instructions for printing emails 11 months ago

From Sean E. Russell to ~rjarry/aerc-devel

---
 integrations/index.md    |  1 +
 integrations/printing.md | 73 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)
 create mode 100644 integrations/printing.md

diff --git a/integrations/index.md b/integrations/index.md
index 0e200c2..40ae800 100644
--- a/integrations/index.md
+++ b/integrations/index.md
@@ -7,3 +7,4 @@ title: "aerc-wiki: Integrations"
- [password-manager](integrations/password-manager.md)
- [pgp](integrations/pgp.md)
- [sourcehut](integrations/sourcehut.md)
[message trimmed]