imip-agent

Annotated imiptools/config.txt

1241:c0c396b10d0d
2017-06-06 Paul Boddie Removed context details from selectors, converting datetime values to enumerators only when needed to provide the necessary result resolution.
paul@124 1
# The public identity of the agent.
paul@124 2
paul@124 3
MESSAGE_SENDER = "calendar@example.com"
paul@124 4
paul@894 5
# The local message handling prefix.
paul@894 6
paul@894 7
LOCAL_PREFIX = "local"
paul@894 8
paul@128 9
# The outgoing message handling prefix.
paul@128 10
paul@128 11
OUTGOING_PREFIX = "people-outgoing"
paul@128 12
paul@1088 13
# The store (and journal) type.
paul@1088 14
paul@1088 15
STORE_TYPE = "file"
paul@1088 16
paul@68 17
# The location of the stored calendar information.
paul@68 18
paul@68 19
STORE_DIR = "/var/lib/imip-agent/store"
paul@68 20
paul@68 21
# The location of published static free/busy information.
paul@68 22
paul@68 23
PUBLISH_DIR = "/var/www/imip-agent/static"
paul@68 24
paul@147 25
# The location of user preferences information.
paul@147 26
paul@147 27
PREFERENCES_DIR = "/var/lib/imip-agent/preferences"
paul@147 28
paul@1039 29
# The location of quota-related journal information.
paul@1039 30
paul@1039 31
JOURNAL_DIR = "/var/lib/imip-agent/journal"
paul@1039 32
paul@147 33
# Permissions for files.
paul@147 34
# This is meant to ensure that both the agent and Web users can access files.
paul@147 35
paul@147 36
DEFAULT_PERMISSIONS = 0660
paul@147 37
paul@330 38
# Permissions for directories.
paul@330 39
# This is meant to ensure that the group is set for files.
paul@330 40
paul@332 41
DEFAULT_DIR_PERMISSIONS = 02770
paul@330 42
paul@1005 43
# Internationalisation and translations support.
paul@1005 44
paul@1005 45
LOCALE_DIR = "/usr/share/locale"
paul@1005 46
TRANS_DOMAIN = "imip-agent"
paul@1005 47
paul@749 48
paul@749 49
paul@668 50
# The availability of a management interface for calendar information.
paul@668 51
# True: provide links in notifications to the interface described below.
paul@668 52
# False: omit links in notifications.
paul@668 53
paul@668 54
MANAGER_INTERFACE = True
paul@668 55
paul@70 56
# The published location of the manager application.
paul@70 57
# This must match any Web site configuration details for the manager.
paul@70 58
paul@70 59
MANAGER_PATH = "/imip-manager"
paul@70 60
paul@70 61
# The full URL of the manager application excluding the above path.
paul@70 62
# If set to None, the details of this machine will be employed.
paul@70 63
paul@70 64
MANAGER_URL = None
paul@70 65
paul@986 66
# The protocol scheme used if constructing URLs.
paul@986 67
paul@986 68
MANAGER_URL_SCHEME = "http://"
paul@986 69
paul@749 70
paul@749 71
paul@749 72
# Preferences defaults applicable unless overridden by the user.
paul@749 73
# Changing these allows organisational policy to be defined while still
paul@749 74
# allowing users to choose more appropriate settings themselves.
paul@1033 75
# See: docs/wiki/Preferences
paul@749 76
paul@921 77
# Default language for messages.
paul@921 78
paul@921 79
LANG = "en"
paul@921 80
paul@749 81
# Do users participate in the calendar system by default?
paul@749 82
paul@749 83
PARTICIPATING_DEFAULT = "participate"
paul@749 84
paul@749 85
# How should incoming messages be presented to a user by default?
paul@749 86
paul@749 87
INCOMING_DEFAULT = "summary-wraps-message"
paul@749 88
paul@749 89
# Do users share free/busy information by default? This affects the bundling and
paul@749 90
# publishing settings.
paul@749 91
paul@749 92
SHARING_DEFAULT = "no"
paul@749 93
paul@749 94
# Are free/busy details published on the Web by default?
paul@749 95
paul@749 96
PUBLISHING_DEFAULT = "no"
paul@749 97
paul@749 98
# Are free/busy details bundled with other objects in messages by default?
paul@749 99
paul@749 100
BUNDLING_DEFAULT = "never"
paul@749 101
paul@749 102
# What notifications do users get about incoming free/busy messages by default?
paul@749 103
paul@749 104
NOTIFYING_DEFAULT = "none"
paul@749 105
paul@749 106
# Are REFRESH messages automatically handled by default?
paul@749 107
paul@749 108
REFRESHING_DEFAULT = "never"
paul@749 109
paul@749 110
# How are ADD messages responded to by default?
paul@749 111
paul@749 112
ADD_RESPONSE_DEFAULT = "refresh"
paul@749 113
paul@749 114
# Who can replace an organiser in an event by default?
paul@749 115
paul@749 116
ORGANISER_REPLACEMENT_DEFAULT = "attendee"
paul@749 117
paul@749 118
# How long are free/busy offers valid for by default?
paul@749 119
# (None means that no offers are maintained for counter-proposals and thus any
paul@749 120
# periods in the counter-proposal are not held in anticipation of a response.)
paul@749 121
paul@749 122
FREEBUSY_OFFER_DEFAULT = None
paul@749 123
paul@918 124
paul@918 125
paul@918 126
# Policy settings.
paul@918 127
paul@918 128
# Allow mislabelled iMIP Content-Type method parameter values for COUNTER
paul@918 129
# messages (seen in Kontact).
paul@918 130
paul@918 131
IMIP_COUNTER_AS_REQUEST = True
paul@918 132
paul@1174 133
# Calendar object maximum line length. If None, the recommended iCalendar line
paul@1174 134
# length is used (which should be 76 characters).
paul@1174 135
paul@1174 136
CALENDAR_LINE_LENGTH = None