aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/goimapnotify/.config/imapnotify
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2023-10-12 15:21:22 -0500
committerToby Vincent <tobyv@tobyvin.dev>2023-10-12 15:21:22 -0500
commit38b8fd29a6ce554f666db5a47517d1a5308136ca (patch)
treed3e68192ffffa7af421dddcb8cac2661c860390b /goimapnotify/.config/imapnotify
parent40468910b8a726b4b3329ce19a1863037357a02d (diff)
feat(mail): improved services and install scripts
Diffstat (limited to 'goimapnotify/.config/imapnotify')
-rw-r--r--goimapnotify/.config/imapnotify/gmail.conf15
-rw-r--r--goimapnotify/.config/imapnotify/porkbun.conf14
2 files changed, 29 insertions, 0 deletions
diff --git a/goimapnotify/.config/imapnotify/gmail.conf b/goimapnotify/.config/imapnotify/gmail.conf
new file mode 100644
index 0000000..ae39a8c
--- /dev/null
+++ b/goimapnotify/.config/imapnotify/gmail.conf
@@ -0,0 +1,15 @@
+{
+ "host": "imap.gmail.com",
+ "port": 993,
+ "tls": true,
+ "tlsOptions": {
+ "rejectUnauthorized": false
+ },
+ "username": "tobyv13@gmail.com",
+ "passwordCmd": "pass gmail | head -n1",
+ "onNewMail": "mbsync -c $XDG_CONFIG_HOME/mbsync/mbsyncrc gmail",
+ "onNewMailPost": "",
+ "boxes": [
+ "INBOX"
+ ]
+}
diff --git a/goimapnotify/.config/imapnotify/porkbun.conf b/goimapnotify/.config/imapnotify/porkbun.conf
new file mode 100644
index 0000000..60b71f9
--- /dev/null
+++ b/goimapnotify/.config/imapnotify/porkbun.conf
@@ -0,0 +1,14 @@
+{
+ "host": "imap.porkbun.com",
+ "port": 993,
+ "tls": true,
+ "tlsOptions": {
+ "rejectUnauthorized": false
+ },
+ "username": "tobyv@tobyvin.dev",
+ "passwordCmd": "pass tobyv@tobyvin.dev | head -n1",
+ "onNewMail": "mbsync -c $XDG_CONFIG_HOME/mbsync/mbsyncrc porkbun",
+ "boxes": [
+ "INBOX"
+ ]
+}