aboutsummaryrefslogtreecommitdiffstats
path: root/climl/interface.py
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-05-29 23:52:32 +0200
committerVG <vg@devys.org>2016-05-29 23:52:32 +0200
commit34251fd9b354710839b55b1120684071bb40e363 (patch)
tree06a9942f7969b0e65ede6d73319696ce1a6ea69a /climl/interface.py
parent8bfa1d1bd6d2b29c6a154858cf7a3970d0521b4a (diff)
downloadcliml-34251fd9b354710839b55b1120684071bb40e363.tar.gz
climl-34251fd9b354710839b55b1120684071bb40e363.tar.bz2
climl-34251fd9b354710839b55b1120684071bb40e363.zip
Implement basic rcpt list and send steps
Diffstat (limited to 'climl/interface.py')
-rw-r--r--climl/interface.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/climl/interface.py b/climl/interface.py
index 549eb8b..5bafa2b 100644
--- a/climl/interface.py
+++ b/climl/interface.py
@@ -13,15 +13,15 @@ class HookError(Exception):
class HookAbortError(HookError):
'''
This exception is used to indicate to core of climl it should not mark
- email \Seen for now.
+ email processed for now.
'''
pass
-class HookAbortError(HookError, StopIteration):
+class HookStopIteration(HookError, StopIteration):
'''
Run this if your hook declares it does not want other hooks to process
- email.
+ email. The email will be marked processed.
'''
pass