imip-agent

Annotated imiptools/config.txt

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