From 73060f91c23ab1e6a7485bdc94ce792211b2d7d1 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Sat, 8 Aug 2015 15:19:12 -0400 Subject: [PATCH] Add generic config --- examples/data/config/TextCDC.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 examples/data/config/TextCDC.json diff --git a/examples/data/config/TextCDC.json b/examples/data/config/TextCDC.json new file mode 100644 index 0000000..1fcd682 --- /dev/null +++ b/examples/data/config/TextCDC.json @@ -0,0 +1,24 @@ +{ + "email-addr":"5555555555@carrier.com.com", + "output-channels":["#yourchannel"], + "interval": 30, + "account": { + "auth": { + "username": "example@gmail.com", + "password": "Password" + }, + + "imap": { + "host": "imap.gmail.com", + "ssl": true, + "port": 993 + }, + + "smtp": { + "host": "smtp.gmail.com", + "ssl": true, + "authentication": true, + "port": 465 + } + } +}