aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSimDefaults.ini
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSimDefaults.ini')
-rw-r--r--bin/OpenSimDefaults.ini61
1 files changed, 37 insertions, 24 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index ca4fbfb..cd69e2a 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -70,6 +70,10 @@
70 ; except that everything is also enclosed in a <Regions> tag. 70 ; except that everything is also enclosed in a <Regions> tag.
71 ; regionload_webserver_url = "http://example.com/regions.xml"; 71 ; regionload_webserver_url = "http://example.com/regions.xml";
72 72
73 ;; Allow the simulator to start up if there are no region configuration available
74 ;; from the selected region_info_source.
75 allow_regionless = false
76
73 ; Maximum size of non physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonphysicalPrimMax!). 77 ; Maximum size of non physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonphysicalPrimMax!).
74 NonPhysicalPrimMax = 256 78 NonPhysicalPrimMax = 256
75 79
@@ -511,6 +515,7 @@
511 ; so it is disabled by default. 515 ; so it is disabled by default.
512 Cap_WebFetchInventoryDescendents = "" 516 Cap_WebFetchInventoryDescendents = ""
513 517
518
514[Chat] 519[Chat]
515 ; Controls whether the chat module is enabled. Default is true. 520 ; Controls whether the chat module is enabled. Default is true.
516 enabled = true; 521 enabled = true;
@@ -524,6 +529,7 @@
524 ; Distance in meters that shouts should travel. Default is 100m 529 ; Distance in meters that shouts should travel. Default is 100m
525 shout_distance = 100 530 shout_distance = 100
526 531
532
527[EntityTransfer] 533[EntityTransfer]
528 ; The maximum distance in regions that an agent is allowed to teleport along the x or y axis 534 ; The maximum distance in regions that an agent is allowed to teleport along the x or y axis
529 ; This is set to 4095 because current viewers can't handle teleports that are greater than this distance 535 ; This is set to 4095 because current viewers can't handle teleports that are greater than this distance
@@ -550,6 +556,12 @@
550 CoalesceMultipleObjectsToInventory = true 556 CoalesceMultipleObjectsToInventory = true
551 557
552 558
559[Attachments]
560 ; Controls whether avatar attachments are enabled.
561 ; Defaults to true - only set to false for debugging purposes
562 Enabled = true
563
564
553[Mesh] 565[Mesh]
554 ; enable / disable Collada mesh support 566 ; enable / disable Collada mesh support
555 ; default is true 567 ; default is true
@@ -1124,6 +1136,25 @@
1124 ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe 1136 ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
1125 OSFunctionThreatLevel = VeryLow 1137 OSFunctionThreatLevel = VeryLow
1126 1138
1139 ; OS Functions enable/disable
1140 ; For each function, you can add one line, as shown
1141 ; The default for all functions allows them if below threat level
1142
1143 ; true allows the use of the function unconditionally
1144 ; Allow_osSetRegionWaterHeight = true
1145
1146 ; false disables the function completely
1147 ; Allow_osSetRegionWaterHeight = false
1148
1149 ; Comma separated list of UUIDS allows the function for that list of UUIDS
1150 ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
1151
1152 ; You can also use script creators as the uuid
1153 ; Creators_osSetRegionWaterHeight = <uuid>, ...
1154
1155 ; If both Allow_ and Creators_ are given, effective permissions
1156 ; are the union of the two.
1157
1127 ; Interval (s) between background save of script states 1158 ; Interval (s) between background save of script states
1128 SaveInterval = 120 1159 SaveInterval = 120
1129 1160
@@ -1151,25 +1182,6 @@
1151 SensorMaxRange = 96.0 1182 SensorMaxRange = 96.0
1152 SensorMaxResults = 16 1183 SensorMaxResults = 16
1153 1184
1154 ; OS Functions enable/disable
1155 ; For each function, you can add one line, as shown
1156 ; The default for all functions allows them if below threat level
1157
1158 ; true allows the use of the function unconditionally
1159 ; Allow_osSetRegionWaterHeight = true
1160
1161 ; false disables the function completely
1162 ; Allow_osSetRegionWaterHeight = false
1163
1164 ; Comma separated list of UUIDS allows the function for that list of UUIDS
1165 ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
1166
1167 ; You can also use script creators as the uuid
1168 ; Creators_osSetRegionWaterHeight = <uuid>, ...
1169
1170 ; If both Allow_ and Creators_ are given, effective permissions
1171 ; are the union of the two.
1172
1173 ; Allow for llCreateLink and llBreakLink to work without asking for permission 1185 ; Allow for llCreateLink and llBreakLink to work without asking for permission
1174 ; only enable this in a trusted environment otherwise you may be subject to hijacking 1186 ; only enable this in a trusted environment otherwise you may be subject to hijacking
1175 ; AutomaticLinkPermission = false 1187 ; AutomaticLinkPermission = false
@@ -1182,11 +1194,12 @@
1182 ;; Path to script assemblies 1194 ;; Path to script assemblies
1183 ; ScriptEnginesPath = "ScriptEngines" 1195 ; ScriptEnginesPath = "ScriptEngines"
1184 1196
1185 ; Whether to delete previously compiled scripts when the sim starts. If you disable this 1197 ; Controls whether previously compiled scripts are deleted on sim restart. If you disable this
1186 ; then startup will be faster. However, then it becomes your responsibility to delete the 1198 ; then startup will be faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
1187 ; compiled scripts if OpenSim has changed enough that previously compiled scripts are no 1199 ; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
1188 ; longer compatible. 1200 ; by scripts have changed.
1189 DeleteScriptsOnStartup = true 1201 ; Default is false
1202 ; DeleteScriptsOnStartup = true
1190 1203
1191 1204
1192[OpenGridProtocol] 1205[OpenGridProtocol]