2016-01-31 | Paul Boddie | file changeset files shortlog | Introduced the access control list scheduling function plus argument support. Moved scheduling function lookup into the scheduling module as part of the revised function invocation parsing activity, employing a new text processing module in imiptools. Added tests of the access control list functionality. |
paul@96 | 1 | #!/usr/bin/env python |
paul@96 | 2 | |
paul@96 | 3 | from imiptools import Processor |
paul@96 | 4 | from imiptools.handlers import person_outgoing |
paul@96 | 5 | from imiptools.mail import Messenger |
paul@96 | 6 | |
paul@822 | 7 | Processor(person_outgoing.handlers, outgoing_only=True)() |
paul@96 | 8 | |
paul@96 | 9 | # vim: tabstop=4 expandtab shiftwidth=4 |