imip-agent

Change of imip_person_outgoing.py

96:0eba4667b645
imip_person_outgoing.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/imip_person_outgoing.py	Thu Oct 30 19:08:19 2014 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +from imiptools import Processor
     1.7 +from imiptools.handlers import person_outgoing
     1.8 +from imiptools.mail import Messenger
     1.9 +
    1.10 +Processor(
    1.11 +    person_outgoing.handlers,
    1.12 +    Messenger(
    1.13 +        "imip-agent@example.com",
    1.14 +        "Calendar system message",
    1.15 +        "This is a message from the calendar system."
    1.16 +        )
    1.17 +    )()
    1.18 +
    1.19 +# vim: tabstop=4 expandtab shiftwidth=4