diff options
Diffstat (limited to '')
-rw-r--r--[-rwxr-xr-x] | bin/OpenSim.ini.example | 56 |
1 files changed, 47 insertions, 9 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 50366a6..c07e1ab 100755..100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -241,6 +241,36 @@ | |||
241 | ;; server to send mail through. | 241 | ;; server to send mail through. |
242 | ; emailmodule = DefaultEmailModule | 242 | ; emailmodule = DefaultEmailModule |
243 | 243 | ||
244 | ;# {SpawnPointRouting} {} {Set routing method for Telehub Spawnpoints} {closest random sequence} closest | ||
245 | ;; SpawnPointRouting adjusts the landing for incoming avatars. | ||
246 | ;; "closest" will place the avatar at the SpawnPoint located in the closest | ||
247 | ;; available spot to the destination (typically map click/landmark). | ||
248 | ;; "random" will place the avatar on a randomly selected spawnpoint; | ||
249 | ;; "sequence" will place the avatar on the next sequential SpawnPoint | ||
250 | ; SpawnPointRouting = closest | ||
251 | |||
252 | ;# {TelehubAllowLandmark} {} {Allow users with landmarks to override telehub routing} {true false} false | ||
253 | ;; TelehubAllowLandmark allows users with landmarks to override telehub routing and land at the landmark coordinates when set to true | ||
254 | ;; default is false | ||
255 | ; TelehubAllowLandmark = false | ||
256 | |||
257 | ;# Comma separated list of viewers which may gain access to the regions. | ||
258 | ;; One can use a Substring of the viewer name to enable only certain subversions | ||
259 | ;; Example: Agent uses the viewer "Imprudence 1.3.2.0" | ||
260 | ;; - "Imprudence" has access | ||
261 | ;; - "Imprudence 1.3" has access | ||
262 | ;; - "Imprudence 1.3.1" has no access | ||
263 | ;; AllowedViewerList = | ||
264 | |||
265 | ;# Comma separated list of viewers which may not gain access to the regions. | ||
266 | ;; One can use a Substring of the viewer name to disable only certain subversions | ||
267 | ;; Example: Agent uses the viewer "Imprudence 1.3.2.0" | ||
268 | ;; - "Imprudence" has no access | ||
269 | ;; - "Imprudence 1.3" has no access | ||
270 | ;; - "Imprudence 1.3.1" has access | ||
271 | ; BannedViewerList = | ||
272 | |||
273 | |||
244 | [Estates] | 274 | [Estates] |
245 | ; If these values are commented out then the user will be asked for estate details when required (this is the normal case). | 275 | ; If these values are commented out then the user will be asked for estate details when required (this is the normal case). |
246 | ; If these values are uncommented then they will be used to create a default estate as necessary. | 276 | ; If these values are uncommented then they will be used to create a default estate as necessary. |
@@ -273,6 +303,12 @@ | |||
273 | ;# {host_domain_header_from} {[Startup]emailmodule:DefaultEmailModule enabled:true} {From address to use in the sent email header?} {} 127.0.0.1 | 303 | ;# {host_domain_header_from} {[Startup]emailmodule:DefaultEmailModule enabled:true} {From address to use in the sent email header?} {} 127.0.0.1 |
274 | ; host_domain_header_from = "127.0.0.1" | 304 | ; host_domain_header_from = "127.0.0.1" |
275 | 305 | ||
306 | ;# {email_pause_time} {[Startup]emailmodule:DefaultEmailModule enabled:true} {Period in seconds to delay after an email is sent.} {} 20 | ||
307 | ; email_pause_time = 20 | ||
308 | |||
309 | ;# {email_max_size} {[Startup]emailmodule:DefaultEmailModule enabled:true} {Maximum total size of email in bytes.} {} 4096 | ||
310 | ; email_max_size = 4096 | ||
311 | |||
276 | ;# {SMTP_SERVER_HOSTNAME} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server name?} {} 127.0.0.1 | 312 | ;# {SMTP_SERVER_HOSTNAME} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server name?} {} 127.0.0.1 |
277 | ; SMTP_SERVER_HOSTNAME = "127.0.0.1" | 313 | ; SMTP_SERVER_HOSTNAME = "127.0.0.1" |
278 | 314 | ||
@@ -285,7 +321,6 @@ | |||
285 | ;# {SMTP_SERVER_PASSWORD} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server password} {} | 321 | ;# {SMTP_SERVER_PASSWORD} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server password} {} |
286 | ; SMTP_SERVER_PASSWORD = "" | 322 | ; SMTP_SERVER_PASSWORD = "" |
287 | 323 | ||
288 | |||
289 | [Network] | 324 | [Network] |
290 | ;; Configure the remote console user here. This will not actually be used | 325 | ;; Configure the remote console user here. This will not actually be used |
291 | ;; unless you use -console=rest at startup. | 326 | ;; unless you use -console=rest at startup. |
@@ -638,8 +673,11 @@ | |||
638 | ; AllowLightShareFunctions = false | 673 | ; AllowLightShareFunctions = false |
639 | 674 | ||
640 | ;# {OSFunctionThreatLevel} {Enabled:true AllowOSFunctions:true} {OSFunction threat level? (DANGEROUS!)} {None VeryLow Low Moderate High VeryHigh Severe} VeryLow | 675 | ;# {OSFunctionThreatLevel} {Enabled:true AllowOSFunctions:true} {OSFunction threat level? (DANGEROUS!)} {None VeryLow Low Moderate High VeryHigh Severe} VeryLow |
641 | ;; Threat level to allow, one of None, VeryLow, Low, Moderate, High, | 676 | ;; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe |
642 | ;; VeryHigh, Severe | 677 | ;; See http://opensimulator.org/wiki/Threat_level for more information on these levels. |
678 | ;; We do not recommend that use set a general level above Low unless you have a high level of trust | ||
679 | ;; in all the users that can run scripts in your simulator. It is safer to explicitly | ||
680 | ;; allow certain types of user to run higher threat level OSSL functions, as detailed later on. | ||
643 | OSFunctionThreatLevel = VeryLow | 681 | OSFunctionThreatLevel = VeryLow |
644 | 682 | ||
645 | ; OS Functions enable/disable | 683 | ; OS Functions enable/disable |
@@ -656,10 +694,10 @@ | |||
656 | ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb | 694 | ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb |
657 | 695 | ||
658 | ; Comma separated list of owner classes that allow the function for a particular class of owners. Choices are | 696 | ; Comma separated list of owner classes that allow the function for a particular class of owners. Choices are |
659 | ; - PARCEL_GROUP_MEMBER: allow if objectgroup is the same group as the parcel | 697 | ; - PARCEL_GROUP_MEMBER: allow if the object group is the same group as the parcel |
660 | ; - PARCEL_OWNER: allow if the objectowner is parcelowner | 698 | ; - PARCEL_OWNER: allow if the object owner is the parcel owner |
661 | ; - ESTATE_MANAGER: allow if the object owner is a estate manager | 699 | ; - ESTATE_MANAGER: allow if the object owner is an estate manager |
662 | ; - ESTATE_OWNER: allow if objectowner is estateowner | 700 | ; - ESTATE_OWNER: allow if the object owner is the estate owner |
663 | ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb, PARCEL_OWNER, ESTATE_OWNER>, ... | 701 | ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb, PARCEL_OWNER, ESTATE_OWNER>, ... |
664 | 702 | ||
665 | ; You can also use script creators as the uuid | 703 | ; You can also use script creators as the uuid |
@@ -677,7 +715,7 @@ | |||
677 | ;; Sets the multiplier for the scripting delays | 715 | ;; Sets the multiplier for the scripting delays |
678 | ; ScriptDelayFactor = 1.0 | 716 | ; ScriptDelayFactor = 1.0 |
679 | 717 | ||
680 | ;; The factor the 10 m distances llimits are multiplied by | 718 | ;; The factor the 10 m distances limits are multiplied by |
681 | ; ScriptDistanceLimitFactor = 1.0 | 719 | ; ScriptDistanceLimitFactor = 1.0 |
682 | 720 | ||
683 | ;; Maximum length of notecard line read | 721 | ;; Maximum length of notecard line read |
@@ -780,7 +818,7 @@ | |||
780 | ;; groups service if the service is using these keys | 818 | ;; groups service if the service is using these keys |
781 | ; XmlRpcServiceReadKey = 1234 | 819 | ; XmlRpcServiceReadKey = 1234 |
782 | ; XmlRpcServiceWriteKey = 1234 | 820 | ; XmlRpcServiceWriteKey = 1234 |
783 | 821 | ||
784 | [InterestManagement] | 822 | [InterestManagement] |
785 | ;# {UpdatePrioritizationScheme} {} {Update prioritization scheme?} {BestAvatarResponsiveness Time Distance SimpleAngularDistance FrontBack} BestAvatarResponsiveness | 823 | ;# {UpdatePrioritizationScheme} {} {Update prioritization scheme?} {BestAvatarResponsiveness Time Distance SimpleAngularDistance FrontBack} BestAvatarResponsiveness |
786 | ;; This section controls how state updates are prioritized for each client | 824 | ;; This section controls how state updates are prioritized for each client |