AutoYADM commit: 2025-03-14 00:00:06

This commit is contained in:
Daniel Fichtinger 2025-03-14 00:00:06 -04:00
parent ceabaf96a5
commit 47064101e1
8 changed files with 47 additions and 2 deletions

View file

@ -19,9 +19,10 @@ default = INBOX
copy-to = Sent copy-to = Sent
signature-file = /home/fic/mail/fichtinger.d@queensu.ca.sig signature-file = /home/fic/mail/fichtinger.d@queensu.ca.sig
[Proton-Local] [Personal-Local]
source = notmuch://~/.mail/ source = notmuch://~/.mail/
query-map = ~/.config/aerc/map.conf maildir-store = ~/.mail/personal
query-map = ~/.config/aerc/personal-map.conf
outgoing = smtp+plain://daniel%40ficd.ca@127.0.0.1:1025 outgoing = smtp+plain://daniel%40ficd.ca@127.0.0.1:1025
outgoing-cred-cmd = pass show proton/bridge outgoing-cred-cmd = pass show proton/bridge
default = INBOX default = INBOX

View file

@ -0,0 +1 @@
Inbox=tag:inbox and not tag:archived and not tag:deleted

View file

@ -0,0 +1,5 @@
[[language]]
name = "json"
file-types = [
"conf"
]

View file

@ -0,0 +1,16 @@
host: outlook.office365.com
port: 993
tls: true,
tlsOptions:
rejectUnauthorized: true
starttls: true
username: 18daf3@queensu.ca
passwordCMD: '~/tools/mutt_oauth2.py ~/tools/tokenfile-test'
xoAuth2: true
onNewMail: '/home/fic/.config/aerc/mail-sync.sh'
wait: 20
boxes:
-
mailbox: INBOX
-
mailbox: Sent Items

View file

@ -0,0 +1,16 @@
host: 127.0.0.1
port: 1143
tls: false,
tlsOptions:
rejectUnauthorized: false
starttls: true
username: daniel@ficd.ca
passwordCMD: 'pass show proton/bridge'
xoAuth2: false
onNewMail: '/home/fic/.config/aerc/mail-sync.sh'
wait: 20
boxes:
-
mailbox: INBOX
-
mailbox: Sent

View file

@ -48,3 +48,5 @@
.config/aerc .config/aerc
.mbsyncrc .mbsyncrc
.notmuch-config .notmuch-config
.notmuch
.config/imapnotify

4
.notmuch/hooks/post-new Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
notmuch tag +school -- "is:new path:school/**"
notmuch tag +personal-- "is:new path:personal/**"