diff options
author | onefang | 2019-05-19 21:24:15 +1000 |
---|---|---|
committer | onefang | 2019-05-19 21:24:15 +1000 |
commit | 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb (patch) | |
tree | a9fbc62df9eb2d1d9ba2698d8552eae71eca20d8 /bin/config-include/osslEnable.ini | |
parent | Add a build script. (diff) | |
download | opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.zip opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.gz opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.bz2 opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.xz |
Dump OpenSim 0.9.0.1 into it's own branch.
Diffstat (limited to 'bin/config-include/osslEnable.ini')
-rw-r--r-- | bin/config-include/osslEnable.ini | 266 |
1 files changed, 266 insertions, 0 deletions
diff --git a/bin/config-include/osslEnable.ini b/bin/config-include/osslEnable.ini new file mode 100644 index 0000000..ed90649 --- /dev/null +++ b/bin/config-include/osslEnable.ini | |||
@@ -0,0 +1,266 @@ | |||
1 | ; Enable OSSL functions. | ||
2 | ; Including this file in a region's set of INI files, causes the OpenSimulator | ||
3 | ; specific functions to be enabled. | ||
4 | ; See http://opensimulator.org/wiki/OSSL for a description of OSSL functions and | ||
5 | ; refer to http://opensimulator.org/wiki/OSSL_Implemented for a list of functions. | ||
6 | |||
7 | ; The below file lists all the functions and specifies who has permission to | ||
8 | ; execute the function. Some of the functions are for maintainance or can be | ||
9 | ; mis-used so the permission to execute a function can be limited. Ability to | ||
10 | ; execute a function is based on the owner of the prim holding the script. | ||
11 | |||
12 | [XEngine] | ||
13 | ; Allow the use of os* functions (some are dangerous) | ||
14 | AllowOSFunctions = true | ||
15 | |||
16 | ; Allow the user of mod* functions. This allows a script to pass messages | ||
17 | ; to a region module via the modSendCommand() function and is used by some | ||
18 | ; modules to extend the scripting language. | ||
19 | AllowMODFunctions = true | ||
20 | |||
21 | ; Allow the use of LightShare functions. | ||
22 | ; The setting enable_windlight = true must also be enabled in the [LightShare] section. | ||
23 | AllowLightShareFunctions = true | ||
24 | |||
25 | ; Threat level to allow. One of None, VeryLow, Low, Moderate, High, VeryHigh, Severe. | ||
26 | ; See http://opensimulator.org/wiki/Threat_level for more information on these levels. | ||
27 | ; This is the default level and can be overridden with the Allow_ specifications. | ||
28 | ; Blanket enabling the ossl functions is dangerous and we do not recommend setting higher | ||
29 | ; than 'Low' unless you have a high level of trust in all the users that can run scripts | ||
30 | ; in your simulator. It is safer to explicitly allow certain types of user to run | ||
31 | ; higher threat level OSSL functions, as detailed later on. | ||
32 | OSFunctionThreatLevel = VeryLow | ||
33 | |||
34 | ; Some of the OSSL functions can be enabled or disabled individually. | ||
35 | ; To disable, set the value to 'false'. | ||
36 | ; To enable for everyone, set the value to 'true'. | ||
37 | ; To enable for individuals or groups, set it to a comma separated list. This checks | ||
38 | ; against the owner of the object containing the script. | ||
39 | ; The comma separated entries in the list may be one of: | ||
40 | ; "GRID_GOD" -- enable for users with UserLevel >= 200 | ||
41 | ; "GOD" -- enable for users with rights to be god (local or grid) | ||
42 | ; "ACTIVE_GOD" -- enable for users that are present and with active god power | ||
43 | ; "ESTATE_MANAGER" -- enable for estate manager | ||
44 | ; "ESTATE_OWNER" -- enable for estate owner | ||
45 | ; "PARCEL_OWNER" -- enable for parcel owner | ||
46 | ; "PARCEL_GROUP_MEMBER" -- enable for any member of the parcel group | ||
47 | ; uuid -- enable for specified ID (may be avatar or group ID) | ||
48 | ; from this we can also create macros that can be include in the list as | ||
49 | ; ${XEngine|macroname} see examples below | ||
50 | |||
51 | ; parcel macros | ||
52 | ; Allowing ossl functions for anyone owning a parcel can be dangerous especially if | ||
53 | ; a region is selling or otherwise giving away parcel ownership. By default, parcel | ||
54 | ; ownership or group membership does not enable OSSL functions. Uncomment the | ||
55 | ; appropriate line below to allow parcel ownership and groups to do restricted | ||
56 | ; OSSL functions. It might be better to check the list below and edit the ones | ||
57 | ; to enable individually. | ||
58 | osslParcelO = "" | ||
59 | osslParcelOG = "" | ||
60 | ; osslParcelO = "PARCEL_OWNER," | ||
61 | ; osslParcelOG = "PARCEL_GROUP_MEMBER,PARCEL_OWNER," | ||
62 | |||
63 | ; NPC macros | ||
64 | ; These can be mis-used so limit use to those you can trust. | ||
65 | osslNPC = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
66 | |||
67 | ; The OSSL function name is prepended with "Allow_" and it checks against | ||
68 | ; the owners of the containing prim. There can also be entries beginning with | ||
69 | ; 'Creators_". The 'Creators_" parameters can only be a list of UUIDs and it is | ||
70 | ; checked against the creator of the script itself. | ||
71 | |||
72 | ; ************************************************* | ||
73 | |||
74 | ; ThreatLevel None | ||
75 | Allow_osGetAgents = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
76 | Allow_osGetAvatarList = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
77 | Allow_osGetGender = true | ||
78 | Allow_osGetHealth = true | ||
79 | Allow_osGetHealRate = true | ||
80 | Allow_osGetNPCList = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
81 | Allow_osGetRezzingObject = true | ||
82 | Allow_osNpcGetOwner = ${XEngine|osslNPC} | ||
83 | Allow_osParseJSON = true | ||
84 | Allow_osParseJSONNew = true | ||
85 | Allow_osSetSunParam = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
86 | Allow_osTeleportOwner = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
87 | Allow_osWindActiveModelPluginName = true | ||
88 | |||
89 | ; ThreatLevel Nuisance | ||
90 | Allow_osSetEstateSunSettings = ESTATE_MANAGER,ESTATE_OWNER | ||
91 | Allow_osSetRegionSunSettings = ESTATE_MANAGER,ESTATE_OWNER | ||
92 | |||
93 | ; ThreatLevel VeryLow | ||
94 | Allow_osEjectFromGroup = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
95 | Allow_osForceBreakAllLinks = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
96 | Allow_osForceBreakLink = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
97 | Allow_osGetWindParam = true | ||
98 | Allow_osInviteToGroup = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
99 | Allow_osReplaceString = true | ||
100 | Allow_osSetDynamicTextureData = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
101 | Allow_osSetDynamicTextureDataFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
102 | Allow_osSetDynamicTextureDataBlend = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
103 | Allow_osSetDynamicTextureDataBlendFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
104 | Allow_osSetDynamicTextureURL = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
105 | Allow_osSetDynamicTextureURLBlend = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
106 | Allow_osSetDynamicTextureURLBlendFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
107 | Allow_osSetParcelMediaURL = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
108 | Allow_osSetParcelSIPAddress = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
109 | Allow_osSetPrimFloatOnWater = true | ||
110 | Allow_osSetWindParam = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
111 | Allow_osTerrainFlush = ESTATE_MANAGER,ESTATE_OWNER | ||
112 | Allow_osUnixTimeToTimestamp = true | ||
113 | |||
114 | ; ThreatLevel Low | ||
115 | Allow_osAvatarName2Key = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
116 | Allow_osFormatString = true | ||
117 | Allow_osKey2Name = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
118 | Allow_osListenRegex = true | ||
119 | Allow_osLoadedCreationDate = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
120 | Allow_osLoadedCreationID = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
121 | Allow_osLoadedCreationTime = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
122 | Allow_osMessageObject = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
123 | Allow_osRegexIsMatch = true | ||
124 | Allow_osGetAvatarHomeURI = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
125 | Allow_osNpcSetProfileAbout = ${XEngine|osslNPC} | ||
126 | Allow_osNpcSetProfileImage = ${XEngine|osslNPC} | ||
127 | Allow_osDie = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
128 | |||
129 | ; ThreatLevel Moderate | ||
130 | Allow_osDropAttachment = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
131 | Allow_osDropAttachmentAt = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
132 | Allow_osGetGridCustom = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
133 | Allow_osGetGridGatekeeperURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
134 | Allow_osGetGridHomeURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
135 | Allow_osGetGridLoginURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
136 | Allow_osGetGridName = true | ||
137 | Allow_osGetGridNick = true | ||
138 | Allow_osGetNumberOfAttachments = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
139 | Allow_osGetRegionStats = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
140 | Allow_osGetSimulatorMemory = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
141 | Allow_osGetSimulatorMemoryKB = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
142 | Allow_osMessageAttachments = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
143 | Allow_osSetSpeed = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
144 | |||
145 | ; ThreatLevel High | ||
146 | Allow_osCauseDamage = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
147 | Allow_osCauseHealing = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
148 | Allow_osSetHealth = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
149 | Allow_osSetHealRate = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
150 | Allow_osForceAttachToAvatar = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
151 | Allow_osForceAttachToAvatarFromInventory = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
152 | Allow_osForceCreateLink = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
153 | Allow_osForceDropAttachment = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
154 | Allow_osForceDropAttachmentAt = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
155 | Allow_osGetLinkPrimitiveParams = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
156 | Allow_osGetPhysicsEngineType = true | ||
157 | Allow_osGetPrimitiveParams = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
158 | Allow_osGetRegionMapTexture = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
159 | Allow_osGetScriptEngineName = true | ||
160 | Allow_osGetSimulatorVersion = true | ||
161 | Allow_osMakeNotecard = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
162 | Allow_osMatchString = true | ||
163 | Allow_osNpcCreate = ${XEngine|osslNPC} | ||
164 | Allow_osNpcGetPos = ${XEngine|osslNPC} | ||
165 | Allow_osNpcGetRot = ${XEngine|osslNPC} | ||
166 | Allow_osNpcLoadAppearance = ${XEngine|osslNPC} | ||
167 | Allow_osNpcMoveTo = ${XEngine|osslNPC} | ||
168 | Allow_osNpcMoveToTarget = ${XEngine|osslNPC} | ||
169 | Allow_osNpcPlayAnimation = ${XEngine|osslNPC} | ||
170 | Allow_osNpcRemove = ${XEngine|osslNPC} | ||
171 | Allow_osNpcSaveAppearance = ${XEngine|osslNPC} | ||
172 | Allow_osNpcSay = ${XEngine|osslNPC} | ||
173 | Allow_osNpcSetRot = ${XEngine|osslNPC} | ||
174 | Allow_osNpcShout = ${XEngine|osslNPC} | ||
175 | Allow_osNpcSit = ${XEngine|osslNPC} | ||
176 | Allow_osNpcStand = ${XEngine|osslNPC} | ||
177 | Allow_osNpcStopAnimation = ${XEngine|osslNPC} | ||
178 | Allow_osNpcStopMoveToTarget = ${XEngine|osslNPC} | ||
179 | Allow_osNpcTouch = ${XEngine|osslNPC} | ||
180 | Allow_osNpcWhisper = ${XEngine|osslNPC} | ||
181 | Allow_osOwnerSaveAppearance = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
182 | Allow_osParcelJoin = ESTATE_MANAGER,ESTATE_OWNER | ||
183 | Allow_osParcelSubdivide = ESTATE_MANAGER,ESTATE_OWNER | ||
184 | Allow_osRegionRestart = ESTATE_MANAGER,ESTATE_OWNER | ||
185 | Allow_osSetContentType = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
186 | Allow_osSetPrimitiveParams = false | ||
187 | Allow_osSetProjectionParams = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER | ||
188 | Allow_osSetRegionWaterHeight = ESTATE_MANAGER,ESTATE_OWNER | ||
189 | Allow_osSetStateEvents = false ; deprecated | ||
190 | Allow_osSetTerrainHeight = ESTATE_MANAGER,ESTATE_OWNER | ||
191 | Allow_osSetTerrainTexture = ESTATE_MANAGER,ESTATE_OWNER | ||
192 | Allow_osSetTerrainTextureHeight = ESTATE_MANAGER,ESTATE_OWNER | ||
193 | |||
194 | ; ThreatLevel VeryHigh | ||
195 | Allow_osAgentSaveAppearance = ESTATE_MANAGER,ESTATE_OWNER | ||
196 | ; Warning: The next function allows scripts to force animations on avatars without the user giving permission. | ||
197 | ; Enabling this can allow forced animations which can trigger traumatic episodes in vulnerable populations. | ||
198 | ; Similar things can be said for several of the 'force' functions. Enable with care and control. | ||
199 | ; Some of these were added as early functionality for NPCs. This has been replaced with the NPC functions. | ||
200 | Allow_osAvatarPlayAnimation = false | ||
201 | Allow_osAvatarStopAnimation = false | ||
202 | Allow_osForceAttachToOtherAvatarFromInventory = false | ||
203 | Allow_osForceDetachFromAvatar = false | ||
204 | Allow_osForceOtherSit = false | ||
205 | ; The notecard functions can cause a lot of load on the region if over used | ||
206 | Allow_osGetNotecard = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
207 | Allow_osGetNotecardLine = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
208 | Allow_osGetNumberOfNotecardLines = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
209 | Allow_osRegionNotice = ESTATE_MANAGER,ESTATE_OWNER | ||
210 | Allow_osSetRot = false | ||
211 | Allow_osSetParcelDetails = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
212 | |||
213 | ; ThreatLevel Severe | ||
214 | Allow_osConsoleCommand = false | ||
215 | Allow_osGrantScriptPermissions = false | ||
216 | Allow_osKickAvatar = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
217 | Allow_osRevokeScriptPermissions = false | ||
218 | Allow_osTeleportAgent = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
219 | Allow_osTeleportObject = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
220 | |||
221 | ; ThreatLevel Severe with additional internal restrictions | ||
222 | Allow_osGetAgentIP = true ; always restricted to Administrators (true or false to disable) | ||
223 | |||
224 | ; available functions out of Threat level control (for reference only) | ||
225 | ; Allow_osCheckODE = true | ||
226 | ; Allow_osClearInertia = true | ||
227 | ; Allow_osCollisionSound = true | ||
228 | ; Allow_osDrawEllipse = true | ||
229 | ; Allow_osDrawFilledEllipse = true | ||
230 | ; Allow_osDrawFilledPolygon = true | ||
231 | ; Allow_osDrawFilledRectangle = true | ||
232 | ; Allow_osDrawImage = true | ||
233 | ; Allow_osDrawLine = true | ||
234 | ; Allow_osDrawPolygon = true | ||
235 | ; Allow_osDrawRectangle = true | ||
236 | ; Allow_osDrawResetTransform = true | ||
237 | ; Allow_osDrawRotationTransform = true | ||
238 | ; Allow_osDrawScaleTransform = true | ||
239 | ; Allow_osDrawText = true | ||
240 | ; Allow_osDrawTranslationTransform = true | ||
241 | ; Allow_osGetCurrentSunHour = true | ||
242 | ; Allow_osGetInertiaData = true | ||
243 | ; Allow_osGetInventoryDesc = true | ||
244 | ; Allow_osGetLinkNumber = true | ||
245 | ; Allow_osGetMapTexture = true | ||
246 | ; Allow_osGetPhysicsEngineName = true | ||
247 | ; Allow_osGetRegionSize = true | ||
248 | ; Allow_osGetSunParam = true | ||
249 | ; Allow_osGetTerrainHeight = true | ||
250 | ; Allow_osGetDrawStringSize = true | ||
251 | ; Allow_osIsNpc = true | ||
252 | ; Allow_osIsUUID = true | ||
253 | ; Allow_osList2Double = true | ||
254 | ; Allow_osMax = true | ||
255 | ; Allow_osMin = true | ||
256 | ; Allow_osMovePen = true | ||
257 | ; Allow_osSetFontName = true | ||
258 | ; Allow_osSetFontSize = true | ||
259 | ; Allow_osSetInertia = true | ||
260 | ; Allow_osSetInertiaAsBox = true | ||
261 | ; Allow_osSetInertiaAsSphere = true | ||
262 | ; Allow_osSetInertiaAsCylinder = true | ||
263 | ; Allow_osSetPenCap = true | ||
264 | ; Allow_osSetPenColor = true | ||
265 | ; Allow_osSetPenSize = true | ||
266 | ; Allow_osVolumeDetect = true | ||