aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/goimapnotify/.config/imapnotify
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-05-15 20:03:30 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-05-15 20:16:37 -0500
commit5bf571df14cd2ed7cf6ca6ecadc26da53d61af06 (patch)
tree47942cf31b8fb04a35eb7cb6406117f94a5f2b77 /goimapnotify/.config/imapnotify
parent69e420c803099db126fffd3ca4bac5e396da4e1d (diff)
feat(mail): move all mail stuff inside notmuch hooks
Diffstat (limited to 'goimapnotify/.config/imapnotify')
-rw-r--r--goimapnotify/.config/imapnotify/gmail.conf19
-rw-r--r--goimapnotify/.config/imapnotify/porkbun.conf19
2 files changed, 0 insertions, 38 deletions
diff --git a/goimapnotify/.config/imapnotify/gmail.conf b/goimapnotify/.config/imapnotify/gmail.conf
deleted file mode 100644
index 36a9cf5..0000000
--- a/goimapnotify/.config/imapnotify/gmail.conf
+++ /dev/null
@@ -1,19 +0,0 @@
-[
- {
- "host": "imap.gmail.com",
- "port": 993,
- "tls": true,
- "tlsOptions": {
- "reject_unauthorized": false
- },
- "username": "tobyv13@gmail.com",
- "passwordCmd": "pass gmail | head -n1",
- "boxes": [
- {
- "mailbox": "INBOX",
- "onNewMail": "mbsync -c $XDG_CONFIG_HOME/mbsync/mbsyncrc gmail:INBOX",
- "onNewMailPost": "notmuch new"
- }
- ]
- }
-]
diff --git a/goimapnotify/.config/imapnotify/porkbun.conf b/goimapnotify/.config/imapnotify/porkbun.conf
deleted file mode 100644
index ef34d93..0000000
--- a/goimapnotify/.config/imapnotify/porkbun.conf
+++ /dev/null
@@ -1,19 +0,0 @@
-[
- {
- "host": "imap.porkbun.com",
- "port": 993,
- "tls": true,
- "tlsOptions": {
- "reject_unauthorized": false
- },
- "username": "tobyv@tobyvin.dev",
- "passwordCmd": "pass tobyv@tobyvin.dev | head -n1",
- "boxes": [
- {
- "mailbox": "INBOX",
- "onNewMail": "mbsync -c $XDG_CONFIG_HOME/mbsync/mbsyncrc porkbun:INBOX",
- "onNewMailPost": "notmuch new"
- }
- ]
- }
-]