imip-agent

imiptools/config.py

128:d52e08731368
2014-12-10 Paul Boddie Changed manager-originating messages to use the agent identity, sending a Bcc to the outgoing agent instead of using the "sender Bcc" mechanism. This should work much better with any agent identity signing operations.
     1 #!/usr/bin/env python     2      3 # The public identity of the agent.     4      5 MESSAGE_SENDER = "calendar@example.com"     6      7 # The outgoing message handling prefix.     8      9 OUTGOING_PREFIX = "people-outgoing"    10     11 # The location of the stored calendar information.    12     13 STORE_DIR = "/var/lib/imip-agent/store"    14     15 # The location of published static free/busy information.    16     17 PUBLISH_DIR = "/var/www/imip-agent/static"    18     19 # The published location of the manager application.    20 # This must match any Web site configuration details for the manager.    21     22 MANAGER_PATH = "/imip-manager"    23     24 # The full URL of the manager application excluding the above path.    25 # If set to None, the details of this machine will be employed.    26     27 MANAGER_URL = None    28     29 # vim: tabstop=4 expandtab shiftwidth=4