From cd855f5c4c2f2435cba6d3fca8fdfdf2b0c60da0 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Fri, 28 Aug 2015 03:39:14 +0200 Subject: [PATCH] Rewrite of channel api. --- contrib/auto_wizard_example.json | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/contrib/auto_wizard_example.json b/contrib/auto_wizard_example.json index 3dbd73e59..80d81379c 100644 --- a/contrib/auto_wizard_example.json +++ b/contrib/auto_wizard_example.json @@ -45,14 +45,21 @@ ], "Channels": [ { - "area": "Email::Inbound", - "adapter": "IMAP", + "area": "Email::Account", "group_id": 1, "options": { - "host": "mx1.example.com", - "user": "some user", - "password": "some pw", - "ssl": true + "inbound": { + "adapter": "imap", + "options": { + "host": "mx1.example.com", + "user": "some user", + "password": "some pw", + "ssl": true + } + }, + "outbound": { + "adapter": "sendmail" + } }, "active":false }