paul@68 | 1 | #!/usr/bin/env python |
paul@68 | 2 | |
paul@146 | 3 | "Configuration settings for imiptools programs." |
paul@146 | 4 | |
paul@124 | 5 | # The public identity of the agent. |
paul@124 | 6 | |
paul@124 | 7 | MESSAGE_SENDER = "calendar@example.com" |
paul@124 | 8 | |
paul@128 | 9 | # The outgoing message handling prefix. |
paul@128 | 10 | |
paul@128 | 11 | OUTGOING_PREFIX = "people-outgoing" |
paul@128 | 12 | |
paul@68 | 13 | # The location of the stored calendar information. |
paul@68 | 14 | |
paul@68 | 15 | STORE_DIR = "/var/lib/imip-agent/store" |
paul@68 | 16 | |
paul@68 | 17 | # The location of published static free/busy information. |
paul@68 | 18 | |
paul@68 | 19 | PUBLISH_DIR = "/var/www/imip-agent/static" |
paul@68 | 20 | |
paul@70 | 21 | # The published location of the manager application. |
paul@70 | 22 | # This must match any Web site configuration details for the manager. |
paul@70 | 23 | |
paul@70 | 24 | MANAGER_PATH = "/imip-manager" |
paul@70 | 25 | |
paul@70 | 26 | # The full URL of the manager application excluding the above path. |
paul@70 | 27 | # If set to None, the details of this machine will be employed. |
paul@70 | 28 | |
paul@70 | 29 | MANAGER_URL = None |
paul@70 | 30 | |
paul@68 | 31 | # vim: tabstop=4 expandtab shiftwidth=4 |