From edfe5ee48d75c6c53342df1bea53a960f21527b1 Mon Sep 17 00:00:00 2001 From: vosjedev Date: Sun, 12 Oct 2025 21:24:16 +0200 Subject: Start IMAP plugin, fix indent being cursed when using normal tabsize --- src/acit/__init__.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/acit/__init__.py') diff --git a/src/acit/__init__.py b/src/acit/__init__.py index 7149003..05dc260 100644 --- a/src/acit/__init__.py +++ b/src/acit/__init__.py @@ -1,13 +1,19 @@ import cherrypy +from cherrypy.process import wspbus from .web import Server +from .imapplugin import ImapPlugin def run(): server=Server() + imap=ImapPlugin( + cherrypy.engine + ) + imap.subscribe() cherrypy.quickstart(server,"/", - { - }) + { + }) -- cgit