5 .. Copyright (c) 2004-2019 mudpy authors. Permission to use, copy,
6 modify, and distribute this software is granted under terms
7 provided in the LICENSE file distributed with this software.
17 Each item in the dict identifies options for the default backing
18 file of the group named in its key. The value is itself a dict with
19 its keys and values corresponding to those options (for now, only
20 ``flags`` is implemented, with a value of ``private`` indicating it
21 should be readable only by the system user under which the mudpy
36 This is the root path beneath which all relative file references,
37 including directories comprising the search path, are assumed to be
38 found. The default value of ``.`` indicates the current working
39 directory at the time the service was initially started.
43 .mudpy.filing.prefix: .
50 Directories to search for expected data files. If not a fully
51 canonical path, this is assumed to be relative to the ``prefix``.
66 This is the default directory where new data files will be written
67 if their full paths are not specified and they aren't already found
68 in the ``search`` list. If not a fully canonical path, this is
69 assumed to be relative to the ``prefix``.
73 .mudpy.filing.stash: data
78 .mudpy.linguistic.actions
79 ~~~~~~~~~~~~~~~~~~~~~~~~~
83 This is used to tailor the appearance of output generated by the
84 ``say`` command and its relatives, so as to add some readability and
85 flavor. It matches a visible action to punctuation (ask, exclaim, et
90 .mudpy.linguistic.actions:
100 .mudpy.linguistic.default_punctuation
101 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
105 Unpunctuated statements made by actors should be assumed to
106 terminate with this value.
110 .mudpy.linguistic.default_punctuation: .
112 .mudpy.linguistic.typos
113 ~~~~~~~~~~~~~~~~~~~~~~~
117 Replacements for common typographical and capitalization errors.
121 .mudpy.linguistic.typos:
138 The first users to create accounts with names in this list will
139 automatically be given full administrative privileges.
151 This is the maximum number of avatars allowed for each account.
155 .mudpy.limit.avatars: 7
162 This is the number of backups to keep and rotate when overwriting
163 data files. If unspecified or set to 0, no backup copies will be
168 .mudpy.limit.backups: 10
170 .mudpy.limit.password_tries
171 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
175 This is the maximum number of password failures allowed during the
176 login process. Once exceeded, the user will be disconnected.
180 .mudpy.limit.password_tries: 3
190 If set, log messages will be recorded to this file.
194 .mudpy.log.file: var/mudpy.log
201 Number of log entries to keep in memory (the oldest are
202 discarded)... If unset or 0, none will be written to mudpy's
207 .mudpy.log.lines: 1000
214 If set to ``yes``, messages will be logged to the standard output of
215 the mudpy process. If unspecified, the default is ``no``.
219 .mudpy.log.stdout: true
226 If set, mudpy will send messages to the system log, and under the
227 name specified by this value (Unix derivatives only).
231 .mudpy.log.syslog: mudpy
236 .mudpy.movement.*.enter_term
237 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
241 Word or words describing the direction from where you are seen to
242 enter the next room when moving.
246 .mudpy.movement.down.enter_term: above
247 .mudpy.movement.east.enter_term: the west
248 .mudpy.movement.north.enter_term: the south
249 .mudpy.movement.south.enter_term: the north
250 .mudpy.movement.up.enter_term: below
251 .mudpy.movement.west.enter_term: the east
253 .mudpy.movement.*.exit_term
254 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
258 Word or words describing the direction where you are seen to exit
259 the current room when moving.
263 .mudpy.movement.down.exit_term: downward
264 .mudpy.movement.east.exit_term: to the east
265 .mudpy.movement.north.exit_term: to the north
266 .mudpy.movement.south.exit_term: to the south
267 .mudpy.movement.up.exit_term: upward
268 .mudpy.movement.west.exit_term: to the west
270 .mudpy.movement.*.vector
271 ~~~~~~~~~~~~~~~~~~~~~~~~
275 Vector of signed integer units for use in vector addition to derive
276 the destination coordinates from the current coordinates when moving
277 through a gridlink exit. The example coordinate system used is left
278 handed (east, north and up are positive, west, south and down are
279 negative) and three-dimensional with a tuple component order of
280 (longitude, latitude, altitude).
284 .mudpy.movement.down.vector: [0, 0, -1]
285 .mudpy.movement.east.vector: [1, 0, 0]
286 .mudpy.movement.north.vector: [0, 1, 0]
287 .mudpy.movement.south.vector: [0, -1, 0]
288 .mudpy.movement.up.vector: [0, 0, 1]
289 .mudpy.movement.west.vector: [-1, 0, 0]
299 The IP address on which to listen. If unspecified, the default is
300 all available addresses.
304 .mudpy.network.host: ::1
311 The TCP port on which to listen.
315 .mudpy.network.port: 4000
320 .mudpy.process.daemon
321 ~~~~~~~~~~~~~~~~~~~~~
325 If set to ``yes``, mudpy will immediately fork and detach a child to
326 become a daemon process, then close all open file descriptors and
327 terminate the parent process (Unix derivatives only). The default
332 .mudpy.process.daemon: true
334 .mudpy.process.pidfile
335 ~~~~~~~~~~~~~~~~~~~~~~
339 If set, this filename will contain the daemon's process ID (Unix
344 .mudpy.process.pidfile: var/mudpy.pid
349 .mudpy.timing.idle.disconnect.*
350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
354 This value indicates the number of increments allowed to pass
355 without input on a socket connection before it is terminated. This
356 avoids accumulation of dead sockets which could otherwise max out
357 allowed file descriptors. The differentiators are either ``default``
358 or a state name used to override the default value for that specific
359 state (``active``, ``entering_account_name``, et cetera).
363 .mudpy.timing.idle.disconnect.active: 6048000
364 .mudpy.timing.idle.disconnect.default: 6000
365 .mudpy.timing.idle.disconnect.entering_account_name: 600
367 .mudpy.timing.idle.warn.*
368 ~~~~~~~~~~~~~~~~~~~~~~~~~
372 This value indicates the number of increments allowed to pass
373 without input on a socket connection before it is warned that
374 termination is imminent. The differentiators are either
375 ``default`` or a state name used to override the default value
376 for that specific state. It is recommended that this be less than
377 the corresponding ``.mudpy.timing.idle.disconnect.*`` value.
381 .mudpy.timing.idle.warn.active: 5040000
382 .mudpy.timing.idle.warn.default: 5000
383 .mudpy.timing.idle.warn.entering_account_name: 500
385 .mudpy.timing.increment
386 ~~~~~~~~~~~~~~~~~~~~~~~
390 This value indicates the number of real system clock seconds (or
391 more commonly, fraction thereof) each pass through the main loop is
392 intended to take. This roughly sets the frequency with which queued
393 socket I/O operations are performed, pending events are triggered,
394 and directly impacts the speed at which virtual time passes within
399 .mudpy.timing.increment: 0.1
406 Number of increments between updates of changed persistent data
411 .mudpy.timing.save: 600
418 Number of increments to wait between logging mudpy status messages.
419 If unspecified or set to 0, no mudpy status messages will be
424 .mudpy.timing.status: 6000
429 .mudpy.user.pref_admin
430 ~~~~~~~~~~~~~~~~~~~~~~
434 This can be used to list facets an administrative user is allowed to
435 set or override on their own ``account`` element, in addition to any
436 in the `.mudpy.user.pref_allow`_ list. Note that this is merely a
437 convenience, as an administrator is already able to call the ``set``
438 command to set values for facets of any element.
442 .mudpy.user.pref_admin:
445 .mudpy.user.pref_allow
446 ~~~~~~~~~~~~~~~~~~~~~~
450 This can be used to list facets any user is allowed to set or
451 override on their own ``account`` element with the ``preference``
456 .mudpy.user.pref_allow: