OpenSimDefaults.ini 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698
  1. ; This file contains defaults for various settings in OpenSimulator. These can be overriden
  2. ; by changing the same setting in OpenSim.ini (once OpenSim.ini.example has been copied to OpenSim.ini).
  3. [Startup]
  4. ; Console prompt
  5. ; Certain special characters can be used to customize the prompt
  6. ; Currently, these are
  7. ; \R - substitute region name
  8. ; \\ - substtitue \
  9. ConsolePrompt = "Region (\R) "
  10. ; Set this to true if you want to log crashes to disk
  11. ; this can be useful when submitting bug reports.
  12. ; However, this will only log crashes within OpenSimulator that cause the entire program to exit
  13. ; It will not log crashes caused by virtual machine failures, which includes mono and ODE failures.
  14. ; You will need to capture these native stack traces by recording the session log itself.
  15. save_crashes = false
  16. ; Directory to save crashes to if above is enabled
  17. ; (default is /opensimdir/crashes/*.txt or C:\opensim\crashes\*.txt)
  18. crash_dir = "crashes"
  19. ; Place to create a PID file
  20. ; PIDFile = "/tmp/my.pid"
  21. ; Console commands run at startup
  22. startup_console_commands_file = "startup_commands.txt"
  23. ; Console commands run on shutdown
  24. shutdown_console_commands_file = "shutdown_commands.txt"
  25. ; Console commands run every 20 minutes
  26. ; timer_Script = "filename"
  27. ; timer_Script time interval (default 20 min)
  28. ; The time is 60 per minute
  29. ; timer_Interval = 1200
  30. ; ##
  31. ; ## SYSTEM
  32. ; ##
  33. ; Sets the method that OpenSim will use to fire asynchronous
  34. ; events. Valid values are UnsafeQueueUserWorkItem,
  35. ; QueueUserWorkItem, BeginInvoke, SmartThreadPool, and Thread.
  36. ; SmartThreadPool is reported to work well on Mono/Linux, but
  37. ; UnsafeQueueUserWorkItem has been benchmarked with better
  38. ; performance on .NET/Windows
  39. async_call_method = SmartThreadPool
  40. ; Max threads to allocate on the FireAndForget thread pool
  41. ; when running with the SmartThreadPool option above
  42. MaxPoolThreads = 15
  43. ; ##
  44. ; ## CLIENTS
  45. ; ##
  46. ; Enables EventQueueGet Service.
  47. EventQueue = true
  48. ; Set this to the DLL containing the client stack to use.
  49. clientstack_plugin="OpenSim.Region.ClientStack.LindenUDP.dll"
  50. ; ##
  51. ; ## REGIONS
  52. ; ##
  53. ; Determine where OpenSimulator looks for the files which tell it which regions to server
  54. ; Defaults to "filesystem" if this setting isn't present
  55. region_info_source = "filesystem"
  56. ; region_info_source = "web"
  57. ; Determines where the region XML files are stored if you are loading these from the filesystem.
  58. ; Defaults to bin/Regions in your OpenSimulator installation directory
  59. ; regionload_regionsdir="C:\somewhere\xmlfiles\"
  60. ; Determines the page from which regions xml is retrieved if you are loading these from the web
  61. ; The XML here has the same format as it does on the filesystem (including the <Root> tag),
  62. ; except that everything is also enclosed in a <Regions> tag.
  63. ; regionload_webserver_url = "http://example.com/regions.xml";
  64. ;; Allow the simulator to start up if there are no region configuration available
  65. ;; from the selected region_info_source.
  66. allow_regionless = false
  67. ; Maximum number of position, rotation and scale changes for each prim that the simulator will store for later undos
  68. ; Increasing this number will increase memory usage.
  69. MaxPrimUndos = 20
  70. ; Maximum size of non physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMax!).
  71. NonPhysicalPrimMax = 256
  72. ; Maximum size of physical prims. Affects resizing of existing prims. This can be overriden in the region config file.
  73. PhysicalPrimMax = 10
  74. ; If a viewer attempts to rez a prim larger than the non-physical or physical prim max, clamp the dimensions to the appropriate maximum
  75. ; This can be overriden in the region config file.
  76. ClampPrimSize = false
  77. ; Maximum number of prims allowable in a linkset. Affects creating new linksets. Ignored if less than or equal to zero.
  78. ; This can be overriden in the region config file.
  79. LinksetPrims = 0
  80. ; Allow scripts to keep running when they cross region boundaries, rather than being restarted. State is reloaded on the destination region.
  81. ; This only applies when crossing to a region running in a different simulator.
  82. ; For crossings where the regions are on the same simulator the script is always kept running.
  83. AllowScriptCrossing = true
  84. ; Allow compiled script binary code to cross region boundaries.
  85. ; If you set this to "true", any region that can teleport to you can
  86. ; inject ARBITRARY BINARY CODE into your system. Use at your own risk.
  87. ; YOU HAVE BEEN WARNED!!!
  88. TrustBinaries = false
  89. ; Combine all contiguous regions into one large megaregion
  90. ; Order your regions from South to North, West to East in your regions.ini and then set this to true
  91. ; Warning! Don't use this with regions that have existing content!, This will likely break them
  92. CombineContiguousRegions = false
  93. ; Extend the region's draw distance; 255m is the default which includes
  94. ; one neighbor on each side of the current region, 767m would go three
  95. ; neighbors on each side for a total of 49 regions in view. Warning, unless
  96. ; all the regions have the same drawdistance, you will end up with strange
  97. ; effects because the agents that get closed may be inconsistent.
  98. DefaultDrawDistance = 255.0
  99. ; If you have only one region in an instance, or to avoid the many bugs
  100. ; that you can trigger in modules by restarting a region, set this to
  101. ; true to make the entire instance exit instead of restarting the region.
  102. ; This is meant to be used on systems where some external system like
  103. ; Monit will restart any instance that exits, thereby making the shutdown
  104. ; into a restart.
  105. InworldRestartShutsDown = false
  106. ; The minimum proportion of a second that any particular frame can take to execute.
  107. ; Only change this if you really know what you're doing, and be prepared to change UpdatePhysicsEveryNFrames
  108. ; (and other Frames params) to match! For instance, halving MinFrameTime to 0.0445 require
  109. ; UpdatePhysicsEveryNFrames = 2 unless you don't mind your avatar walking like Benny Hill.
  110. MinFrameTime = 0.089
  111. ; Send scheduled updates to objects in the scene
  112. ; This must be a whole number
  113. UpdateObjectsEveryNFrames = 1;
  114. ; Send position/velocity, etc. updates to agents in the scene
  115. ; This must be a whole number
  116. UpdateAgentsEveryNFrames = 1;
  117. ; Apply pending forces from physics calculations to an entity.
  118. ; This must be a whole number
  119. UpdateEntityMovementEveryNFrames = 1;
  120. ; Send coarse location updates to viewers. In a classic viewer, this updates the minimap.
  121. ; This must be a whole number
  122. UpdateCoarseLocationsEveryNFrames = 50;
  123. ; Update physics. Within each update physics also updates in a series of contigous mini-steps
  124. ; This must be a whole number
  125. UpdatePhysicsEveryNFrames = 1;
  126. ; Clean up temp on rez objects.
  127. ; This must be a whole number
  128. UpdateTempCleaningEveryNFrames = 1000;
  129. ; Send out the on frame event to modules and other listeners. This should probably never deviate from 1.
  130. ; This must be a whole number
  131. UpdateEventsEveryNFrames = 1;
  132. ; Send terrain updates to viewers
  133. ; This must be a whole number
  134. UpdateTerrainEveryNFrames = 50;
  135. ; Persitently store any objects which meet the PRIM STORAGE criteria
  136. ; This must be a whole number
  137. UpdateStorageEveryNFrames = 200;
  138. ; ##
  139. ; ## PRIM STORAGE
  140. ; ##
  141. ; Persistence of changed objects happens during regular sweeps. The following control that behaviour to
  142. ; prevent frequently changing objects from heavily loading the region data store.
  143. ; If both of these values are set to zero then persistence of all changed objects will happen on every sweep.
  144. ;
  145. ; Objects will be considered for persistance in the next sweep when they have not changed for this number of seconds
  146. MinimumTimeBeforePersistenceConsidered = 60
  147. ; Objects will always be considered for persistance in the next sweep if the first change occurred this number of seconds ago
  148. MaximumTimeBeforePersistenceConsidered = 600
  149. ; ##
  150. ; ## PHYSICS
  151. ; ##
  152. ; If true then prims can be collided with by avatars, other prims, etc.
  153. ; If false then all prims are phantom, no matter whether their phantom flag is checked or unchecked.
  154. ; Also, no prims are subject to physics.
  155. collidable_prim = true
  156. ; If true then prims can be made subject to physics (gravity, pushing, etc.).
  157. ; If false then physics flag can be set but it is not honoured. However, prims are still solid for the purposes of collision direction
  158. physical_prim = true
  159. ; Select a mesher here.
  160. ;
  161. ; Meshmerizer properly handles complex prims by using triangle meshes.
  162. ; Note that only the ODE physics engine currently deals with meshed prims in a satisfactory way
  163. ;
  164. ; ZeroMesher is faster but leaves the physics engine to model the mesh using the basic shapes that it supports
  165. ; Usually this is only a box
  166. meshing = Meshmerizer
  167. ;meshing = ZeroMesher
  168. ; Path to decoded sculpty maps
  169. ; Defaults to "j2kDecodeCache
  170. ;DecodedSculptMapPath = "j2kDecodeCache"
  171. ; if you use Meshmerizer and want sculpt map collisions, setting this to
  172. ; to true will store decoded sculpt maps in a special folder in your bin
  173. ; folder, which can reduce startup times by reducing asset requests. Some
  174. ; versions of mono dont work well when reading the cache files, so set this
  175. ; to false if you have compatibility problems.
  176. ;CacheSculptMaps = true
  177. ; Choose one of the physics engines below
  178. ; OpenDynamicsEngine is by some distance the most developed physics engine
  179. ; basicphysics effectively does not model physics at all, making all objects phantom
  180. physics = OpenDynamicsEngine
  181. ;physics = basicphysics
  182. ;physics = POS
  183. ;physics = modified_BulletX
  184. ;physics = BulletSim
  185. ; ##
  186. ; ## PERMISSIONS
  187. ; ##
  188. ;permissionmodules = "DefaultPermissionsModule"
  189. ; If set to false, then, in theory, the server never carries out permission checks (allowing anybody to copy
  190. ; any item, etc. This may not yet be implemented uniformally.
  191. ; If set to true, then all permissions checks are carried out
  192. ; Default is true
  193. serverside_object_permissions = true
  194. allow_grid_gods = false
  195. ; This allows somne control over permissions
  196. ; please note that this still doesn't duplicate SL, and is not intended to
  197. ;region_owner_is_god = true
  198. ;region_manager_is_god = false
  199. ;parcel_owner_is_god = true
  200. ; Control user types that are allowed to create new scripts
  201. ; Only enforced if serviceside_object_permissions is true
  202. ;
  203. ; Current possible values are
  204. ; all - anyone can create scripts (subject to normal permissions)
  205. ; gods - only administrators can create scripts (as long as allow_grid_gods is true)
  206. ; Default value is all
  207. ; allowed_script_creators = all
  208. ; Control user types that are allowed to edit (save) scripts
  209. ; Only enforced if serviceside_object_permissions is true
  210. ;
  211. ; Current possible values are
  212. ; all - anyone can edit scripts (subject to normal permissions)
  213. ; gods - only administrators can edit scripts (as long as allow_grid_gods is true)
  214. ; Default value is all
  215. ; allowed_script_editors = all
  216. ; Provides a simple control for land owners to give build rights to specific avatars
  217. ; in publicly accessible parcels that disallow object creation in general.
  218. ; Owners specific avatars by adding them to the Access List of the parcel
  219. ; without having to use the Groups feature
  220. ; Disabled by default
  221. ; simple_build_permissions = False
  222. ; Minimum user level required to upload assets
  223. ;LevelUpload = 0
  224. ; ##
  225. ; ## SCRIPT ENGINE
  226. ; ##
  227. DefaultScriptEngine = "XEngine"
  228. ; ##
  229. ; ## WORLD MAP
  230. ; ##
  231. ;WorldMapModule = "WorldMap"
  232. ;MapImageModule = "MapImageModule"
  233. ; World map blacklist timeout in seconds
  234. ;BlacklistTimeout = 600
  235. ; Set to false to not generate any maptiles
  236. ;GenerateMaptiles = true
  237. ; Refresh (in seconds) the map tile periodically
  238. ;MaptileRefresh = 0
  239. ; If not generating maptiles, use this static texture asset ID
  240. ;MaptileStaticUUID = "00000000-0000-0000-0000-000000000000"
  241. ; Draw objects on maptile. This step might take a long time if you've got a large number of
  242. ; objects, so you can turn it off here if you'd like.
  243. DrawPrimOnMapTile = true
  244. ; Use terrain texture for maptiles if true, use shaded green if false
  245. TextureOnMapTile = true
  246. ; ##
  247. ; ## EMAIL MODULE
  248. ; ##
  249. ;emailmodule = DefaultEmailModule
  250. ; ##
  251. ; ## ANIMATIONS
  252. ; ##
  253. ; If enabled, enableFlySlow will change the primary fly state to
  254. ; FLYSLOW, and the "always run" state will be the regular fly.
  255. enableflyslow = false
  256. ; PreJump is an additional animation state, but it probably
  257. ; won't look right until the physics engine supports it
  258. ; (i.e delays takeoff for a moment)
  259. ; Simulator Stats URI
  260. ; Enable JSON simulator data by setting a URI name (case sensitive)
  261. ; Stats_URI = "jsonSimStats"
  262. ; Make OpenSim start all regions woth logins disabled. They will need
  263. ; to be enabled from the console if this is set
  264. ; StartDisabled = false
  265. ; Image decoding. Use CSJ2K for layer boundary decoding if true,
  266. ; OpenJPEG if false
  267. ; UseCSJ2K = true
  268. ; Use "Trash" folder for items deleted from the scene
  269. ; When set to True (the default) items deleted from the scene will be
  270. ; stored in the user's trash or lost and found folder. When set to
  271. ; False items will be removed from the scene permanently
  272. UseTrashOnDelete = True
  273. [RegionReady]
  274. ; Enable this module to get notified once all items and scripts in the region have been completely loaded and compiled
  275. enabled = true
  276. ; Channel on which to signal region readiness through a message
  277. ; formatted as follows: "{server_startup|oar_file_load},{0|1},n,[oar error]"
  278. ; - the first field indicating whether this is an initial server startup
  279. ; - the second field is a number indicating whether the OAR file loaded ok (1 == ok, 0 == error)
  280. ; - the third field is a number indicating how many scripts failed to compile
  281. ; - "oar error" if supplied, provides the error message from the OAR load
  282. channel_notify = -800
  283. ; - disallow logins while scripts are loading
  284. ; Instability can occur on regions with 100+ scripts if users enter before they have finished loading
  285. login_disable = true
  286. ; - send an alert as json to a service
  287. ; alert_uri = "http://myappserver.net/my_handler/"
  288. [SMTP]
  289. enabled = false
  290. ;enabled = true
  291. ;internal_object_host = lsl.opensim.local
  292. ;host_domain_header_from = 127.0.0.1
  293. ;SMTP_SERVER_HOSTNAME = 127.0.0.1
  294. ;SMTP_SERVER_PORT = 25
  295. ;SMTP_SERVER_LOGIN = foo
  296. ;SMTP_SERVER_PASSWORD = bar
  297. [Network]
  298. ConsoleUser = "Test"
  299. ConsolePass = "secret"
  300. http_listener_port = 9000
  301. console_port = 0
  302. ; ssl config: Experimental! The auto https config only really works definately on windows XP now
  303. ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below
  304. ; you can use https on other platforms, but you'll need to configure the httpapi yourself for now
  305. http_listener_ssl = false ; Also create a SSL server
  306. http_listener_cn = "localhost" ; Use the cert with the common name
  307. http_listener_sslport = 9001 ; Use this port for SSL connections
  308. http_listener_ssl_cert = "" ; Currently unused, but will be used for OSHttpServer
  309. ; HTTPS for "Out of band" management applications such as the remote
  310. ; admin module
  311. ;
  312. ; Create https_listener = "True" will create a listener on the port
  313. ; specified. Provide the path to your server certificate along with it's
  314. ; password
  315. ; https_listener = False
  316. ; Set our listener to this port
  317. ; https_port = 0
  318. ; Path to X509 certificate
  319. ; cert_path = "path/to/cert.p12"
  320. ; Password for cert
  321. ; cert_pass = "password"
  322. ; Hostname to use in llRequestURL/llRequestSecureURL
  323. ; if not defined - default machine name is being used
  324. ; (on Windows this mean NETBIOS name - useably only inside local network)
  325. ; ExternalHostNameForLSL=127.0.0.1
  326. ; What is reported as the "X-Secondlife-Shard"
  327. ; Defaults to the user server url if not set
  328. ; The old default is "OpenSim", set here for compatibility
  329. shard = "OpenSim"
  330. ; What is reported as the "User-Agent" when using llHTTPRequest
  331. ; Defaults to not sent if not set here. See the notes section in the wiki at
  332. ; http://wiki.secondlife.com/wiki/LlHTTPRequest for comments on adding
  333. ; " (Mozilla Compatible)" to the text where there are problems with a web server
  334. ;user_agent = "OpenSim LSL (Mozilla Compatible)"
  335. ; OpenSim can send multiple simultaneous requests for services such as asset
  336. ; retrieval. However, some versions of mono appear to hang when there are too
  337. ; many simultaneous requests, default is 30 and is currently applied only to assets
  338. ;MaxRequestConcurrency = 30
  339. [XMLRPC]
  340. ; ##
  341. ; ## Scripting XMLRPC mapper
  342. ; ##
  343. ; If enabled, this will post an event, "xmlrpc_uri(string)" to the
  344. ; script concurrently with the first remote_data event.
  345. ; This will contain the fully qualified URI an external site needs
  346. ; to use to send XMLRPC requests to that script
  347. ;XmlRpcRouterModule = "XmlRpcRouterModule"
  348. ;XmlRpcPort = 20800
  349. [ClientStack.LindenUDP]
  350. ; Set this to true to process incoming packets asynchronously. Networking is
  351. ; already separated from packet handling with a queue, so this will only
  352. ; affect whether networking internals such as packet decoding and
  353. ; acknowledgement accounting are done synchronously or asynchronously
  354. ; Default is true.
  355. ;
  356. ;async_packet_handling = true
  357. ; The client socket receive buffer size determines how many
  358. ; incoming requests we can process; the default on .NET is 8192
  359. ; which is about 2 4k-sized UDP datagrams. On mono this is
  360. ; whatever the underlying operating system has as default; for
  361. ; example, ubuntu 8.04 or SLES11 have about 111k, which is about
  362. ; 27 4k-sized UDP datagrams (on linux platforms you can [as root]
  363. ; do "sysctl net.core.rmem_default" to find out what your system
  364. ; uses a default socket receive buffer size.
  365. ;
  366. ; client_socket_rcvbuf_size allows you to specify the receive
  367. ; buffer size LLUDPServer should use. NOTE: this will be limited
  368. ; by the system's settings for the maximum client receive buffer
  369. ; size (on linux systems you can set that with "sysctl -w
  370. ; net.core.rmem_max=X")
  371. ;
  372. ;client_socket_rcvbuf_size = 8388608
  373. ; Maximum outbound bytes per second for a single scene. This can be used to
  374. ; throttle total outbound UDP traffic for a simulator. The default value is
  375. ; 0, meaning no throttling at the scene level. The example given here is
  376. ; 20 megabits
  377. ;
  378. ;scene_throttle_max_bps = 2621440
  379. ; Maximum bits per second to send to any single client. This will override
  380. ; the user's viewer preference settings. The default value is 0, meaning no
  381. ; aggregate throttling on clients (only per-category throttling). The
  382. ; example given here is 1.5 megabits
  383. ;
  384. ;client_throttle_max_bps = 196608
  385. ; Adaptive throttling attempts to limit network overload when multiple
  386. ; clients login by starting each connection more slowly. Disabled by
  387. ; default
  388. ;
  389. enable_adaptive_throttles = true
  390. ; Per-client bytes per second rates for the various throttle categories.
  391. ; These are default values that will be overriden by clients. These
  392. ; defaults are approximately equivalent to the throttles set by the Imprudence
  393. ; viewer when maximum bandwidth is set to 350kbps
  394. ;resend_default = 6625
  395. ;land_default = 9125
  396. ;wind_default = 1750
  397. ;cloud_default = 1750
  398. ;task_default = 18500
  399. ;texture_default = 18500
  400. ;asset_default = 10500
  401. ; Configures how ObjectUpdates are aggregated. These numbers
  402. ; do not literally mean how many updates will be put in each
  403. ; packet that goes over the wire, as packets are
  404. ; automatically split on a 1400 byte boundary. These control
  405. ; the balance between responsiveness of interest list updates
  406. ; and total throughput. Higher numbers will ensure more full-
  407. ; sized packets and faster sending of data, but more delay in
  408. ; updating interest lists
  409. ;
  410. ;PrimUpdatesPerCallback = 100
  411. ; TextureSendLimit determines how many packets will be put on
  412. ; the outgoing queue each cycle. Like the settings above, this
  413. ; is a balance between responsiveness to priority updates and
  414. ; total throughput. Higher numbers will give a better
  415. ; throughput at the cost of reduced responsiveness to client
  416. ; priority changes or transfer aborts
  417. ;
  418. ;TextureSendLimit = 20
  419. ; Quash and remove any light properties from attachments not on the
  420. ; hands. This allows flashlights and lanterns to function, but kills
  421. ; silly vanity "Facelights" dead. Sorry, head mounted miner's lamps
  422. ; will also be affected.
  423. ;
  424. ;DisableFacelights = false
  425. ; The time to wait before disconecting an unresponsive client.
  426. ; The time is in seconds. The default is one minute
  427. ;
  428. ;AckTimeout = 60
  429. ; The time to wait before disconecting an unresponsive paused client.
  430. ; A client can be paused when the file selection dialog is open during file upload.
  431. ; This gives extra time to find files via the dialog but will still disconnect if
  432. ; the client crashes or loses its network connection
  433. ; The time is in seconds. The default is five minutes.
  434. ;
  435. ;PausedAckTimeout = 300
  436. [ClientStack.LindenCaps]
  437. ;; Long list of capabilities taken from
  438. ;; http://wiki.secondlife.com/wiki/Current_Sim_Capabilities
  439. ;; Not all are supported by OpenSim. The ones supported are
  440. ;; set to localhost. These defaults can be overwritten
  441. ;; in OpenSim.ini
  442. ;;
  443. Cap_AttachmentResources = ""
  444. Cap_AvatarPickerSearch = ""
  445. Cap_ChatSessionRequest = ""
  446. Cap_CopyInventoryFromNotecard = "localhost"
  447. Cap_DispatchRegionInfo = ""
  448. Cap_EstateChangeInfo = ""
  449. Cap_EnvironmentSettings = "localhost"
  450. Cap_EventQueueGet = "localhost"
  451. Cap_FetchInventory = ""
  452. Cap_ObjectMedia = "localhost"
  453. Cap_ObjectMediaNavigate = "localhost"
  454. Cap_FetchLib = ""
  455. Cap_FetchLibDescendents = ""
  456. Cap_GetDisplayNames = ""
  457. Cap_GetTexture = "localhost"
  458. Cap_GetMesh = "localhost"
  459. Cap_GetObjectCost = ""
  460. Cap_GetObjectPhysicsData = ""
  461. Cap_GroupProposalBallot = ""
  462. Cap_HomeLocation = ""
  463. Cap_LandResources = ""
  464. Cap_MapLayer = "localhost"
  465. Cap_MapLayerGod = "localhost"
  466. Cap_NewFileAgentInventory = "localhost"
  467. Cap_NewFileAgentInventoryVariablePrice = "localhost"
  468. Cap_ObjectAdd = "localhost"
  469. Cap_ParcelPropertiesUpdate = "localhost"
  470. Cap_ParcelMediaURLFilterList = ""
  471. Cap_ParcelNavigateMedia = ""
  472. Cap_ParcelVoiceInfoRequest = ""
  473. Cap_ProductInfoRequest = ""
  474. Cap_ProvisionVoiceAccountRequest = ""
  475. Cap_RemoteParcelRequest = "localhost"
  476. Cap_RequestTextureDownload = ""
  477. Cap_SearchStatRequest = ""
  478. Cap_SearchStatTracking = ""
  479. Cap_SendPostcard = ""
  480. Cap_SendUserReport = ""
  481. Cap_SendUserReportWithScreenshot = ""
  482. Cap_ServerReleaseNotes = ""
  483. Cap_SimConsole = ""
  484. Cap_SimulatorFeatures = ""
  485. Cap_SetDisplayName = ""
  486. Cap_StartGroupProposal = ""
  487. Cap_TextureStats = ""
  488. Cap_UntrustedSimulatorMessage = ""
  489. Cap_UpdateAgentInformation = ""
  490. Cap_UpdateAgentLanguage = ""
  491. Cap_UpdateGestureAgentInventory = ""
  492. Cap_UpdateNotecardAgentInventory = "localhost"
  493. Cap_UpdateScriptAgent = "localhost"
  494. Cap_UpdateGestureTaskInventory = ""
  495. Cap_UpdateNotecardTaskInventory = "localhost"
  496. Cap_UpdateScriptTask = "localhost"
  497. Cap_UploadBakedTexture = "localhost"
  498. Cap_UploadObjectAsset = "localhost"
  499. Cap_ViewerStartAuction = ""
  500. Cap_ViewerStats = ""
  501. ; Capabilities for fetching inventory over HTTP rather than UDP
  502. ; FetchInventoryDescendents2 and FetchInventory2 are the ones used in the latest Linden Lab viewers (from some point in the v2 series and above)
  503. ; It appears that Linden Lab viewer 3.3.1 onwards will not work properly if FetchInventoryDescendents2 and FetchInventory2 are not enabled
  504. Cap_WebFetchInventoryDescendents = ""
  505. Cap_FetchInventoryDescendents2 = "localhost"
  506. Cap_FetchInventory2 = "localhost"
  507. [Chat]
  508. ; Controls whether the chat module is enabled. Default is true.
  509. enabled = true;
  510. ; Distance in meters that whispers should travel. Default is 10m
  511. whisper_distance = 10
  512. ; Distance in meters that ordinary chat should travel. Default is 20m
  513. say_distance = 20
  514. ; Distance in meters that shouts should travel. Default is 100m
  515. shout_distance = 100
  516. [EntityTransfer]
  517. ; The maximum distance in regions that an agent is allowed to teleport along the x or y axis
  518. ; This is set to 4095 because current viewers can't handle teleports that are greater than this distance
  519. max_distance = 4095
  520. ; Minimum user level required for HyperGrid teleports
  521. LevelHGTeleport = 0
  522. [Messaging]
  523. ; Control which region module is used for instant messaging.
  524. ; Default is InstantMessageModule (this is the name of the core IM module as well as the setting)
  525. InstantMessageModule = InstantMessageModule
  526. ; MessageTransferModule = MessageTransferModule
  527. ; OfflineMessageModule = OfflineMessageModule
  528. ; OfflineMessageURL = http://yourserver/Offline.php
  529. ; MuteListModule = MuteListModule
  530. ; MuteListURL = http://yourserver/Mute.php
  531. ; Control whether group messages are forwarded to offline users. Default is true.
  532. ; ForwardOfflineGroupMessages = true
  533. [Inventory]
  534. ; Control whether multiple objects sent to inventory should be coaleseced into a single item
  535. ; There are still some issues with coalescence, including the fact that rotation is not restored
  536. ; and some assets may be missing from archive files.
  537. CoalesceMultipleObjectsToInventory = true
  538. [Appearance]
  539. ; Persist avatar baked textures
  540. ; Persisting baked textures can speed up login and region border
  541. ; crossings especially with large numbers of users, though it
  542. ; will store potentially large numbers of textures in your asset
  543. ; database
  544. PersistBakedTextures = false
  545. ; Control the delay before appearance is sent to other avatars and
  546. ; saved in the avatar service. Attempts to limit the impact caused
  547. ; by the very chatty dialog that sets appearance when an avatar
  548. ; logs in or teleports into a region; values are in seconds
  549. DelayBeforeAppearanceSave = 5
  550. DelayBeforeAppearanceSend = 2
  551. ; If true, avatar appearance information is resent to other avatars in the simulator every 60 seconds.
  552. ; This may help with some situations where avatars are persistently grey, though it will not help
  553. ; in other situations (e.g. appearance baking failures where the avatar only appears as a cloud to others).
  554. ResendAppearanceUpdates = true
  555. [Attachments]
  556. ; Controls whether avatar attachments are enabled.
  557. ; Defaults to true - only set to false for debugging purposes
  558. Enabled = true
  559. [Mesh]
  560. ; enable / disable Collada mesh support
  561. ; default is true
  562. AllowMeshUpload = true
  563. ; if you use Meshmerizer and want collisions for meshies, setting this to true
  564. ; will cause OpenSim to attempt to decode meshies assets, extract the physics
  565. ; mesh, and use it for collisions.
  566. UseMeshiesPhysicsMesh = true
  567. ; Minimum user level required to upload meshes
  568. ;LevelUpload = 0
  569. [Textures]
  570. ; If true, textures generated dynamically (i.e. through osSetDynamicTextureData() and similar OSSL functions) are reused where possible
  571. ; Chiefly, reuse occurs if a texture has already been generated with identical data and settings, and that texture contains no dynamic components
  572. ; (e.g. images pulled from an external HTTP address).
  573. ; Reusing previously generated textures results in a much faster update on the viewer but may cause issues if the viewer didn't receive all resolutions of the texture.
  574. ; Currently, it will also increase asset cache use since temporary dynamic textures are no longer deleted.
  575. ; Hence, currently considered experimental.
  576. ; Default is false.
  577. ReuseDynamicTextures = false
  578. ; If true, then textures generated dynamically that have a low data size relative to their pixel size are not reused
  579. ; This is to workaround an apparent LL 3.3.4 and earlier viewer bug where such textures are not redisplayed properly when pulled from the viewer cache.
  580. ; Only set this to true if you are sure that all the viewers using your simulator will not suffer from this problem.
  581. ; This setting only has an affect is ReuseDynamicTextures = true
  582. ; Default is false
  583. ReuseDynamicLowDataTextures = false
  584. [ODEPhysicsSettings]
  585. ; ##
  586. ; ## Physics stats settings
  587. ;
  588. ; If collect_stats is enabled, then extra stat information is collected which is accessible via the MonitorModule
  589. ; (see http://opensimulator.org/wiki/Monitoring_Module for more details).
  590. collect_stats = false
  591. ; ##
  592. ; ## Physics logging settings - logfiles are saved to *.DIF files
  593. ; ##
  594. ; default is false
  595. ;physics_logging = true
  596. ;; every n simulation iterations, the physics snapshot file is updated
  597. ;physics_logging_interval = 50
  598. ;; append to existing physics logfile, or overwrite existing logfiles?
  599. ;physics_logging_append_existing_logfile = true
  600. ;##
  601. ;## World Settings
  602. ;##
  603. ;Gravity. Feel like falling up? change world_gravityz to 9.8 instead of -9.8. m/s
  604. world_gravityx = 0
  605. world_gravityy = 0
  606. world_gravityz = -9.8
  607. ; Terminal velocity of a falling avatar
  608. ; This is the same http://en.wikipedia.org/wiki/Terminal_velocity#Examples
  609. ; Max value is 255, min value is 0
  610. avatar_terminal_velocity = 54
  611. ; World Step size. (warning these are dangerous. Changing these will probably cause your scene to explode dramatically)
  612. ; reference: fps = (0.089/ODE_STEPSIZE) * 1000;
  613. world_stepsize = 0.0178
  614. world_internal_steps_without_collisions = 10
  615. ;World Space settings. Affects memory consumption vs Collider CPU time for avatar and physical prim
  616. world_hashspace_size_low = -4
  617. world_hashSpace_size_high = 128
  618. ;Dynamic space settings Affects memory consumption vs Collider CPU time for static prim
  619. meters_in_small_space = 29.9
  620. small_hashspace_size_low = -4
  621. small_hashspace_size_high = 66
  622. ; ##
  623. ; ## Contact properties. (the stuff that happens when things come in contact with each other)
  624. ; ##
  625. ; surface layer around geometries other geometries can sink into before generating a contact
  626. world_contact_surface_layer = 0.001
  627. ; Filtering collisions helps keep things stable physics wise, but sometimes
  628. ; it can be overzealous. If you notice bouncing, chances are it's that.
  629. filter_collisions = false
  630. ; Non Moving Terrain Contact (avatar isn't moving)
  631. nm_terraincontact_friction = 255.0
  632. nm_terraincontact_bounce = 0.1
  633. nm_terraincontact_erp = 0.1025
  634. ; Moving Terrain Contact (avatar is moving)
  635. m_terraincontact_friction = 75.0
  636. m_terraincontact_bounce = 0.05
  637. m_terrainContact_erp = 0.05025
  638. ; Moving Avatar to object Contact
  639. m_avatarobjectcontact_friction = 75.0
  640. m_avatarobjectcontact_bounce = 0.1
  641. ; Object to Object Contact and Non-Moving Avatar to object
  642. objectcontact_friction = 250.0
  643. objectcontact_bounce = 0.2
  644. ; ##
  645. ; ## Avatar Control
  646. ; ##
  647. ; PID Controller Settings. These affect the math that causes the avatar to reach the
  648. ; desired velocity
  649. ; See http://en.wikipedia.org/wiki/PID_controller
  650. av_pid_derivative_linux = 2200.0
  651. av_pid_proportional_linux = 900.0;
  652. av_pid_derivative_win = 2200.0
  653. av_pid_proportional_win = 900.0;
  654. ;girth of the avatar. Adds radius to the height also
  655. av_capsule_radius = 0.37
  656. ; Max force permissible to use to keep the avatar standing up straight
  657. av_capsule_standup_tensor_win = 550000
  658. av_capsule_standup_tensor_linux = 550000
  659. ; specifies if the capsule should be tilted (=true; old compatibility mode)
  660. ; or straight up-and-down (=false; better and more consistent physics behavior)
  661. av_capsule_tilted = false
  662. ; used to calculate mass of avatar.
  663. ; float AVvolume = (float) (Math.PI*Math.Pow(CAPSULE_RADIUS, 2)*CAPSULE_LENGTH);
  664. ; av_density * AVvolume;
  665. av_density = 80
  666. ; use this value to cut 52% of the height the sim gives us
  667. ; Currently unused
  668. ; av_height_fudge_factor = 0.52
  669. ; Movement. Smaller is faster.
  670. ; speed of movement with Always Run off
  671. av_movement_divisor_walk = 1.3
  672. ; speed of movement with Always Run on
  673. av_movement_divisor_run = 0.8
  674. ; When the avatar flies, it will be moved up by this amount off the ground (in meters)
  675. minimum_ground_flight_offset = 3.0
  676. ; Plant avatar. This reduces the effect of physical contacts with the avatar.
  677. ; If you have a group of unruly and rude visitors that bump each other, turn this on to make that less attractive.
  678. ; The avatar still allows a small movement based on the PID settings above. Stronger PID settings AND this active
  679. ; will lock the avatar in place
  680. av_planted = false
  681. ; No Avatar Avatar Collissions. This causes avatar to be able to walk through each other as if they're ghosts but still interact with the environment
  682. av_av_collisions_off = false
  683. ; ##
  684. ; ## Object options
  685. ; ##
  686. ; used in the mass calculation.
  687. geometry_default_density = 10.000006836
  688. ; amount of ODE steps where object is non moving for ODE to automatically put it to sleep
  689. body_frames_auto_disable = 20
  690. ; used to control llMove2Target
  691. body_pid_derivative = 35
  692. body_pid_gain = 25
  693. ; maximum number of contact points to generate per collision
  694. contacts_per_collision = 80
  695. ; amount of time a geom/body will try to cross a region border before it gets disabled
  696. geom_crossing_failures_before_outofbounds = 5
  697. ; start throttling the object updates if object comes in contact with 3 or more other objects
  698. geom_contactpoints_start_throttling = 3
  699. ; send 1 update for every x updates below when throttled
  700. geom_updates_before_throttled_update = 15
  701. ; Used for llSetStatus. How rigid the object rotation is held on the axis specified
  702. body_motor_joint_maxforce_tensor_linux = 5
  703. body_motor_joint_maxforce_tensor_win = 5
  704. ; Maximum mass an object can be before it is clamped
  705. maximum_mass_object = 10000.01
  706. ; ##
  707. ; ## Sculpted Prim settings
  708. ; ##
  709. ; Do we want to mesh sculpted prim to collide like they look?
  710. mesh_sculpted_prim = true
  711. ; number^2 non-physical level of detail of the sculpt texture. 32x32 - 1024 verticies
  712. mesh_lod = 32
  713. ; number^2 physical level of detail of the sculpt texture. 16x16 - 256 verticies
  714. mesh_physical_lod = 16
  715. ; ##
  716. ; ## Joint support
  717. ; ##
  718. ; if you would like physics joints to be enabled through a special naming convention in the client, set this to true.
  719. ; (see NINJA Physics documentation, http://opensimulator.org/wiki/NINJA_Physics)
  720. ; default is false
  721. ;use_NINJA_physics_joints = true
  722. ; ##
  723. ; ## additional meshing options
  724. ; ##
  725. ; physical collision mesh proxies are normally created for complex prim shapes, and collisions for simple boxes and
  726. ; spheres are computed algorithmically. If you would rather have mesh proxies for simple prims, you can set this to
  727. ; true. Note that this will increase memory usage and region startup time. Default is false.
  728. ;force_simple_prim_meshing = true
  729. [BulletSim]
  730. ; World parameters
  731. DefaultFriction = 0.50
  732. DefaultDensity = 10.000006836
  733. DefaultRestitution = 0.0
  734. Gravity = -9.80665
  735. TerrainFriction = 0.50
  736. TerrainHitFriction = 0.8
  737. TerrainRestitution = 0
  738. AvatarFriction = 0.2
  739. AvatarRestitution = 0.0
  740. AvatarDensity = 60.0
  741. AvatarCapsuleRadius = 0.37
  742. AvatarCapsuleHeight = 1.5
  743. AvatarContactProcessingThreshold = 0.1
  744. MaxObjectMass = 10000.01
  745. ; Dynamic parameters
  746. LinearDamping = 0.0
  747. AngularDamping = 0.0
  748. DeactivationTime = 0.2
  749. LinearSleepingThreshold = 0.8
  750. AngularSleepingThreshold = 1.0
  751. CcdMotionThreshold = 0.0
  752. CcdSweptSphereRadius = 0.0
  753. ContactProcessingThreshold = 0.1
  754. ; If setting a pool size, also disable dynamic allocation (default pool size is 4096 with dynamic alloc)
  755. MaxPersistantManifoldPoolSize = 0
  756. ShouldDisableContactPoolDynamicAllocation = False
  757. ShouldForceUpdateAllAabbs = False
  758. ShouldRandomizeSolverOrder = True
  759. ShouldSplitSimulationIslands = True
  760. ShouldEnableFrictionCaching = False
  761. NumberOfSolverIterations = 0
  762. ; Linkset constraint parameters
  763. LinkConstraintUseFrameOffset = False
  764. LinkConstraintEnableTransMotor = True
  765. LinkConstraintTransMotorMaxVel = 5.0
  766. LinkConstraintTransMotorMaxForce = 0.1
  767. ; Whether to mesh sculpties
  768. MeshSculptedPrim = true
  769. ; If 'true', force simple prims (box and sphere) to be meshed
  770. ForceSimplePrimMeshing = false
  771. ; level of detail for physical meshes. 32,16,8 or 4 with 32 being full detail
  772. MeshLevelOfDetail = 8
  773. ; if mesh size is > threshold meters, we need to add more detail because people will notice
  774. MeshLevelOfDetailMegaPrimThreshold = 10
  775. MeshLevelOfDetailMegaPrim = 16
  776. ; number^2 non-physical level of detail of the sculpt texture. 32x32 - 1024 verticies
  777. SculptLevelOfDetail = 32
  778. ; Bullet step parameters
  779. MaxSubSteps = 10
  780. FixedTimeStep = .01667
  781. MaxCollisionsPerFrame = 2048
  782. MaxUpdatesPerFrame = 8192
  783. ; Detailed physics debug logging
  784. PhysicsLoggingEnabled = False
  785. PhysicsLoggingDir = "."
  786. VehicleLoggingEnabled = False
  787. [RemoteAdmin]
  788. enabled = false
  789. ; Set this to a nonzero value to have remote admin use a different port
  790. port = 0
  791. ; Set this to the ip address that you want the admin server to bind to
  792. bind_ip_address = "0.0.0.0"
  793. ; This password is required to make any XMLRPC call (should be set as the "password" parameter)
  794. access_password = unknown
  795. ; List the IP addresses allowed to call RemoteAdmin
  796. ; If access_ip_addresses isn't set, then all IP addresses can access RemoteAdmin.
  797. ; access_ip_addresses = 0.0.0.0, 0.0.0.0 ...
  798. ; access_ip_addresses =
  799. ; set this variable to true if you want the create_region XmlRpc
  800. ; call to unconditionally enable voice on all parcels for a newly
  801. ; created region [default: false]
  802. create_region_enable_voice = false
  803. ; set this variable to false if you want the create_region XmlRpc
  804. ; call to create all regions as private per default (can be
  805. ; overridden in the XmlRpc call) [default: true]
  806. create_region_public = false
  807. ; the create_region XmlRpc call uses region_file_template to generate
  808. ; the file name of newly create regions (if they are created
  809. ; persistent). the parameter available are:
  810. ; {0} - X location
  811. ; {1} - Y location
  812. ; {2} - region UUID
  813. ; {3} - region port
  814. ; {4} - region name with " ", ":", "/" mapped to "_"
  815. region_file_template = "{0}x{1}-{2}.ini"
  816. ; we can limit the number of regions that XmlRpcCreateRegion will
  817. ; allow by setting this to a positive, non-0 number: as long as the
  818. ; number of regions is below region_limits, XmlRpcCreateRegion will
  819. ; succeed. setting region_limit to 0 disables the check.
  820. ; default is 0
  821. ;region_limit = 0
  822. ; enable only those methods you deem to be appropriate using a | delimited whitelist
  823. ; for example, enabled_methods = admin_broadcast|admin_region_query|admin_save_oar|admin_save_xml
  824. ; if this parameter is not specified but enabled = true, all methods will be available
  825. enabled_methods = all
  826. ; specify the default appearance for an avatar created through the remote admin interface
  827. ; This will only take effect is the file specified by the default_appearance setting below exists
  828. ;default_male = Default Male
  829. ;default_female = Default Female
  830. ; update appearance copies inventory items and wearables of default avatars. if this value is false
  831. ; (default), just worn assets are copied to the Clothes folder; if true, all Clothes and Bodyparts
  832. ; subfolders are copied. the receiver will wear the same items the default avatar did wear.
  833. ;copy_folders = false
  834. ; path to default appearance XML file that specifies the look of the default avatars
  835. ;default_appearance = default_appearance.xml
  836. ; RestPlugins are not currently operational.
  837. ;[RestPlugins]
  838. ; ; Change this to true to enable REST Plugins. This must be true if you wish to use
  839. ; ; REST Region or REST Asset and Inventory Plugins
  840. ; enabled = false
  841. ; god_key = SECRET
  842. ; prefix = /admin
  843. ;[RestRegionPlugin]
  844. ; ; Change this to true to enable the REST Region Plugin
  845. ; enabled = false
  846. ;[RestHandler]
  847. ; ; Change this to true to enable the REST Asset and Inventory Plugin
  848. ; enabled = false
  849. ; authenticate = true
  850. ; secured = true
  851. ; extended-escape = true
  852. ; realm = OpenSim REST
  853. ; dump-asset = false
  854. ; path-fill = true
  855. ; dump-line-size = 32
  856. ; flush-on-error = true
  857. ; IRC bridge is experimental, so if it breaks... keep both parts... yada yada
  858. ; also, not good error detection when it fails
  859. [IRC]
  860. enabled = false; you need to set this to true otherwise it won't connect
  861. ;server = name.of.irc.server.on.the.net
  862. ;; user password - only use this if the server requires one
  863. ;password = mypass
  864. ;nick = OpenSimBotNameProbablyMakeThisShorter
  865. ;channel = #the_irc_channel_you_want_to_connect_to
  866. ;user = "USER OpenSimBot 8 * :I'm an OpenSim to IRC bot"
  867. ;port = 6667
  868. ;; channel to listen for configuration commands
  869. ;commands_enabled = false
  870. ;command_channel = 2777
  871. ;report_clients = true
  872. ;; relay private chat connections
  873. ;; relay_private_channels = true: will relay IRC chat from/to private in-world channels
  874. ;; relay_private_channel_out -- channel to send messages out to the IRC bridge
  875. ;; relay_private_channel_in -- channel to receive message from the IRC bridge
  876. ;; relay_chat = false: IRC bridge will not relay normal chat
  877. ;; access_password -- simple security device
  878. ;;
  879. ;; so, to just relay chat from an IRC channel to in-world region and vice versa:
  880. ;;
  881. ;; relay_private_channels = false
  882. ;; relay_chat = true
  883. ;;
  884. ;; to relay chat only to/from private in-world channels:
  885. ;;
  886. ;; relay_chat = false
  887. ;; relay_private_channels = true
  888. ;; relay_private_channel_in = 2226
  889. ;; relay_private_channel_out = 2225
  890. ;;
  891. ;; in this example, all chat coming in from IRC will be send out via
  892. ;; in-world channel 2226, and all chat from in-world channel 2225 will
  893. ;; be relayed to the IRC channel.
  894. ;;
  895. ;relay_private_channels = false
  896. ;relay_private_channel_in = 2226
  897. ;relay_private_channel_out = 2225
  898. ;relay_chat = true
  899. ;access_password = foobar
  900. ;;fallback_region = name of "default" region
  901. ;;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message
  902. ;; must start with "PRIVMSG {0} : " or irc server will get upset
  903. ;;for <bot>:<user in region> :<message>
  904. ;;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}"
  905. ;;for <bot>:<message> - <user of region> :
  906. ;msgformat = "PRIVMSG {0} : {3} - {1} of {2}"
  907. ;;for <bot>:<message> - from <user> :
  908. ;;msgformat = "PRIVMSG {0} : {3} - from {1}"
  909. ;; exclude_list allows you to stop the IRC connector from announcing the
  910. ;;arrival and departure of certain users. For example: admins, bots.
  911. ;exclude_list=User 1,User 2,User 3
  912. ; The following settings control the progression of daytime
  913. ; in the Sim. The defaults are the same as the commented out settings
  914. [Sun]
  915. ; number of wall clock hours for an opensim day. 24.0 would mean realtime
  916. ;day_length = 4
  917. ; Year length in days
  918. ;year_length = 60
  919. ; Day to Night Ratio
  920. ;day_night_offset = 0.45
  921. ; send a Sun update every update_interval # of frames. A lower number will
  922. ; make for smoother sun transition at the cost of network
  923. ;update_interval = 100
  924. [Wind]
  925. ; Enables the wind module. Default is true
  926. enabled = true
  927. ; How often should wind be updated, as a function of world frames. Approximately 50 frames a second
  928. wind_update_rate = 150
  929. ; The Default Wind Plugin to load
  930. wind_plugin = SimpleRandomWind
  931. ; These settings are specific to the ConfigurableWind plugin
  932. ; To use ConfigurableWind as the default, simply change wind_plugin to ConfigurableWind and uncomment the following.
  933. ; avg_strength = 5.0
  934. ; avg_direction = 0.0
  935. ; var_strength = 0.0
  936. ; var_direction = 0.0
  937. ; rate_change = 1.0
  938. ; This setting is specific to the SimpleRandomWind plugin
  939. ; Adjusts wind strength. 0.0 = no wind, 1.0 = normal wind. Default is 1.0
  940. strength = 1.0
  941. [Cloud]
  942. ; Enable this to generate classic particle clouds above the sim.
  943. ; default is disabled - turn it on here
  944. enabled = false
  945. ; Density of cloud cover 0.0 to 1.0 Defult 0.5
  946. density = 0.5
  947. ; update interval for the cloud cover data returned by llCloud().
  948. ; default is 1000
  949. cloud_update_rate = 1000
  950. [LightShare]
  951. ; This enables the transmission of Windlight scenes to supporting clients, such as the Meta7 viewer.
  952. ; It has no ill effect on viewers which do not support server-side windlight settings.
  953. enable_windlight = false
  954. [Trees]
  955. ; Enable this to allow the tree module to manage your sim trees, including growing, reproducing and dying
  956. ; default is false
  957. active_trees = false
  958. ; Density of tree population
  959. tree_density = 1000.0
  960. [VectorRender]
  961. ; the font to use for rendering text (default: Arial)
  962. ; font_name = "Arial"
  963. [LL-Functions]
  964. ; Set the following to true to allow administrator owned scripts to execute console commands
  965. ; currently unused
  966. ; AllowosConsoleCommand=false
  967. ; Are god functions such as llSetObjectPermMask() allowed? If true then gods and only gods have access to these functions.
  968. ; If false then gods cannot execute these functions either.
  969. AllowGodFunctions = false
  970. ; Maximum number of llListen events we allow over the entire region.
  971. ; Set this to 0 to have no limit imposed
  972. max_listens_per_region = 1000
  973. ; Maximum number of llListen events we allow per script
  974. ; Set this to 0 to have no limit imposed.
  975. max_listens_per_script = 64
  976. ; Maximum number of external urls that scripts can set up in this simulator (e.g. via llRequestURL())
  977. max_external_urls_per_simulator = 100
  978. [DataSnapshot]
  979. ; The following set of configs pertains to search.
  980. ; Set index_sims to true to enable search engines to index your searchable data
  981. ; If false, no data will be exposed, DataSnapshot module will be off, and you can ignore the rest of these search-related configs
  982. ; default is false
  983. index_sims = false
  984. ; The variable data_exposure controls what the regions expose:
  985. ; minimum: exposes only things explicitly marked for search
  986. ; all: exposes everything
  987. data_exposure = minimum
  988. ; If search is on, change this to your grid name; will be ignored for standalones
  989. gridname = "OSGrid"
  990. ; Period between data snapshots, in seconds. 20 minutes, for starters, so that you see the initial changes fast.
  991. ; Later, you may want to increase this to 3600 (1 hour) or more
  992. default_snapshot_period = 1200
  993. ; This will be created in bin, if it doesn't exist already. It will hold the data snapshots.
  994. snapshot_cache_directory = "DataSnapshot"
  995. ; This semicolon-separated string serves to notify specific data services about the existence
  996. ; of this sim. Uncomment if you want to index your data with this and/or other search providers.
  997. ;data_services="http://metaverseink.com/cgi-bin/register.py"
  998. [Economy]
  999. ; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only -
  1000. ; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
  1001. ; There is no intention to implement anything further in core OpenSimulator.
  1002. ; This functionality has to be provided by third party modules.
  1003. ;; Enables selling things for $0. Default is true.
  1004. SellEnabled = true
  1005. ;; Money Unit fee to upload textures, animations etc. Default is 0.
  1006. PriceUpload = 0
  1007. ;; Money Unit fee to create groups. Default is 0.
  1008. PriceGroupCreate = 0
  1009. ; We don't really know what the rest of these values do. These get sent to the client
  1010. ; These taken from Agni at a Public Telehub. Change at your own risk.
  1011. ObjectCount = 0
  1012. PriceEnergyUnit = 100
  1013. PriceObjectClaim = 10
  1014. PricePublicObjectDecay = 4
  1015. PricePublicObjectDelete = 4
  1016. PriceParcelClaim = 1
  1017. PriceParcelClaimFactor = 1
  1018. PriceRentLight = 5
  1019. TeleportMinPrice = 2
  1020. TeleportPriceExponent = 2
  1021. EnergyEfficiency = 1
  1022. PriceObjectRent = 1
  1023. PriceObjectScaleFactor = 10
  1024. PriceParcelRent = 1
  1025. [XEngine]
  1026. ; Enable this engine in this OpenSim instance
  1027. Enabled = true
  1028. ; How many threads to keep alive even if nothing is happening
  1029. MinThreads = 2
  1030. ; How many threads to start at maximum load
  1031. MaxThreads = 100
  1032. ; Time a thread must be idle (in seconds) before it dies
  1033. IdleTimeout = 60
  1034. ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
  1035. Priority = "BelowNormal"
  1036. ; Maximum number of events to queue for a script (excluding timers)
  1037. MaxScriptEventQueue = 300
  1038. ; Stack size per thread created
  1039. ThreadStackSize = 262144
  1040. ; Set this to true (the default) to load each script into a separate
  1041. ; AppDomain. Setting this to false will load all script assemblies into the
  1042. ; current AppDomain, which will reduce the per-script overhead at the
  1043. ; expense of reduced security and the inability to garbage collect the
  1044. ; script assemblies
  1045. AppDomainLoading = true
  1046. ; Rate to poll for asynchronous command replies (ms)
  1047. ; currently unused
  1048. ;AsyncLLCommandLoopms = 50
  1049. ; Save the source of all compiled scripts
  1050. WriteScriptSourceToDebugFile = false
  1051. ; Default language for scripts
  1052. DefaultCompileLanguage = lsl
  1053. ; List of allowed languages (lsl,vb,js,cs)
  1054. ; AllowedCompilers=lsl,cs,js,vb.
  1055. ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
  1056. AllowedCompilers=lsl
  1057. ; Compile debug info (line numbers) into the script assemblies
  1058. CompileWithDebugInformation = true
  1059. ; Allow the user of mod* functions. This allows a script to pass messages
  1060. ; to a region module via the modSendCommand() function
  1061. ; Default is false
  1062. AllowMODFunctions = false
  1063. ; Allow the use of os* functions (some are dangerous)
  1064. AllowOSFunctions = false
  1065. ; Allow the user of LightShare functions
  1066. AllowLightShareFunctions = false
  1067. ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
  1068. OSFunctionThreatLevel = VeryLow
  1069. ; OS Functions enable/disable
  1070. ; For each function, you can add one line, as shown
  1071. ; The default for all functions allows them if below threat level
  1072. ; true allows the use of the function unconditionally
  1073. ; Allow_osSetRegionWaterHeight = true
  1074. ; false disables the function completely
  1075. ; Allow_osSetRegionWaterHeight = false
  1076. ; Comma separated list of UUIDS allows the function for that list of UUIDS
  1077. ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
  1078. ; Comma separated list of owner classes that allow the function for a particular class of owners. Choices are
  1079. ; - PARCEL_GROUP_MEMBER: allow if objectgroup is the same group as the parcel
  1080. ; - PARCEL_OWNER: allow if the objectowner is parcelowner
  1081. ; - ESTATE_MANAGER: allow if the object owner is a estate manager
  1082. ; - ESTATE_OWNER: allow if objectowner is estateowner
  1083. ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb, PARCEL_OWNER, ESTATE_OWNER>, ...
  1084. ; You can also use script creators as the uuid
  1085. ; Creators_osSetRegionWaterHeight = <uuid>, ...
  1086. ; If both Allow_ and Creators_ are given, effective permissions
  1087. ; are the union of the two.
  1088. ; Interval (s) between background save of script states
  1089. SaveInterval = 120
  1090. ; Interval (s) between maintenance runs (0 = disable)
  1091. MaintenanceInterval = 10
  1092. ; Time a script can spend in an event handler before it is interrupted
  1093. EventLimit = 30
  1094. ; If a script overruns it's event limit, kill the script?
  1095. KillTimedOutScripts = false
  1096. ; Sets the multiplier for the scripting delays
  1097. ScriptDelayFactor = 1.0
  1098. ; The factor the 10 m distances llimits are multiplied by
  1099. ScriptDistanceLimitFactor = 1.0
  1100. ; Maximum length of notecard line read
  1101. ; Increasing this to large values potentially opens
  1102. ; up the system to malicious scripters
  1103. ; NotecardLineReadCharsMax = 255
  1104. ; Sensor settings
  1105. SensorMaxRange = 96.0
  1106. SensorMaxResults = 16
  1107. ; Allow for llCreateLink and llBreakLink to work without asking for permission
  1108. ; only enable this in a trusted environment otherwise you may be subject to hijacking
  1109. ; AutomaticLinkPermission = false
  1110. ; Disable underground movement of prims (default true); set to
  1111. ; false to allow script controlled underground positioning of
  1112. ; prims
  1113. ; DisableUndergroundMovement = true
  1114. ;; Path to script assemblies
  1115. ; ScriptEnginesPath = "ScriptEngines"
  1116. ; Controls whether previously compiled scripts DLLs are deleted on sim restart. If you set this to false
  1117. ; then startup will be considerably faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
  1118. ; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
  1119. ; by scripts have changed.
  1120. ; DeleteScriptsOnStartup = false
  1121. [OpenGridProtocol]
  1122. ;These are the settings for the Open Grid Protocol.. the Agent Domain, Region Domain, you know..
  1123. ;On/true or Off/false
  1124. ogp_enabled=false
  1125. ;Name Prefix/suffix when using OGP
  1126. ogp_firstname_prefix=""
  1127. ogp_lastname_suffix="_EXTERNAL"
  1128. [Concierge]
  1129. ; Enable concierge module
  1130. ; Default is false
  1131. enabled = false
  1132. ; name of the concierge
  1133. whoami = "jeeves"
  1134. ; password for updating the welcome message templates via XmlRpc
  1135. password = SECRET
  1136. ; regex specifying for which regions concierge service is desired; if
  1137. ; empty, then for all
  1138. regions = "^MeetingSpace-"
  1139. ; for each region that matches the regions regexp you can provide
  1140. ; (optionally) a welcome template using format substitution:
  1141. ; {0} is replaced with the name of the avatar entering the region
  1142. ; {1} is replaced with the name of the region
  1143. ; {2} is replaced with the name of the concierge (whoami variable above)
  1144. welcomes = /path/to/welcome/template/directory
  1145. ; Concierge can send attendee lists to an event broker whenever an
  1146. ; avatar enters or leaves a concierged region. the URL is subject
  1147. ; to format substitution:
  1148. ; {0} is replaced with the region's name
  1149. ; {1} is replaced with the region's UUID
  1150. broker = "http://broker.place.com/{1}"
  1151. [MRM]
  1152. ; Enables the Mini Region Modules Script Engine.
  1153. ; default is false
  1154. Enabled = false
  1155. ; Runs MRM in a Security Sandbox
  1156. ; WARNING: DISABLING IS A SECURITY RISK.
  1157. Sandboxed = true
  1158. ; The level sandbox to use, adjust at your OWN RISK.
  1159. ; Valid values are:
  1160. ; * FullTrust
  1161. ; * SkipVerification
  1162. ; * Execution
  1163. ; * Nothing
  1164. ; * LocalIntranet
  1165. ; * Internet
  1166. ; * Everything
  1167. SandboxLevel = "Internet"
  1168. ; Only allow Region Owners to run MRMs
  1169. ; May represent a security risk if you disable this.
  1170. OwnerOnly = true
  1171. [Hypergrid]
  1172. ; Keep it false for now. Making it true requires the use of a special client in order to access inventory
  1173. safemode = false
  1174. [VivoxVoice]
  1175. ; The VivoxVoice module will allow you to provide voice on your
  1176. ; region(s). It uses the same voice technology as the LL grid and
  1177. ; works with recent LL clients (we have tested 1.22.9.110075, so
  1178. ; anything later ought to be fine as well).
  1179. ;
  1180. ; For this to work you need to obtain an admin account from Vivox
  1181. ; that allows you to create voice accounts and region channels.
  1182. enabled = false
  1183. ; vivox voice server
  1184. vivox_server = www.foobar.vivox.com
  1185. ; vivox SIP URI
  1186. vivox_sip_uri = foobar.vivox.com
  1187. ; vivox admin user name
  1188. vivox_admin_user = DeepThroat
  1189. ; vivox admin password
  1190. vivox_admin_password = VoiceG4te
  1191. ; channel type: "channel" or "positional"
  1192. ; - positional: spatial sound (default)
  1193. ; - channel: normal "conference call", no spatial sound
  1194. ;vivox_channel_type = positional
  1195. ; channel characteristics (unless you know what you are doing, i'd
  1196. ; leave them as they are --- now you WILL muck around with them,
  1197. ; huh? sigh)
  1198. ; channel distance model:
  1199. ; 0 - no attenuation
  1200. ; 1 - inverse distance attenuation
  1201. ; 2 - linear attenuation (default)
  1202. ; 3 - exponential attenuation
  1203. ;vivox_channel_distance_model = 2
  1204. ; channel mode:
  1205. ; - "open" (default)
  1206. ; - "lecture"
  1207. ; - "presentation"
  1208. ; - "auditorium"
  1209. ;vivox_channel_mode = "open"
  1210. ; channel roll off: rate of attenuation
  1211. ; - a value between 1.0 and 4.0, default is 2.0
  1212. ;vivox_channel_roll_off = 2.0
  1213. ; channel max range: distance at which channel is silent
  1214. ; - a value between 0 and 160, default is 80
  1215. ;vivox_channel_max_range = 80
  1216. ; channel clamping distance: distance before attenuation applies
  1217. ; - a value between 0 and 160, default is 10
  1218. ;vivox_channel_clamping_distance = 10
  1219. [Groups]
  1220. Enabled = false
  1221. ; This is the current groups stub in Region.CoreModules.Avatar.Groups. All the other settings below only really
  1222. ; apply to the Flotsam/SimianGrid GroupsModule
  1223. Module = Default
  1224. ; This module can use a PHP XmlRpc server from the Flotsam project at http://code.google.com/p/flotsam/
  1225. ; or from the SimianGrid project at http://code.google.com/p/openmetaverse
  1226. ;Module = GroupsModule
  1227. ; Enable Group Notices
  1228. ;NoticesEnabled = true
  1229. ; This makes the Groups modules very chatty on the console.
  1230. DebugEnabled = false
  1231. ; Groups data is cached for this number of seconds before another request is made to the groups service
  1232. ; Set to 0 to disable the cache.
  1233. ; Default is 30 seconds
  1234. GroupsCacheTimeout = 30
  1235. ; Specify which messaging module to use for groups messaging and if it's enabled
  1236. MessagingModule = GroupsMessagingModule
  1237. ;MessagingEnabled = true
  1238. ; Experimental option to only message cached online users rather than all users
  1239. ; Should make large group with few online members messaging faster, as the expense of more calls to ROBUST presence service
  1240. ; This currently only applies to the Flotsam XmlRpc backend
  1241. MessageOnlineUsersOnly = false
  1242. ; Service connectors to the Groups Service. Select one depending on whether you're using a Flotsam XmlRpc backend or a SimianGrid backend
  1243. ; SimianGrid Service for Groups
  1244. ;ServicesConnectorModule = SimianGroupsServicesConnector
  1245. ;GroupsServerURI = http://mygridserver.com:82/Grid/
  1246. ; Flotsam XmlRpc Service for Groups
  1247. ;ServicesConnectorModule = XmlRpcGroupsServicesConnector
  1248. ;GroupsServerURI = http://yourxmlrpcserver.com/xmlrpc.php
  1249. ; XmlRpc Security settings. These must match those set on your backend groups service if the service is using these keys
  1250. ;XmlRpcServiceReadKey = 1234
  1251. ;XmlRpcServiceWriteKey = 1234
  1252. ; Disables HTTP Keep-Alive for XmlRpcGroupsServicesConnector HTTP Requests,
  1253. ; this is a work around fora problem discovered on some Windows based region servers.
  1254. ; Only disable keep alive if you see a large number (dozens) of the following Exceptions:
  1255. ; System.Net.WebException: The request was aborted: The request was canceled.
  1256. ; XmlRpcDisableKeepAlive = false
  1257. ; Minimum user level required to create groups
  1258. ;LevelGroupCreate = 0
  1259. [PacketPool]
  1260. ;RecyclePackets = true;
  1261. ;RecycleDataBlocks = true;
  1262. ; If true, then the basic packet objects used to receive data are also recycled, not just the LLUDP packets.
  1263. ; This reduces data churn
  1264. ; This setting is currently experimental and defaults to false.
  1265. RecycleBaseUDPPackets = false;
  1266. [InterestManagement]
  1267. ; This section controls how state updates are prioritized for each client
  1268. ; Valid values are BestAvatarResponsiveness, Time, Distance,
  1269. ; SimpleAngularDistance, and FrontBack
  1270. UpdatePrioritizationScheme = BestAvatarResponsiveness
  1271. ReprioritizationEnabled = true
  1272. ReprioritizationInterval = 2000.0
  1273. RootReprioritizationDistance = 10.0
  1274. ChildReprioritizationDistance = 20.0
  1275. [Monitoring]
  1276. ; Enable region monitoring
  1277. ; If true, this will print out an error if more than a minute has passed since the last simulator frame
  1278. ; Also is another source of region statistics provided via the regionstats URL
  1279. Enabled = true
  1280. ; View region statistics via a web page
  1281. ; See http://opensimulator.org/wiki/FAQ#Region_Statistics_on_a_Web_Page
  1282. ; Use a web browser and type in the "Login URI" + "/SStats/"
  1283. ; For example- http://127.0.0.1:9000/SStats/
  1284. [WebStats]
  1285. ; enabled=false
  1286. [MediaOnAPrim]
  1287. ; Enable media on a prim facilities
  1288. Enabled = true;
  1289. [NPC]
  1290. ;; Enable Non Player Character (NPC) facilities
  1291. Enabled = false
  1292. [Terrain]
  1293. InitialTerrain = "pinhead-island"
  1294. ;;
  1295. ;; If you are using a simian grid frontend you can enable
  1296. ;; this module to upload tile images for the mapping fn
  1297. ;;
  1298. [SimianGridMaptiles]
  1299. Enabled = False
  1300. MaptileURL = "http://www.mygrid.com/Grid/"
  1301. RefreshTime = 3600
  1302. ;;
  1303. ;; JsonStore module provides structured store for scripts
  1304. ;;
  1305. [JsonStore]
  1306. Enabled = False
  1307. ;;
  1308. ;; These are defaults that are overwritten below in [Architecture].
  1309. ;; These defaults allow OpenSim to work out of the box with
  1310. ;; zero configuration
  1311. ;;
  1312. [AssetService]
  1313. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  1314. AssetLoaderArgs = "assets/AssetSets.xml"
  1315. ; Disable this to prevent the default asset set from being inserted into the
  1316. ; asset store each time the region starts
  1317. AssetLoaderEnabled = true
  1318. [GridService]
  1319. ;; default standalone, overridable in StandaloneCommon.ini
  1320. StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
  1321. [AutoBackupModule]
  1322. ;; default is module is disabled at the top level
  1323. AutoBackupModuleEnabled = false
  1324. [Sounds]
  1325. ;; {Module} {} {Implementation of ISoundModule to use.} {OpenSim.Region.CoreModules.dll:SoundModule}
  1326. Module = OpenSim.Region.CoreModules.dll:SoundModule
  1327. ;; {MaxDistance} {} {Cut-off distance at which sounds will not be sent to users} {100.0}
  1328. MaxDistance = 100.0
  1329. [Modules]
  1330. Include-modules = "addon-modules/*/config/*.ini"