From 2b7c14f2b68a26cba893855cd1a142328888bb13 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Fri, 19 Jul 2024 23:49:36 +0200 Subject: Initial commit Android app works, but Android says it uses much more battery than ntfy.sh, which should never happen goimapnotify works Logo is awesome <3 There are problems with constant working, presumably after restarts. --- goimapnotify.conf | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 goimapnotify.conf (limited to 'goimapnotify.conf') diff --git a/goimapnotify.conf b/goimapnotify.conf new file mode 100644 index 0000000..2c347d0 --- /dev/null +++ b/goimapnotify.conf @@ -0,0 +1,55 @@ +[ + { + "host": "example.com", + "port": 143, + "tls": true, + "tlsOptions": { + "rejectUnauthorized": false + "starttls": true + }, + "username": "USERNAME", + "alias": "ExampleCOM", + "password": "PASSWORD", + "xoauth2": false, + "wait": 1, + "boxes": [ + { + "mailbox" : "INBOX", + "onNewMail": "mbsync examplecom:INBOX", + "onNewMailPost": "SKIP" + } + ] + }, + { + "hostCmd": "COMMAND_TO_RETRIEVE_HOST", + "port": 993, + "tls": true, + "tlsOptions": { + "rejectUnauthorized": true + "starttls": true + }, + "username": "", + "usernameCmd": "", + "password": "", + "passwordCmd": "", + "xoauth2": false, + "onNewMail": "", + "onNewMailPost": "", + "onDeletedMail": "", + "onDeletedMailPost": "", + "wait": 20, + "boxes": [ + { + "mailbox" : "INBOX", + "onNewMail": "mbsync examplenet:INBOX", + "onNewMailPost": "SKIP" + }, + { + "mailbox" : "Junk", + "onNewMail": "mbsync examplenet:Junk", + "onNewMailPost": "SKIP" + } + ] + } +] + -- cgit v1.3.1