# HG changeset patch # User Paul Boddie # Date 1418229300 -3600 # Node ID 391f000ce9e67e969ce8c9c7cb06fbb7eba0828a # Parent f5f6a5cf6375cd066c1840a88abc9d1ffd1c372d Simplified script configurations. diff -r f5f6a5cf6375 -r 391f000ce9e6 imip_person.py --- a/imip_person.py Wed Dec 10 17:33:24 2014 +0100 +++ b/imip_person.py Wed Dec 10 17:35:00 2014 +0100 @@ -4,13 +4,6 @@ from imiptools.handlers import person from imiptools.mail import Messenger -Processor( - person.handlers, - Messenger( - "imip-agent@example.com", - "Calendar system message", - "This is a message from the calendar system." - ) - )() +Processor(person.handlers)() # vim: tabstop=4 expandtab shiftwidth=4 diff -r f5f6a5cf6375 -r 391f000ce9e6 imip_person_outgoing.py --- a/imip_person_outgoing.py Wed Dec 10 17:33:24 2014 +0100 +++ b/imip_person_outgoing.py Wed Dec 10 17:35:00 2014 +0100 @@ -4,13 +4,6 @@ from imiptools.handlers import person_outgoing from imiptools.mail import Messenger -Processor( - person_outgoing.handlers, - Messenger( - "imip-agent@example.com", - "Calendar system message", - "This is a message from the calendar system." - ) - )() +Processor(person_outgoing.handlers)() # vim: tabstop=4 expandtab shiftwidth=4