From 04a1e46ee1dfe1787b62e4402048ce75f08df1e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Battistella=20Nadas?= Date: Tue, 3 May 2022 09:10:16 +0200 Subject: [PATCH 1/5] added domain for freedom.nl --- share/domains.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/share/domains.csv b/share/domains.csv index adbe06d..aedb0d6 100644 --- a/share/domains.csv +++ b/share/domains.csv @@ -107,6 +107,7 @@ fct.unl.pt,imap.gmail.com,993,smtp.gmail.com,587 firemail.cc,mail.cock.li,993,mail.cock.li,587 forpsi.com,imap.forpsi.com,993,smtp.forpsi.com,465 forthnet.gr,mail.forthnet.gr,993,smtp-auth.forthnet.gr,465 +freedom.nl,imap.freedom.nl,993,smtp.freedom.nl,465 freedom.xyz,imap.nixnet.email,143,smtp.nixnet.email,587 fsmpi.rwth-aachen.de,mail.fsmpi.rwth-aachen.de,993,mail.fsmpi.rwth-aachen.de,465 fsu-jena,exchange.uni-jena.de,993,smtp.uni-jena.de,587 From e1d47ea4830a41220e0a9754ad61bd71bcd81d51 Mon Sep 17 00:00:00 2001 From: rl Date: Fri, 13 May 2022 17:40:35 +0300 Subject: [PATCH 2/5] added encryption shortcut in neomutt interface description --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7626e4d..479870f 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,7 @@ To give you an example of the interface, here's an idea: - `?` - see all keyboard shortcuts - `ctrl-j`/`ctrl-k` - move up and down in sidebar, `ctrl-o` opens mailbox. - `ctrl-b` - open a menu to select a URL you want to open in your browser. +- `p` - before sending mail choose to encrypt/sign your message ## Additional functionality From 162441dde07cf9c811085f3dbb7fee2ce4fa3522 Mon Sep 17 00:00:00 2001 From: rickylinden <59360547+rickylinden@users.noreply.github.com> Date: Fri, 13 May 2022 17:45:43 +0300 Subject: [PATCH 3/5] Update README.md Clearer description of encryption shortcut. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 479870f..b634fc7 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ To give you an example of the interface, here's an idea: - `?` - see all keyboard shortcuts - `ctrl-j`/`ctrl-k` - move up and down in sidebar, `ctrl-o` opens mailbox. - `ctrl-b` - open a menu to select a URL you want to open in your browser. -- `p` - before sending mail choose to encrypt/sign your message +- `p` - encrypt/sign your message (in compose view, before sending the email). ## Additional functionality From 7c4f552cfb566d2244239e616b1c0afb79db8fc0 Mon Sep 17 00:00:00 2001 From: Gil Oliveira Date: Sun, 22 May 2022 19:37:36 +0100 Subject: [PATCH 4/5] Add purelymail.com to domains.csv --- share/domains.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/share/domains.csv b/share/domains.csv index adbe06d..bba5bf9 100644 --- a/share/domains.csv +++ b/share/domains.csv @@ -228,6 +228,7 @@ privacyrequired.com,mail.autistici.org,993,smtp.autistici.org,465 prokonto.pl,poczta.o2.pl,993,poczta.o2.pl,465 protonmail.ch,127.0.0.1,1143,127.0.0.1,1025 protonmail.com,127.0.0.1,1143,127.0.0.1,1025 +purelymail.com,imap.purelymail.com,993,smtp.purelymail.com,465 pwned.life,imap.nixnet.email,143,smtp.nixnet.email,587 qq.com,imap.qq.com,993,smtp.qq.com,587 rape.lol,mail.cock.li,993,mail.cock.li,587 From f2014408b984c7e5814d1021cab55624cbed7ae6 Mon Sep 17 00:00:00 2001 From: Kr1ss Date: Tue, 31 May 2022 18:19:40 +0200 Subject: [PATCH 5/5] fix notifications when the Xorg process is just X To close #845 : I added the `-x` flag to prevent the regex from matching on _every_ pro- cess name containing an `X`. Because I'm not entirely sure about portability (does every `pgrep` va- riant support that flag), I didn't push this directly. So what do you think @LukeSmithxyz ? --- bin/mailsync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mailsync b/bin/mailsync index 97cd224..2f32c14 100755 --- a/bin/mailsync +++ b/bin/mailsync @@ -42,7 +42,7 @@ case "$(uname)" in *systemd*|*openrc*) export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus ;; esac # remember if a display server is running since `ps` doesn't always contain a display - pgrepoutput="$(pgrep -a X\(org\|wayland\))" + pgrepoutput="$(pgrep -ax X\(\|org\|wayland\))" displays="$(echo "$pgrepoutput" | grep -wo "[0-9]*:[0-9]\+" | sort -u)" notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-0:}; do export DISPLAY=$x