aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-03-11 21:30:30 +0000
committerJustin Clarke Casey2009-03-11 21:30:30 +0000
commit6d5f79c29f8df86c0183fed3fe094cf80fddc182 (patch)
tree9e64438f2874a7cc9c0aecc0938d6a1988f1be93 /bin
parent* Reverted r8750 to do another round of debugging on mantis #3287 (diff)
downloadopensim-SC_OLD-6d5f79c29f8df86c0183fed3fe094cf80fddc182.zip
opensim-SC_OLD-6d5f79c29f8df86c0183fed3fe094cf80fddc182.tar.gz
opensim-SC_OLD-6d5f79c29f8df86c0183fed3fe094cf80fddc182.tar.bz2
opensim-SC_OLD-6d5f79c29f8df86c0183fed3fe094cf80fddc182.tar.xz
* Preliminary preview of a split of a split for OpenSim.ini.example into separate .ini.example files in a config/ directory
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.ini.example760
-rw-r--r--bin/config.preview.donotuseyet/README-IMPORTANT.TXT5
-rw-r--r--bin/config.preview.donotuseyet/admin/gridinfo.ini.example52
-rw-r--r--bin/config.preview.donotuseyet/admin/remoteadmin.ini.example34
-rw-r--r--bin/config.preview.donotuseyet/admin/rest.ini.example32
-rw-r--r--bin/config.preview.donotuseyet/opensim.ini.example329
-rw-r--r--bin/config.preview.donotuseyet/protocols/client/lindenlab.ini.example27
-rw-r--r--bin/config.preview.donotuseyet/protocols/grid/interregion.ini.example12
-rw-r--r--bin/config.preview.donotuseyet/protocols/intergrid/ogp.ini.example16
-rw-r--r--bin/config.preview.donotuseyet/region/physics/engines/ode.ini.example161
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/engines/dotnetengine.ini.example128
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example12
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example88
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/ll-functions.ini.example18
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/regionready.ini.example19
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/smtp.ini.example19
-rw-r--r--bin/config.preview.donotuseyet/region/user/chat/chat.ini.example20
-rw-r--r--bin/config.preview.donotuseyet/region/user/chat/irc.ini.example61
-rw-r--r--bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example12
-rw-r--r--bin/config.preview.donotuseyet/region/user/concierge.ini.example37
-rw-r--r--bin/config.preview.donotuseyet/region/user/economy.ini.example64
-rw-r--r--bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example23
-rw-r--r--bin/config.preview.donotuseyet/region/user/voice/voice.ini.example17
-rw-r--r--bin/config.preview.donotuseyet/region/world/contentmanagement/cms.ini.example11
-rw-r--r--bin/config.preview.donotuseyet/region/world/contentmanagement/datasnapshot.ini.example33
-rw-r--r--bin/config.preview.donotuseyet/region/world/contentmanagement/svn.ini.example17
-rw-r--r--bin/config.preview.donotuseyet/region/world/sun.ini.example20
-rw-r--r--bin/config.preview.donotuseyet/region/world/trees.ini.example15
28 files changed, 1283 insertions, 759 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index ef72dc4..51e737e 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -293,49 +293,6 @@ InterregionComms = "RESTComms"
293 dump_assets_to_file = false 293 dump_assets_to_file = false
294 294
295 295
296[Network]
297 http_listener_port = 9000
298 default_location_x = 1000
299 default_location_y = 1000
300
301 ; ssl config: Experimental! The auto https config only really works definately on windows XP now
302 ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below
303 ; you can use https on other platforms, but you'll need to configure the httpapi yourself for now
304 http_listener_ssl = false ; Also create a SSL server
305 http_listener_cn = "localhost" ; Use the cert with the common name
306 http_listener_sslport = 9001 ; Use this port for SSL connections
307 http_listener_ssl_cert = "" ; Currently unused, but will be used for OSHttpServer
308
309 ; Uncomment below to enable llRemoteData/remote channels
310 ; remoteDataPort = 20800
311
312 grid_server_url = "http://127.0.0.1:8001"
313 grid_send_key = "null"
314 grid_recv_key = "null"
315
316 user_server_url = "http://127.0.0.1:8002"
317 user_send_key = "null"
318 user_recv_key = "null"
319
320 asset_server_url = "http://127.0.0.1:8003"
321
322 inventory_server_url = "http://127.0.0.1:8004"
323
324 ; The MessagingServer is a companion of the UserServer. It uses
325 ; user_send_key and user_recv_key, too
326 messaging_server_url = "http://127.0.0.1:8006"
327
328 ; What is reported as the "X-Secondlife-Shard"
329 ; Defaults to the user server url if not set
330 ; The old default is "OpenSim", set here fro compatibility
331 shard = "OpenSim"
332
333 ; What is reported as the "User-Agent" when using llHTTPRequest
334 ; Defaults to not sent if not set here. See the notes section in the wiki at
335 ; http://wiki.secondlife.com/wiki/LlHTTPRequest for comments on adding
336 ; " (Mozilla Compatible)" to the text where there are problems with a web server
337 ;user_agent = "OpenSim LSL (Mozilla Compatible)"
338
339[ClientStack.LindenUDP] 296[ClientStack.LindenUDP]
340 ; This is the multiplier applied to all client throttles for outgoing UDP network data 297 ; This is the multiplier applied to all client throttles for outgoing UDP network data
341 ; If it is set to 1, then we obey the throttle settings as given to us by the client. If it is set to 3, for example, then we 298 ; If it is set to 1, then we obey the throttle settings as given to us by the client. If it is set to 3, for example, then we
@@ -354,471 +311,12 @@ InterregionComms = "RESTComms"
354 ; 311 ;
355 ; Pre r7113, this setting was not exposed but was effectively 8. You may want to try this if you encounter 312 ; Pre r7113, this setting was not exposed but was effectively 8. You may want to try this if you encounter
356 ; unexpected difficulties 313 ; unexpected difficulties
357 client_throttle_multiplier = 2; 314 client_throttle_multiplier = 2;
358
359
360[Chat]
361 ; Controls whether the chat module is enabled. Default is true.
362 enabled = true;
363
364 ; Distance in meters that whispers should travel. Default is 10m
365 whisper_distance = 10
366
367 ; Distance in meters that ordinary chat should travel. Default is 30m
368 say_distance = 30
369
370 ; Distance in meters that shouts should travel. Default is 100m
371 shout_distance = 100
372
373
374[Messaging]
375 ; Control which region module is used for instant messaging.
376 ; Default is InstantMessageModule (this is the name of the core IM module as well as the setting)
377 InstantMessageModule = InstantMessageModule
378
379
380[ODEPhysicsSettings]
381 ;##
382 ;## World Settings
383 ;##
384
385 ;Gravity. Feel like falling up? change world_gravityz to 9.8 instead of -9.8. m/s
386 world_gravityx = 0
387 world_gravityy = 0
388 world_gravityz = -9.8
389
390 ; World Step size. (warning these are dangerous. Changing these will probably cause your scene to explode dramatically)
391 ; reference: fps = (0.09375/ODE_STEPSIZE) * 1000;
392 world_stepsize = 0.020
393 world_internal_steps_without_collisions = 10
394
395 ;World Space settings. Affects memory consumption vs Collider CPU time for avatar and physical prim
396 world_hashspace_size_low = -4
397 world_hashSpace_size_high = 128
398
399 ;Dynamic space settings Affects memory consumption vs Collider CPU time for static prim
400 meters_in_small_space = 29.9
401 small_hashspace_size_low = -4
402 small_hashspace_size_high = 66
403
404 ; ##
405 ; ## Contact properties. (the stuff that happens when things come in contact with each other)
406 ; ##
407
408 ; surface layer around geometries other geometries can sink into before generating a contact
409 world_contact_surface_layer = 0.001
410
411 ; Filtering Collisions helps keep things stable physics wise, but sometimes
412 ; it can be over zealous. If you notice bouncing, chances are it's being just
413 ; that
414 filter_collisions = false
415
416 ; Non Moving Terrain Contact (avatar isn't moving)
417 nm_terraincontact_friction = 255.0
418 nm_terraincontact_bounce = 0.1
419 nm_terraincontact_erp = 0.1025
420
421 ; Moving Terrain Contact (avatar is moving)
422 m_terraincontact_friction = 75.0
423 m_terraincontact_bounce = 0.05
424 m_terrainContact_erp = 0.05025
425
426 ; Moving Avatar to object Contact
427 m_avatarobjectcontact_friction = 75.0
428 m_avatarobjectcontact_bounce = 0.1
429
430 ; Object to Object Contact and Non-Moving Avatar to object
431 objectcontact_friction = 250.0
432 objectcontact_bounce = 0.2
433
434 ; ##
435 ; ## Avatar Control
436 ; ##
437
438 ; PID Controller Settings. These affect the math that causes the avatar to reach the
439 ; desired velocity
440 ; See http://en.wikipedia.org/wiki/PID_controller
441
442 av_pid_derivative_linux = 2200.0
443 av_pid_proportional_linux = 900.0;
444
445 av_pid_derivative_win = 2200.0
446 av_pid_proportional_win = 900.0;
447
448 ;girth of the avatar. Adds radius to the height also
449 av_capsule_radius = 0.37
450
451 ; Max force permissible to use to keep the avatar standing up straight
452 av_capsule_standup_tensor_win = 550000
453 av_capsule_standup_tensor_linux = 550000
454
455 ; used to calculate mass of avatar.
456 ; float AVvolume = (float) (Math.PI*Math.Pow(CAPSULE_RADIUS, 2)*CAPSULE_LENGTH);
457 ; av_density * AVvolume;
458 av_density = 80
459
460 ; use this value to cut 52% of the height the sim gives us
461 av_height_fudge_factor = 0.52
462
463 ; Movement. Smaller is faster.
464
465 ; speed of movement with Always Run off
466 av_movement_divisor_walk = 1.3
467
468 ; speed of movement with Always Run on
469 av_movement_divisor_run = 0.8
470
471 ; When the avatar flies, it will be moved up by this amount off the ground (in meters)
472 minimum_ground_flight_offset = 3.0
473
474 ; ##
475 ; ## Object options
476 ; ##
477
478 ; used in the mass calculation.
479 geometry_default_density = 10.000006836
480
481 ; amount of ODE steps where object is non moving for ODE to automatically put it to sleep
482 body_frames_auto_disable = 20
483
484 ; used to control llMove2Target
485 body_pid_derivative = 35
486 body_pid_gain = 25
487
488 ; amount of time a geom/body will try to cross a region border before it gets disabled
489 geom_crossing_failures_before_outofbounds = 5
490
491 ; start throttling the object updates if object comes in contact with 3 or more other objects
492 geom_contactpoints_start_throttling = 3
493
494 ; send 1 update for every x updates below when throttled
495 geom_updates_before_throttled_update = 15
496
497 ; Used for llSetStatus. How rigid the object rotation is held on the axis specified
498 body_motor_joint_maxforce_tensor_linux = 5
499 body_motor_joint_maxforce_tensor_win = 5
500
501 ; ##
502 ; ## Sculpted Prim settings
503 ; ##
504
505 ; Do we want to mesh sculpted prim to collide like they look?
506 mesh_sculpted_prim = true
507
508 ; number^2 non-physical level of detail of the sculpt texture. 32x32 - 1024 verticies
509 mesh_lod = 32
510
511 ; number^2 physical level of detail of the sculpt texture. 16x16 - 256 verticies
512 mesh_physical_lod = 16
513
514 ; ##
515 ; ## Physics logging settings - logfiles are saved to *.DIF files
516 ; ##
517
518 ; default is false
519 ;physics_logging = true
520 ;; every n simulation iterations, the physics snapshot file is updated
521 ;physics_logging_interval = 50
522 ;; append to existing physics logfile, or overwrite existing logfiles?
523 ;physics_logging_append_existing_logfile = true
524
525 ; ##
526 ; ## Joint support
527 ; ##
528
529 ; if you would like physics joints to be enabled through a special naming convention in the client, set this to true.
530 ; (see NINJA Physics documentation, http://opensimulator.org/wiki/NINJA_Physics)
531 ; default is false
532 ;use_NINJA_physics_joints = true
533
534
535[RemoteAdmin]
536 enabled = false
537 access_password = unknown
538
539 ; the create_region XmlRpc call uses region_file_template to generate
540 ; the file name of newly create regions (if they are created
541 ; persistent). the parameter available are:
542 ; {0} - X location
543 ; {1} - Y location
544 ; {2} - region UUID
545 ; {3} - region port
546 ; {4} - region name with " ", ":", "/" mapped to "_"
547
548 region_file_template = "{0}x{1}-{2}.xml"
549
550 ; we can limit the number of regions that XmlRpcCreateRegion will
551 ; allow by setting this to a positive, non-0 number: as long as the
552 ; number of regions is below region_limits, XmlRpcCreateRegion will
553 ; succeed. setting region_limit to 0 disables the check.
554 ; default is 0
555 ;region_limit = 0
556
557 ; enable only those methods you deem to be appropriate using a | delimited whitelist
558 ; for example, enabled_methods = admin_broadcast|admin_region_query|admin_save_oar|admin_save_xml
559 ; if this parameter is not specified but enabled = true, all methods will be available
560 enabled_methods = all
561
562
563[RestPlugins]
564 ; Change this to true to enable REST Plugins. This must be true if you wish to use
565 ; REST Region or REST Asset and Inventory Plugins
566 enabled = false
567 god_key = SECRET
568 prefix = /admin
569
570
571[RestRegionPlugin]
572 ; Change this to true to enable the REST Region Plugin
573 enabled = false
574
575
576[RestHandler]
577 ; Change this to true to enable the REST Asset and Inventory Plugin
578 enabled = false
579 authenticate=true
580 secured=true
581 extended-escape=true
582 realm=OpenSim REST
583 dump-asset=false
584 path-fill=true
585 dump-line-size=32
586 flush-on-error=true
587
588
589; Uncomment the following for IRC bridge
590; experimental, so if it breaks... keep both parts... yada yada
591; also, not good error detection when it fails
592;[IRC]
593 ;enabled = true ; you need to set this otherwise it won't connect
594 ;server = name.of.irc.server.on.the.net
595 ;; user password - only use this if the server requires one
596 ;password = mypass
597 ;nick = OpenSimBotNameProbablyMakeThisShorter
598 ;channel = #the_irc_channel_you_want_to_connect_to
599 ;port = 6667
600 ;; channel to listen for configuration commands
601 ;commands_enabled = false
602 ;command_channel = 2777
603 ;report_clients = true
604 ;; relay private chat connections
605 ;; relay_private_channels = true: will relay IRC chat from/to private in-world channels
606 ;; relay_private_channel_out -- channel to send messages out to the IRC bridge
607 ;; relay_private_channel_in -- channel to receive message from the IRC bridge
608 ;; relay_chat = false: IRC bridge will not relay normal chat
609 ;; access_password -- simple security device
610 ;;
611 ;; so, to just relay chat from an IRC channel to in-world region and vice versa:
612 ;;
613 ;; relay_private_channels = false
614 ;; relay_chat = true
615 ;;
616 ;; to relay chat only to/from private in-world channels:
617 ;;
618 ;; relay_chat = false
619 ;; relay_private_channels = true
620 ;; relay_private_channel_in = 2226
621 ;; relay_private_channel_out = 2225
622 ;;
623 ;; in this example, all chat coming in from IRC will be send out via
624 ;; in-world channel 2226, and all chat from in-world channel 2225 will
625 ;; be relayed to the IRC channel.
626 ;;
627 ;relay_private_channels = false
628 ;relay_private_channel_in = 2226
629 ;relay_private_channel_out = 2225
630 ;relay_chat = true
631 ;access_password = foobar
632
633 ;fallback_region = name of "default" region
634 ;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message
635 ; must start with "PRIVMSG {0} : " or irc server will get upset
636 ;for <bot>:<user in region> :<message>
637 ;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}"
638 ;for <bot>:<message> - <user of region> :
639 msgformat = "PRIVMSG {0} : {3} - {1} of {2}"
640 ;for <bot>:<message> - from <user> :
641 ;msgformat = "PRIVMSG {0} : {3} - from {1}"
642
643;[CMS]
644 ;enabled = true
645 ;channel = 345
646
647
648[Voice]
649 ; PLEASE NOTE that we don't have voice support in OpenSim quite yet - these configuration options are stubs
650 enabled = false
651 ; This is not supported by the SLViewer right now and
652 ; hardcoded within the SL Viewer. Maybe it will be
653 ; changed in future. :-)
654 account_management_server = https://www.bhr.vivox.com/api2
655 ; Global SIP Server for conference calls
656 sip_domain = testserver.com
657
658
659[AsteriskVoice]
660 ; PLEASE NOTE that we don't have voice support in OpenSim quite yet - these configuration options are stubs
661 enabled = false
662 ; SIP account server domain
663 sip_domain = testserver.com
664 ; SIP conf server domain
665 conf_domain = testserver.com
666 ; URL of the asterisk opensim frontend
667 asterisk_frontend = http://testserver.com:49153/
668 ; password for the asterisk frontend XmlRpc calls
669 asterisk_password = bah-humbug
670 ; timeout for XmlRpc calls to asterisk front end (in ms)
671 asterisk_timeout = 3000
672 ; salt for asterisk nonces
673 asterisk_salt = paluempalum
674
675
676; Uncomment the following to control the progression of daytime
677; in the Sim. The defaults are what is shown below
678;[Sun]
679 ; number of wall clock hours for an opensim day. 24.0 would mean realtime
680 ;day_length = 4
681 ; Year length in days
682 ;year_length = 60
683 ; Day to Night Ratio
684 ;day_night_offset = 0.45
685 ; send a Sun update every update_interval # of frames. A lower number will
686 ; make for smoother sun transition at the cost of network
687 ;update_interval = 100
688
689
690[ScriptEngine.DotNetEngine]
691 Enabled = true
692
693 ScriptDelayFactor = 1.0
694 ScriptDistanceLimitFactor = 1.0
695
696 ;
697 ; These settings are specific to DotNetEngine script engine
698 ; Other script engines based on OpenSim.Region.ScriptEngine.Common.dll will have almost identical settings, but in another section of this config file.
699 ;
700
701 ; When a script receives an event the event is queued.
702 ; Any free thread will start executing this event. One script can only have one event executed simultaneously.
703 ; If you have only one thread, and one script has a loop or does a lot of work, then no other scripts can run at the same time.
704 ; Same if you have 10 threads, then only 10 scripts can be run simultaneously.
705 ; But because most scripts exit after their task, the threads are free to go on to the next script.
706
707 ; Refresh ScriptEngine config options (these settings) every xx seconds
708 ; 0 = Do not refresh
709 ; Set it to number of seconds between refresh, for example 30.
710 ; Will allow you to change ScriptEngine settings while server is running just by using "CONFIG SET" on console
711 ; For example to increase or decrease number of threads: CONFIG SET NumberOfScriptThreads 10
712 ; NOTE! Disabled for now. Feature does not work.
713 RefreshConfig=0
714
715 ; Number of threads to use for script event execution
716 ; Threads are shared across all regions
717 NumberOfScriptThreads=2
718
719 ; Script event execution thread priority inside application.
720 ; Valid values: Lowest, BelowNormal, Normal, AboveNormal, Highest
721 ScriptThreadPriority=BelowNormal
722
723 ; How long MAX should a script event be allowed to run (per event execution)?
724 ; Do not set this too low (like 50ms) as there are some time wasted in simply executing a function
725 ; There is also a small speed penalty for every kill that is made
726 MaxEventExecutionTimeMs=5000
727
728 ; Should we enable the max script event execution thread to look for scripts that exceed their timeslice?
729 EnforceMaxEventExecutionTime=true
730
731 ; Should we stop the script completely when time exceeds?
732 ; This is useful if you have a high <MaxEventExecutionTimeMs> and want to deactivate scripts that go wrong
733 ; Note that for example physics engine can slow down the system and make scripts spend more time
734 DeactivateScriptOnTimeout=false
735
736 ; If no scripts have executed in this pass how long should we sleep before checking again
737 ; Impact:
738 ; Too low and you will waste lots of CPU
739 ; Too high and people touching object or similar will have to wait up to this amount of time before script responding
740 SleepTimeIfNoScriptExecutionMs=50
741
742 ; AppDomains are used for two things:
743 ; * Security: Scripts inside AppDomains are limited in permissions.
744 ; * Script unloading: When a script is deactivated it can not be unloaded. Only whole AppDomains can be unloaded.
745 ; AppDomains are therefore only unloaded once ALL active scripts inside it has been deactivated (removed from prims).
746 ; Each AppDomain has some memory overhead. But leaving dead scripts in memory also has memory overhead.
747 ScriptsPerAppDomain=1
748
749 ; MaintenanceLoop
750 ; How often to run maintenance loop
751 ; Maintenance loop is doing: script compile/load, script unload, reload config, adjust running config and enforce max execution time
752 MaintenanceLoopms=50
753
754 ; How many maintenanceloops between each of these.
755 ; (if 2 then function will be executed every MaintenanceLoopms*2 ms)
756 ; Script loading/unloading
757
758 ; How long load/unload thread should sleep if there is nothing to do
759 ; Higher value makes it respond slower when scripts are added/removed from prims
760 ; But once active it will process all in queue before sleeping again
761 MaintenanceLoopTicks_ScriptLoadUnload=1
762
763 ; Other tasks
764 ; check if we need to reload config, adjust running config and enforce max execution time
765 MaintenanceLoopTicks_Other=10
766
767 ; Allow the use of os* functions (some are dangerous)
768 ; Default is false
769 AllowOSFunctions = false
770
771 ; Threat level to allow if os functions are enabled
772 ; One of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
773 ; Default is VeryLow
774 OSFunctionThreatLevel = VeryLow
775
776 ; Maximum number of items in load/unload queue before we start rejecting loads
777 ; Note that we will only be rejecting load. Unloads will still be able to queue.
778 LoadUnloadMaxQueueSize=100
779 315
780 ; Maximum number of (LSL) events that can be queued before new events are ignored.
781 EventExecutionMaxQueueSize=300
782 316
783 ; Async LL command sleep
784 ; If no async LL commands are waiting, how long should thread sleep before checking again
785 ; Async LL commands are LSL-commands that causes an event to be fired back with result
786 ; currently unused
787 ; AsyncLLCommandLoopms=50
788 317
789 ; When script is converted from LSL to C#, or just plain compiled, a copy of the script source will be put in the ScriptEngine folder
790 WriteScriptSourceToDebugFile=false
791 318
792 ; Specify default script compiler
793 ; If you do not specify //cs, //vb, //js or //lsl tag as the first characters of your script then the default compiler will be chosen
794 ; Valid languages are: lsl, cs, js and vb
795 DefaultCompileLanguage=lsl
796 319
797 ; Specify what compilers are allowed to be used
798 ; Note vb only works on Windows for now (Mono lacks VB compile support)
799 ; Valid languages are: lsl, cs, js and vb
800 ; AllowedCompilers=lsl,cs,js,vb. *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
801 AllowedCompilers=lsl
802
803 ; Compile scripts with debugging
804 ; Probably a thousand times slower, but gives you a line number when something goes wrong.
805 CompileWithDebugInformation=true
806
807 ; Remove old scripts on next startup
808 ; currently unused
809 ;CleanUpOldScriptsOnStartup=true
810
811
812[LL-Functions]
813 ; Set the following to true to allow administrator owned scripts to execute console commands
814 ; currently unused
815 ; AllowosConsoleCommand=false
816
817 AllowGodFunctions = false
818
819 ; Maximum number of llListen events we allow per script
820 ; Set this to 0 to have no limit imposed.
821 max_listens_per_script = 64
822 320
823 321
824[DataSnapshot] 322[DataSnapshot]
@@ -848,203 +346,6 @@ InterregionComms = "RESTComms"
848 ;data_services="http://metaverseink.com/cgi-bin/register.py" 346 ;data_services="http://metaverseink.com/cgi-bin/register.py"
849 347
850 348
851[Economy]
852 ; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only -
853 ; In grid mode, use this currency XMLRPC server. Leave blank for normal functionality
854 CurrencyServer = ""
855 ; "http://192.168.1.127/currency.php"
856
857 ; In grid mode, this is the land XMLRPC server. Leave blank for normal functionality
858 LandServer = ""
859 ;"http://192.168.1.127/landtool.php"
860
861 ; 45000 is the highest value that the sim could possibly report because of protocol constraints
862 ObjectCapacity = 45000
863
864 ; Money Unit fee to upload textures, animations etc
865 PriceUpload = 0
866
867 ; Money Unit fee to create groups
868 PriceGroupCreate = 0
869
870 ; This is the account Money goes to for fees. Remember, economy requires that money circulates somewhere... even if it's an upload fee
871 EconomyBaseAccount = 00000000-0000-0000-0000-000000000000
872
873 ; This is the type of user that will pay fees.
874 ; Set this to 2 for users, estate managers and Estate Owners
875 ; Set this to 1 for Users and Estate Managers
876 ; Set this to 0 for Users only.
877 ; -1 disables
878 UserLevelPaysFees = -1
879
880 ; Amount to give to user as a stipend
881 UserStipend = 1000
882
883 ; When a user gets low on money units and logs off, then logs back on, issue a new stipend if they have less money units then this
884 ; amount. Be aware that the account money isn't stored anywhere so users will get a stipend if you restart the simulator
885 IssueStipendWhenClientIsBelowAmount = 10
886
887 ; If this is true, the simulator will remember account balances until the simulator is shutdown or restarted.
888 KeepMoneyAcrossLogins = true
889
890 ; We don't really know what the rest of these values do. These get sent to the client
891 ; These taken from Agni at a Public Telehub. Change at your own risk.
892 ObjectCount = 0
893 PriceEnergyUnit = 100
894 PriceObjectClaim = 10
895 PricePublicObjectDecay = 4
896 PricePublicObjectDelete = 4
897 PriceParcelClaim = 1
898 PriceParcelClaimFactor = 1
899
900 PriceRentLight = 5
901 TeleportMinPrice = 2
902 TeleportPriceExponent = 2
903 EnergyEfficiency = 1
904 PriceObjectRent = 1
905 PriceObjectScaleFactor = 10
906 PriceParcelRent = 1
907
908
909[SVN]
910 Enabled = false
911 Directory = SVNmodule\repo
912 URL = "svn://your.repo.here/"
913 Username = "user"
914 Password = "password"
915 ImportOnStartup = false
916 Autosave = false
917 AutoSavePeriod = 15 ; Number of minutes between autosave backups
918
919
920[XEngine]
921 ; Enable this engine in this OpenSim instance
922 Enabled = true
923
924 ; How many threads to keep alive even if nothing is happening
925 MinThreads = 2
926
927 ; How many threads to start at maximum load
928 MaxThreads = 100
929
930 ; Time a thread must be idle (in seconds) before it dies
931 IdleTimeout = 60
932
933 ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
934 Priority = "BelowNormal"
935
936 ; Maximum number of events to queue for a script (excluding timers)
937 MaxScriptEventQueue = 300
938
939 ; Stack size per thread created
940 ThreadStackSize = 262144
941
942 ; Rate to poll for asynchronous command replies (ms)
943 ; currently unused
944 ;AsyncLLCommandLoopms = 50
945
946 ; Save the source of all compiled scripts
947 WriteScriptSourceToDebugFile = false
948
949 ; Default language for scripts
950 DefaultCompileLanguage = lsl
951
952 ; List of allowed languages (lsl,vb,js,cs)
953 ; AllowedCompilers=lsl,cs,js,vb.
954 ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
955 AllowedCompilers=lsl
956
957 ; Compile debug info (line numbers) into the script assemblies
958 CompileWithDebugInformation = true
959
960 ; Allow the use of os* functions (some are dangerous)
961 AllowOSFunctions = false
962
963 ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
964 OSFunctionThreatLevel = VeryLow
965
966 ; Interval (s) between background save of script states
967 SaveInterval = 120
968
969 ; Interval (s) between maintenance runs (0 = disable)
970 MaintenanceInterval = 10
971
972 ; Time a script can spend in an event handler before it is interrupted
973 EventLimit = 30
974
975 ; If a script overruns it's event limit, kill the script?
976 KillTimedOutScripts = false
977
978 ; Sets the multiplier for the scripting delays
979 ScriptDelayFactor = 1.0
980
981 ; The factor the 10 m distances llimits are multiplied by
982 ScriptDistanceLimitFactor = 1.0
983
984 ; OS Functions enable/disable
985 ; For each function, you can add one line, as shown
986 ; The default for all functions allows them if below threat level
987
988 ; true allows the use of the function unconditionally
989 ; Allow_osSetRegionWaterHeight = true
990
991 ; false disables the function completely
992 ; Allow_osSetRegionWaterHeight = false
993
994 ; Comma separated list of UUIDS allows the function for that list of UUIDS
995 ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
996
997 ; Allow for llCreateLink and llBreakLink to work without asking for permission
998 ; only enable this in a trusted environment otherwise you may be subject to hijacking
999 ; AutomaticLinkPermission = false
1000
1001
1002[GridInfo]
1003 ; These settings are used to return information on a get_grid_info call.
1004 ; Client launcher scripts and third-party clients make use of this to
1005 ; autoconfigure the client and to provide a nice user experience. If you
1006 ; want to facilitate that, you should configure the settings here according
1007 ; to your grid or standalone setup.
1008 ;
1009 ; See http://opensimulator.org/wiki/GridInfo
1010
1011 ; login uri: for grid this is the user server URI
1012 login = http://127.0.0.1:9000/
1013
1014 ; long grid name: the long name of your grid
1015 gridname = "the lost continent of hippo"
1016
1017 ; short grid name: the short name of your grid
1018 gridnick = "hippogrid"
1019
1020 ; login page: optional: if it exists it will be used to tell the client to use
1021 ; this as splash page
1022 ; currently unused
1023 ;welcome = http://127.0.0.1/welcome
1024
1025 ; helper uri: optional: if it exists if will be used to tell the client to use
1026 ; this for all economy related things
1027 ; currently unused
1028 ;economy = http://127.0.0.1:9000/
1029
1030 ; web page of grid: optional: page providing further information about your grid
1031 ; currently unused
1032 ;about = http://127.0.0.1/about/
1033
1034 ; account creation: optional: page providing further information about obtaining
1035 ; a user account on your grid
1036 ; currently unused
1037 ;register = http://127.0.0.1/register
1038
1039 ; help: optional: page providing further assistance for users of your grid
1040 ; currently unused
1041 ;help = http://127.0.0.1/help
1042
1043 ; password help: optional: page providing password assistance for users of your grid
1044 ; currently unused
1045 ;password = http://127.0.0.1/password
1046
1047
1048[OpenGridProtocol] 349[OpenGridProtocol]
1049 ;These are the settings for the Open Grid Protocol.. the Agent Domain, Region Domain, you know.. 350 ;These are the settings for the Open Grid Protocol.. the Agent Domain, Region Domain, you know..
1050 ;On/true or Off/false 351 ;On/true or Off/false
@@ -1053,62 +354,3 @@ InterregionComms = "RESTComms"
1053 ;Name Prefix/suffix when using OGP 354 ;Name Prefix/suffix when using OGP
1054 ogp_firstname_prefix="" 355 ogp_firstname_prefix=""
1055 ogp_lastname_suffix="_EXTERNAL" 356 ogp_lastname_suffix="_EXTERNAL"
1056
1057
1058[Concierge]
1059 ; Enable concierge module
1060 ; Default is false
1061 enabled = false
1062
1063 ; name of the concierge
1064 whoami = "jeeves"
1065
1066 ; password for updating the welcome message templates via XmlRpc
1067 password = SECRET
1068
1069 ; regex specifying for which regions concierge service is desired; if
1070 ; empty, then for all
1071 regions = "^MeetingSpace-"
1072
1073 ; for each region that matches the regions regexp you can provide
1074 ; (optionally) a welcome template using format substitution:
1075 ; {0} is replaced with the name of the avatar entering the region
1076 ; {1} is replaced with the name of the region
1077 ; {2} is replaced with the name of the concierge (whoami variable above)
1078
1079 welcomes = /path/to/welcome/template/directory
1080
1081 ; Concierge can send attendee lists to an event broker whenever an
1082 ; avatar enters or leaves a concierged region. the URL is subject
1083 ; to format substitution:
1084 ; {0} is replaced with the region's name
1085 ; {1} is replaced with the region's UUID
1086 broker = "http://broker.place.com/{1}"
1087
1088
1089[Trees]
1090 ; Enable this to allow the tree module to manage your sim trees, including growing, reproducing and dying
1091 ; default is false
1092 active_trees = false
1093
1094 ; Density of tree population
1095 tree_density = 1000.0
1096
1097
1098[RegionReady]
1099 ; Enable this module to get notified once all items and scripts in the region have been completely loaded and compiled
1100 ; default is false
1101 enabled = false
1102
1103 ; Channel on which to signal region readiness through a message
1104 ; formatted as follows: "{0|1},n,[oar error]"
1105 ; - the first number indicating whether the OAR file loaded ok (1 == ok, 0 == error)
1106 ; - the second number indicates how many scrips failed to compile
1107 ; - "oar error" if supplied, provides the error message from the OAR load
1108 channel_notify = -800
1109
1110
1111[MRM]
1112 ; Enables the Mini Region Modules Script Engine. WARNING: SECURITY RISK.
1113 ; default is false
1114 Enabled = false
diff --git a/bin/config.preview.donotuseyet/README-IMPORTANT.TXT b/bin/config.preview.donotuseyet/README-IMPORTANT.TXT
new file mode 100644
index 0000000..b23aa9c
--- /dev/null
+++ b/bin/config.preview.donotuseyet/README-IMPORTANT.TXT
@@ -0,0 +1,5 @@
1README IMPORTANT
2
3This folder contains a preview configuration layout which is not yet active. Please do not attempt to use it.
4
5Currently, configuration should still be carried out by editing bin/OpenSim.ini (once it has been copied over from bin/OpenSim.ini.example)
diff --git a/bin/config.preview.donotuseyet/admin/gridinfo.ini.example b/bin/config.preview.donotuseyet/admin/gridinfo.ini.example
new file mode 100644
index 0000000..258cecb
--- /dev/null
+++ b/bin/config.preview.donotuseyet/admin/gridinfo.ini.example
@@ -0,0 +1,52 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[GridInfo]
10 ; These settings are used to return information on a get_grid_info call.
11 ; Client launcher scripts and third-party clients make use of this to
12 ; autoconfigure the client and to provide a nice user experience. If you
13 ; want to facilitate that, you should configure the settings here according
14 ; to your grid or standalone setup.
15 ;
16 ; See http://opensimulator.org/wiki/GridInfo
17
18 ; login uri: for grid this is the user server URI
19 login = http://127.0.0.1:9000/
20
21 ; long grid name: the long name of your grid
22 gridname = "the lost continent of hippo"
23
24 ; short grid name: the short name of your grid
25 gridnick = "hippogrid"
26
27 ; login page: optional: if it exists it will be used to tell the client to use
28 ; this as splash page
29 ; currently unused
30 ;welcome = http://127.0.0.1/welcome
31
32 ; helper uri: optional: if it exists if will be used to tell the client to use
33 ; this for all economy related things
34 ; currently unused
35 ;economy = http://127.0.0.1:9000/
36
37 ; web page of grid: optional: page providing further information about your grid
38 ; currently unused
39 ;about = http://127.0.0.1/about/
40
41 ; account creation: optional: page providing further information about obtaining
42 ; a user account on your grid
43 ; currently unused
44 ;register = http://127.0.0.1/register
45
46 ; help: optional: page providing further assistance for users of your grid
47 ; currently unused
48 ;help = http://127.0.0.1/help
49
50 ; password help: optional: page providing password assistance for users of your grid
51 ; currently unused
52 ;password = http://127.0.0.1/password
diff --git a/bin/config.preview.donotuseyet/admin/remoteadmin.ini.example b/bin/config.preview.donotuseyet/admin/remoteadmin.ini.example
new file mode 100644
index 0000000..5d6112d
--- /dev/null
+++ b/bin/config.preview.donotuseyet/admin/remoteadmin.ini.example
@@ -0,0 +1,34 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[RemoteAdmin]
10 enabled = false
11 access_password = unknown
12
13 ; the create_region XmlRpc call uses region_file_template to generate
14 ; the file name of newly create regions (if they are created
15 ; persistent). the parameter available are:
16 ; {0} - X location
17 ; {1} - Y location
18 ; {2} - region UUID
19 ; {3} - region port
20 ; {4} - region name with " ", ":", "/" mapped to "_"
21
22 region_file_template = "{0}x{1}-{2}.xml"
23
24 ; we can limit the number of regions that XmlRpcCreateRegion will
25 ; allow by setting this to a positive, non-0 number: as long as the
26 ; number of regions is below region_limits, XmlRpcCreateRegion will
27 ; succeed. setting region_limit to 0 disables the check.
28 ; default is 0
29 ;region_limit = 0
30
31 ; enable only those methods you deem to be appropriate using a | delimited whitelist
32 ; for example, enabled_methods = admin_broadcast|admin_region_query|admin_save_oar|admin_save_xml
33 ; if this parameter is not specified but enabled = true, all methods will be available
34 enabled_methods = all
diff --git a/bin/config.preview.donotuseyet/admin/rest.ini.example b/bin/config.preview.donotuseyet/admin/rest.ini.example
new file mode 100644
index 0000000..e310eb9
--- /dev/null
+++ b/bin/config.preview.donotuseyet/admin/rest.ini.example
@@ -0,0 +1,32 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[RestPlugins]
10 ; Change this to true to enable REST Plugins. This must be true if you wish to use
11 ; REST Region or REST Asset and Inventory Plugins
12 enabled = false
13 god_key = SECRET
14 prefix = /admin
15
16
17[RestRegionPlugin]
18 ; Change this to true to enable the REST Region Plugin
19 enabled = false
20
21
22[RestHandler]
23 ; Change this to true to enable the REST Asset and Inventory Plugin
24 enabled = false
25 authenticate=true
26 secured=true
27 extended-escape=true
28 realm=OpenSim REST
29 dump-asset=false
30 path-fill=true
31 dump-line-size=32
32 flush-on-error=true
diff --git a/bin/config.preview.donotuseyet/opensim.ini.example b/bin/config.preview.donotuseyet/opensim.ini.example
new file mode 100644
index 0000000..0e4307d
--- /dev/null
+++ b/bin/config.preview.donotuseyet/opensim.ini.example
@@ -0,0 +1,329 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Startup]
10 ; Set this to true if you want to log crashes to disk
11 ; this can be useful when submitting bug reports.
12 save_crashes = false
13
14 ; Directory to save crashes to if above is enabled
15 ; (eg default is /opensimdir/crashes/*.txt or C:\opensim\crashes\*.txt)
16 crash_dir = "crashes"
17
18 ; Http proxy support for llHTTPRequest and dynamic texture loading
19 ; Set HttpProxy to the URL for your proxy server if you would like
20 ; to proxy llHTTPRequests through a firewall
21 ; HttpProxy = "http://proxy.com"
22 ; Set HttpProxyExceptions to a list of regular expressions for
23 ; URLs that you don't want going through the proxy such as servers
24 ; inside your firewall, separate patterns with a ';'
25 ; HttpProxyExceptions = ".mydomain.com;localhost"
26
27 ; Set this to true if you are connecting your OpenSimulator regions to a grid
28 ; Set this to false if you are running OpenSimulator in standalone mode
29 gridmode = false
30
31 startup_console_commands_file = "startup_commands.txt"
32 shutdown_console_commands_file = "shutdown_commands.txt"
33
34 ; To run a script every few minutes, set the script filename here
35 ; timer_Script = "filename"
36
37 ; ##
38 ; ## CLIENTS
39 ; ##
40
41 ; Enables EventQueueGet Service.
42 EventQueue = true
43
44 ; Set this to the DLL containig the client stack to use.
45 clientstack_plugin="OpenSim.Region.ClientStack.LindenUDP.dll"
46
47 ; ##
48 ; ## REGIONS
49 ; ##
50
51 ; Determine where OpenSimulator looks for the files which tell it which regions to server
52 ; Defaults to "filesystem" if this setting isn't present
53 region_info_source = "filesystem"
54 ; region_info_source = "web"
55
56 ; Determines where the region XML files are stored if you are loading these from the filesystem.
57 ; Defaults to bin/Regions in your OpenSimulator installation directory
58 ; regionload_regionsdir="C:\somewhere\xmlfiles\"
59
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
65 ; Draw objects on maptile. This step might take a long time if you've got a huge amount of
66 ; objects, so you can turn it off here if you'd like.
67 DrawPrimOnMapTile = true
68 ; Use terrain texture for maptiles if true, use shaded green if false
69 TextureOnMapTile = false
70
71 ; Maximum total size, and maximum size where a prim can be physical
72 NonPhysicalPrimMax = 256
73 PhysicalPrimMax = 10
74 ClampPrimSize = false
75
76 ; Region crossing
77 AllowScriptCrossing = false
78 ; If you set this to "true", any region that can teleport to you can
79 ; inject ARBITRARY BINARY CODE into your system. Use at your own risk.
80 ; YOU HAVE BEEN WARNED!!!
81 TrustBinaries = false
82
83 ; ##
84 ; ## STORAGE
85 ; ##
86
87 ; *** Prim Storage - only leave one storage_plugin uncommented ***
88 ; --- Null stores nothing - effectively disabling persistence:
89 ;storage_plugin = "OpenSim.Data.Null.dll"
90
91 ; --- To use sqlite as region storage:
92 storage_plugin = "OpenSim.Data.SQLite.dll"
93 storage_connection_string="URI=file:OpenSim.db,version=3";
94
95 ; --- To use MySQL storage, supply your own connectionstring (this is only an example):
96 ; note that the supplied account needs create privilegies if you want it to auto-create needed tables.
97 ; storage_plugin="OpenSim.Data.MySQL.dll"
98 ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
99 ; If you want to use a different database/server for estate data, then
100 ; uncomment and change this connect string. Defaults to the above if not set
101 ; estate_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
102
103 ; Select whether you want to use local or grid asset storage.
104 ;
105 ; If you're running in standalone, you definitely want local, since there is no grid (hence this is redundant, and should
106 ; really be eliminated). The database itself is defined in asset_plugin below
107 ;
108 ; If you're running a region server connecting to a grid, you probably want grid mode, since this will use the
109 ; grid asset server. If you select local in grid mode, then you will use a database as specified in asset_plugin to store assets
110 ; locally. This will mean you won't be able to take items using your assets to other people's regions.
111
112 ; asset_database can be default, local or grid. This controls where assets (textures, scripts, etc.) are stored for your region
113 ;
114 ; If set to default, then
115 ; In standalone mode the local database based asset service will be used
116 ; In grid mode the grid asset service will be used for asset storage
117 ; This is probably the setting that you want.
118 ;
119 ; If set to local then the local database based asset service will be used in standalone and grid modes
120 ; If set to grid then the grid based asset service will be used in standalone and grid modes
121 ; All other values will cause a search for a matching assembly that contains an asset server client.
122 ; See also: AssetCache
123 asset_database = "default"
124
125 ; Persistence of changed objects happens during regular sweeps. The following control that behaviour to
126 ; prevent frequently changing objects from heavily loading the region data store.
127 ; If both of these values are set to zero then persistence of all changed objects will happen on every sweep.
128 ;
129 ; Objects will be considered for persistance in the next sweep when they have not changed for this number of seconds
130 MinimumTimeBeforePersistenceConsidered = 60
131 ; Objects will always be considered for persistance in the next sweep if the first change occurred this number of seconds ago
132 MaximumTimeBeforePersistenceConsidered = 600
133
134 ; Should avatars in neighbor sims see objects in this sim?
135 see_into_this_sim_from_neighbor = True
136
137 ; ##
138 ; ## PHYSICS
139 ; ##
140
141 ; if you would like to allow prims to be physical and move by physics with the physical checkbox in the client set this to true.
142 physical_prim = true
143
144 ; Select a mesher here. ZeroMesher is save and fast.
145 ; ZeroMesher also means that the physics engine models the physics of prims
146 ; sticking to the basic shapes the engine does support. Usually this is only a box.
147 ; Meshmerizer gives a better handling of complex prims by using triangle meshes.
148 ; Note, that only ODE physics currently deals with meshed prims in a satisfactoring way
149 ;
150 meshing = ZeroMesher
151 ;meshing = Meshmerizer
152
153 ; Choose one of the physics engines below
154 physics = basicphysics
155 ;physics = POS
156 ;physics = OpenDynamicsEngine
157 ;physics = modified_BulletX
158
159 ; ##
160 ; ## PERMISSIONS
161 ; ##
162
163 ;permissionmodules = "DefaultPermissionsModule"
164
165 ; If set to false, then, in theory, the server never carries out permission checks (allowing anybody to copy
166 ; any item, etc. This may not yet be implemented uniformally.
167 ; If set to true, then all permissions checks are carried out
168 ; Default is false
169 serverside_object_permissions = false
170
171 allow_grid_gods = false
172
173 ; This allows somne control over permissions
174 ; please note that this still doesn't duplicate SL, and is not intended to
175 ;region_owner_is_god = true
176 ;parcel_owner_is_god = true
177
178 ; Control user types that are allowed to create new scripts
179 ; Only enforced if serviceside_object_permissions is true
180 ;
181 ; Current possible values are
182 ; all - anyone can create scripts (subject to normal permissions)
183 ; gods - only administrators can create scripts (as long as allow_grid_gods is true)
184 ; Default value is all
185 ; allowed_script_creators = all
186
187 ; Control user types that are allowed to edit (save) scripts
188 ; Only enforced if serviceside_object_permissions is true
189 ;
190 ; Current possible values are
191 ; all - anyone can edit scripts (subject to normal permissions)
192 ; gods - only administrators can edit scripts (as long as allow_grid_gods is true)
193 ; Default value is all
194 ; allowed_script_editors = all
195
196 ; ##
197 ; ## SCRIPT ENGINE
198 ; ##
199
200 ;DefaultScriptEngine = "ScriptEngine.DotNetEngine"
201 DefaultScriptEngine = "XEngine"
202
203 ; ##
204 ; ## WORLD MAP
205 ; ##
206
207 ;WorldMapModule = "WorldMap"
208 ;MapImageModule = "MapImageModule"
209
210 ; ##
211 ; ## Customized Cache Implementation
212 ; ##
213 ;
214 ; The AssetCache value allows the name of an alternative caching
215 ; implementation to be specified. This can normally be omitted.
216 ; This value corresponds to the provider value associated with the
217 ; intended cache implementation plugin.
218 ; See also: asset_database
219
220 ; AssetCache = "OpenSim.Framework.Communications.Cache.AssetCache"
221
222 ; ##
223 ; ## EMAIL MODULE
224 ; ##
225
226 ;emailmodule = DefaultEmailModule
227
228
229[StandAlone]
230 accounts_authenticate = true
231 welcome_message = "Welcome to OpenSimulator"
232
233 ; Asset database provider
234 asset_plugin = "OpenSim.Data.SQLite.dll"
235 ; asset_plugin = "OpenSim.Data.MySQL.dll" ; for mysql
236 ; asset_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate
237
238 ; the Asset DB source. This only works for sqlite, mysql, and nhibernate for now
239 ; Asset source SQLite example
240 asset_source = "URI=file:Asset.db,version=3"
241 ; Asset Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING)
242 ; asset_source = "SQLiteDialect;SqliteClientDriver;URI=file:Asset.db,version=3"
243 ; Asset Source MySQL example
244 ;asset_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
245
246 ; Inventory database provider
247 inventory_plugin = "OpenSim.Data.SQLite.dll"
248 ; inventory_plugin = "OpenSim.Data.MySQL.dll"
249 ; inventory_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate
250
251 ; Inventory source SQLite example
252 inventory_source = "URI=file:inventoryStore.db,version=3"
253 ; Inventory Source NHibernate example (DIALECT;DRIVER;CONNECTSTRING)
254 ; inventory_source = "SQLiteDialect;SqliteClientDriver;URI=file:Inventory.db,version=3"
255 ; Inventory Source MySQL example
256 ;inventory_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
257
258 ; User Data Database provider
259 ;
260 ; Multiple providers can be specified by separating them with commas (whitespace is unimportant)
261 ; If multiple providers are specified then if a profile is requested, each is queried until one
262 ; provides a valid profile, or until all providers have been queried.
263 ; Unfortunately the order of querying is currently undefined (it may not be the order in which
264 ; providers are specified here). This needs to be fixed
265 ;
266 userDatabase_plugin = "OpenSim.Data.SQLite.dll"
267 ; userDatabase_plugin = "OpenSim.Data.MySQL.dll"
268 ; userDatabase_plugin = "OpenSim.Data.NHibernate.dll" ; for nhibernate
269
270 ; User source SQLite example
271 user_source = "URI=file:userprofiles.db,version=3"
272 ; User Source NHibernate Example (DIALECT;DRIVER;CONNECTSTRING)
273 ; user_source = "SQLiteDialect;SqliteClientDriver;URI=file:User.db,version=3"
274 ; User Source MySQL example
275 ;user_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
276
277 ; Specifies the location and filename of the default inventory library control file. The path can be relative or absolute
278 ; Default is ./inventory/Libraries.xml
279 LibrariesXMLFile="./inventory/Libraries.xml"
280
281 ; Specifies the location and filename of the inventory library assets control file. The path can be relative or absolute
282 ; Setting is optional. Default is ./assets/AssetSets.xml
283 AssetSetsXMLFile="./assets/AssetSets.xml"
284
285 dump_assets_to_file = false
286
287
288[Network]
289 http_listener_port = 9000
290 default_location_x = 1000
291 default_location_y = 1000
292
293 ; ssl config: Experimental! The auto https config only really works definately on windows XP now
294 ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below
295 ; you can use https on other platforms, but you'll need to configure the httpapi yourself for now
296 http_listener_ssl = false ; Also create a SSL server
297 http_listener_cn = "localhost" ; Use the cert with the common name
298 http_listener_sslport = 9001 ; Use this port for SSL connections
299 http_listener_ssl_cert = "" ; Currently unused, but will be used for OSHttpServer
300
301 ; Uncomment below to enable llRemoteData/remote channels
302 ; remoteDataPort = 20800
303
304 grid_server_url = "http://127.0.0.1:8001"
305 grid_send_key = "null"
306 grid_recv_key = "null"
307
308 user_server_url = "http://127.0.0.1:8002"
309 user_send_key = "null"
310 user_recv_key = "null"
311
312 asset_server_url = "http://127.0.0.1:8003"
313
314 inventory_server_url = "http://127.0.0.1:8004"
315
316 ; The MessagingServer is a companion of the UserServer. It uses
317 ; user_send_key and user_recv_key, too
318 messaging_server_url = "http://127.0.0.1:8006"
319
320 ; What is reported as the "X-Secondlife-Shard"
321 ; Defaults to the user server url if not set
322 ; The old default is "OpenSim", set here fro compatibility
323 shard = "OpenSim"
324
325 ; What is reported as the "User-Agent" when using llHTTPRequest
326 ; Defaults to not sent if not set here. See the notes section in the wiki at
327 ; http://wiki.secondlife.com/wiki/LlHTTPRequest for comments on adding
328 ; " (Mozilla Compatible)" to the text where there are problems with a web server
329 ;user_agent = "OpenSim LSL (Mozilla Compatible)"
diff --git a/bin/config.preview.donotuseyet/protocols/client/lindenlab.ini.example b/bin/config.preview.donotuseyet/protocols/client/lindenlab.ini.example
new file mode 100644
index 0000000..965e1c7
--- /dev/null
+++ b/bin/config.preview.donotuseyet/protocols/client/lindenlab.ini.example
@@ -0,0 +1,27 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[ClientStack.LindenUDP]
10 ; This is the multiplier applied to all client throttles for outgoing UDP network data
11 ; If it is set to 1, then we obey the throttle settings as given to us by the client. If it is set to 3, for example, then we
12 ; multiply that setting by 3 (e.g. if the client gives us a setting of 250 kilobits per second then we
13 ; will actually push down data at a maximum rate of 750 kilobits per second).
14 ;
15 ; In principle, setting a multiplier greater than 1 will allow data to be pushed down to a client much faster
16 ; than its UI allows the setting to go. This may be okay in some situations, such as standalone OpenSim
17 ; applications on a LAN. However, the greater the multipler, the higher the risk of packet drop, resulting
18 ; in symptoms such as missing terrain or objects. A much better solution is to change the client UI to allow
19 ; higher network bandwidth settings directly, though this isn't always possible.
20 ;
21 ; Currently this setting is 2 by default because we currently send much more texture data than is strictly
22 ; necessary. A setting of 1 could result in slow texture transfer. This will be fixed when the transfer
23 ; of textures at different levels of quality is improved.
24 ;
25 ; Pre r7113, this setting was not exposed but was effectively 8. You may want to try this if you encounter
26 ; unexpected difficulties
27 client_throttle_multiplier = 2;
diff --git a/bin/config.preview.donotuseyet/protocols/grid/interregion.ini.example b/bin/config.preview.donotuseyet/protocols/grid/interregion.ini.example
new file mode 100644
index 0000000..0199636
--- /dev/null
+++ b/bin/config.preview.donotuseyet/protocols/grid/interregion.ini.example
@@ -0,0 +1,12 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Communications]
10
11;InterregionComms = "LocalComms"
12InterregionComms = "RESTComms"
diff --git a/bin/config.preview.donotuseyet/protocols/intergrid/ogp.ini.example b/bin/config.preview.donotuseyet/protocols/intergrid/ogp.ini.example
new file mode 100644
index 0000000..90afcf0
--- /dev/null
+++ b/bin/config.preview.donotuseyet/protocols/intergrid/ogp.ini.example
@@ -0,0 +1,16 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[OpenGridProtocol]
10 ;These are the settings for the Open Grid Protocol.. the Agent Domain, Region Domain, you know..
11 ;On/true or Off/false
12 ogp_enabled=false
13
14 ;Name Prefix/suffix when using OGP
15 ogp_firstname_prefix=""
16 ogp_lastname_suffix="_EXTERNAL"
diff --git a/bin/config.preview.donotuseyet/region/physics/engines/ode.ini.example b/bin/config.preview.donotuseyet/region/physics/engines/ode.ini.example
new file mode 100644
index 0000000..ec9380a
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/physics/engines/ode.ini.example
@@ -0,0 +1,161 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[ODEPhysicsSettings]
10 ;##
11 ;## World Settings
12 ;##
13
14 ;Gravity. Feel like falling up? change world_gravityz to 9.8 instead of -9.8. m/s
15 world_gravityx = 0
16 world_gravityy = 0
17 world_gravityz = -9.8
18
19 ; World Step size. (warning these are dangerous. Changing these will probably cause your scene to explode dramatically)
20 ; reference: fps = (0.09375/ODE_STEPSIZE) * 1000;
21 world_stepsize = 0.020
22 world_internal_steps_without_collisions = 10
23
24 ;World Space settings. Affects memory consumption vs Collider CPU time for avatar and physical prim
25 world_hashspace_size_low = -4
26 world_hashSpace_size_high = 128
27
28 ;Dynamic space settings Affects memory consumption vs Collider CPU time for static prim
29 meters_in_small_space = 29.9
30 small_hashspace_size_low = -4
31 small_hashspace_size_high = 66
32
33 ; ##
34 ; ## Contact properties. (the stuff that happens when things come in contact with each other)
35 ; ##
36
37 ; surface layer around geometries other geometries can sink into before generating a contact
38 world_contact_surface_layer = 0.001
39
40 ; Filtering Collisions helps keep things stable physics wise, but sometimes
41 ; it can be over zealous. If you notice bouncing, chances are it's being just
42 ; that
43 filter_collisions = false
44
45 ; Non Moving Terrain Contact (avatar isn't moving)
46 nm_terraincontact_friction = 255.0
47 nm_terraincontact_bounce = 0.1
48 nm_terraincontact_erp = 0.1025
49
50 ; Moving Terrain Contact (avatar is moving)
51 m_terraincontact_friction = 75.0
52 m_terraincontact_bounce = 0.05
53 m_terrainContact_erp = 0.05025
54
55 ; Moving Avatar to object Contact
56 m_avatarobjectcontact_friction = 75.0
57 m_avatarobjectcontact_bounce = 0.1
58
59 ; Object to Object Contact and Non-Moving Avatar to object
60 objectcontact_friction = 250.0
61 objectcontact_bounce = 0.2
62
63 ; ##
64 ; ## Avatar Control
65 ; ##
66
67 ; PID Controller Settings. These affect the math that causes the avatar to reach the
68 ; desired velocity
69 ; See http://en.wikipedia.org/wiki/PID_controller
70
71 av_pid_derivative_linux = 2200.0
72 av_pid_proportional_linux = 900.0;
73
74 av_pid_derivative_win = 2200.0
75 av_pid_proportional_win = 900.0;
76
77 ;girth of the avatar. Adds radius to the height also
78 av_capsule_radius = 0.37
79
80 ; Max force permissible to use to keep the avatar standing up straight
81 av_capsule_standup_tensor_win = 550000
82 av_capsule_standup_tensor_linux = 550000
83
84 ; used to calculate mass of avatar.
85 ; float AVvolume = (float) (Math.PI*Math.Pow(CAPSULE_RADIUS, 2)*CAPSULE_LENGTH);
86 ; av_density * AVvolume;
87 av_density = 80
88
89 ; use this value to cut 52% of the height the sim gives us
90 av_height_fudge_factor = 0.52
91
92 ; Movement. Smaller is faster.
93
94 ; speed of movement with Always Run off
95 av_movement_divisor_walk = 1.3
96
97 ; speed of movement with Always Run on
98 av_movement_divisor_run = 0.8
99
100 ; When the avatar flies, it will be moved up by this amount off the ground (in meters)
101 minimum_ground_flight_offset = 3.0
102
103 ; ##
104 ; ## Object options
105 ; ##
106
107 ; used in the mass calculation.
108 geometry_default_density = 10.000006836
109
110 ; amount of ODE steps where object is non moving for ODE to automatically put it to sleep
111 body_frames_auto_disable = 20
112
113 ; used to control llMove2Target
114 body_pid_derivative = 35
115 body_pid_gain = 25
116
117 ; amount of time a geom/body will try to cross a region border before it gets disabled
118 geom_crossing_failures_before_outofbounds = 5
119
120 ; start throttling the object updates if object comes in contact with 3 or more other objects
121 geom_contactpoints_start_throttling = 3
122
123 ; send 1 update for every x updates below when throttled
124 geom_updates_before_throttled_update = 15
125
126 ; Used for llSetStatus. How rigid the object rotation is held on the axis specified
127 body_motor_joint_maxforce_tensor_linux = 5
128 body_motor_joint_maxforce_tensor_win = 5
129
130 ; ##
131 ; ## Sculpted Prim settings
132 ; ##
133
134 ; Do we want to mesh sculpted prim to collide like they look?
135 mesh_sculpted_prim = true
136
137 ; number^2 non-physical level of detail of the sculpt texture. 32x32 - 1024 verticies
138 mesh_lod = 32
139
140 ; number^2 physical level of detail of the sculpt texture. 16x16 - 256 verticies
141 mesh_physical_lod = 16
142
143 ; ##
144 ; ## Physics logging settings - logfiles are saved to *.DIF files
145 ; ##
146
147 ; default is false
148 ;physics_logging = true
149 ;; every n simulation iterations, the physics snapshot file is updated
150 ;physics_logging_interval = 50
151 ;; append to existing physics logfile, or overwrite existing logfiles?
152 ;physics_logging_append_existing_logfile = true
153
154 ; ##
155 ; ## Joint support
156 ; ##
157
158 ; if you would like physics joints to be enabled through a special naming convention in the client, set this to true.
159 ; (see NINJA Physics documentation, http://opensimulator.org/wiki/NINJA_Physics)
160 ; default is false
161 ;use_NINJA_physics_joints = true
diff --git a/bin/config.preview.donotuseyet/region/scripting/engines/dotnetengine.ini.example b/bin/config.preview.donotuseyet/region/scripting/engines/dotnetengine.ini.example
new file mode 100644
index 0000000..ee624de
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/scripting/engines/dotnetengine.ini.example
@@ -0,0 +1,128 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[ScriptEngine.DotNetEngine]
10 Enabled = true
11
12 ScriptDelayFactor = 1.0
13 ScriptDistanceLimitFactor = 1.0
14
15 ;
16 ; These settings are specific to DotNetEngine script engine
17 ; Other script engines based on OpenSim.Region.ScriptEngine.Common.dll will have almost identical settings, but in another section of this config file.
18 ;
19
20 ; When a script receives an event the event is queued.
21 ; Any free thread will start executing this event. One script can only have one event executed simultaneously.
22 ; If you have only one thread, and one script has a loop or does a lot of work, then no other scripts can run at the same time.
23 ; Same if you have 10 threads, then only 10 scripts can be run simultaneously.
24 ; But because most scripts exit after their task, the threads are free to go on to the next script.
25
26 ; Refresh ScriptEngine config options (these settings) every xx seconds
27 ; 0 = Do not refresh
28 ; Set it to number of seconds between refresh, for example 30.
29 ; Will allow you to change ScriptEngine settings while server is running just by using "CONFIG SET" on console
30 ; For example to increase or decrease number of threads: CONFIG SET NumberOfScriptThreads 10
31 ; NOTE! Disabled for now. Feature does not work.
32 RefreshConfig=0
33
34 ; Number of threads to use for script event execution
35 ; Threads are shared across all regions
36 NumberOfScriptThreads=2
37
38 ; Script event execution thread priority inside application.
39 ; Valid values: Lowest, BelowNormal, Normal, AboveNormal, Highest
40 ScriptThreadPriority=BelowNormal
41
42 ; How long MAX should a script event be allowed to run (per event execution)?
43 ; Do not set this too low (like 50ms) as there are some time wasted in simply executing a function
44 ; There is also a small speed penalty for every kill that is made
45 MaxEventExecutionTimeMs=5000
46
47 ; Should we enable the max script event execution thread to look for scripts that exceed their timeslice?
48 EnforceMaxEventExecutionTime=true
49
50 ; Should we stop the script completely when time exceeds?
51 ; This is useful if you have a high <MaxEventExecutionTimeMs> and want to deactivate scripts that go wrong
52 ; Note that for example physics engine can slow down the system and make scripts spend more time
53 DeactivateScriptOnTimeout=false
54
55 ; If no scripts have executed in this pass how long should we sleep before checking again
56 ; Impact:
57 ; Too low and you will waste lots of CPU
58 ; Too high and people touching object or similar will have to wait up to this amount of time before script responding
59 SleepTimeIfNoScriptExecutionMs=50
60
61 ; AppDomains are used for two things:
62 ; * Security: Scripts inside AppDomains are limited in permissions.
63 ; * Script unloading: When a script is deactivated it can not be unloaded. Only whole AppDomains can be unloaded.
64 ; AppDomains are therefore only unloaded once ALL active scripts inside it has been deactivated (removed from prims).
65 ; Each AppDomain has some memory overhead. But leaving dead scripts in memory also has memory overhead.
66 ScriptsPerAppDomain=1
67
68 ; MaintenanceLoop
69 ; How often to run maintenance loop
70 ; Maintenance loop is doing: script compile/load, script unload, reload config, adjust running config and enforce max execution time
71 MaintenanceLoopms=50
72
73 ; How many maintenanceloops between each of these.
74 ; (if 2 then function will be executed every MaintenanceLoopms*2 ms)
75 ; Script loading/unloading
76
77 ; How long load/unload thread should sleep if there is nothing to do
78 ; Higher value makes it respond slower when scripts are added/removed from prims
79 ; But once active it will process all in queue before sleeping again
80 MaintenanceLoopTicks_ScriptLoadUnload=1
81
82 ; Other tasks
83 ; check if we need to reload config, adjust running config and enforce max execution time
84 MaintenanceLoopTicks_Other=10
85
86 ; Allow the use of os* functions (some are dangerous)
87 ; Default is false
88 AllowOSFunctions = false
89
90 ; Threat level to allow if os functions are enabled
91 ; One of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
92 ; Default is VeryLow
93 OSFunctionThreatLevel = VeryLow
94
95 ; Maximum number of items in load/unload queue before we start rejecting loads
96 ; Note that we will only be rejecting load. Unloads will still be able to queue.
97 LoadUnloadMaxQueueSize=100
98
99 ; Maximum number of (LSL) events that can be queued before new events are ignored.
100 EventExecutionMaxQueueSize=300
101
102 ; Async LL command sleep
103 ; If no async LL commands are waiting, how long should thread sleep before checking again
104 ; Async LL commands are LSL-commands that causes an event to be fired back with result
105 ; currently unused
106 ; AsyncLLCommandLoopms=50
107
108 ; When script is converted from LSL to C#, or just plain compiled, a copy of the script source will be put in the ScriptEngine folder
109 WriteScriptSourceToDebugFile=false
110
111 ; Specify default script compiler
112 ; If you do not specify //cs, //vb, //js or //lsl tag as the first characters of your script then the default compiler will be chosen
113 ; Valid languages are: lsl, cs, js and vb
114 DefaultCompileLanguage=lsl
115
116 ; Specify what compilers are allowed to be used
117 ; Note vb only works on Windows for now (Mono lacks VB compile support)
118 ; Valid languages are: lsl, cs, js and vb
119 ; AllowedCompilers=lsl,cs,js,vb. *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
120 AllowedCompilers=lsl
121
122 ; Compile scripts with debugging
123 ; Probably a thousand times slower, but gives you a line number when something goes wrong.
124 CompileWithDebugInformation=true
125
126 ; Remove old scripts on next startup
127 ; currently unused
128 ;CleanUpOldScriptsOnStartup=true
diff --git a/bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example b/bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example
new file mode 100644
index 0000000..0c194ae
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example
@@ -0,0 +1,12 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[MRM]
10 ; Enables the Mini Region Modules Script Engine. WARNING: SECURITY RISK.
11 ; default is false
12 Enabled = false
diff --git a/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example b/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example
new file mode 100644
index 0000000..b65e422
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example
@@ -0,0 +1,88 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[XEngine]
10 ; Enable this engine in this OpenSim instance
11 Enabled = true
12
13 ; How many threads to keep alive even if nothing is happening
14 MinThreads = 2
15
16 ; How many threads to start at maximum load
17 MaxThreads = 100
18
19 ; Time a thread must be idle (in seconds) before it dies
20 IdleTimeout = 60
21
22 ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
23 Priority = "BelowNormal"
24
25 ; Maximum number of events to queue for a script (excluding timers)
26 MaxScriptEventQueue = 300
27
28 ; Stack size per thread created
29 ThreadStackSize = 262144
30
31 ; Rate to poll for asynchronous command replies (ms)
32 ; currently unused
33 ;AsyncLLCommandLoopms = 50
34
35 ; Save the source of all compiled scripts
36 WriteScriptSourceToDebugFile = false
37
38 ; Default language for scripts
39 DefaultCompileLanguage = lsl
40
41 ; List of allowed languages (lsl,vb,js,cs)
42 ; AllowedCompilers=lsl,cs,js,vb.
43 ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
44 AllowedCompilers=lsl
45
46 ; Compile debug info (line numbers) into the script assemblies
47 CompileWithDebugInformation = true
48
49 ; Allow the use of os* functions (some are dangerous)
50 AllowOSFunctions = false
51
52 ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
53 OSFunctionThreatLevel = VeryLow
54
55 ; Interval (s) between background save of script states
56 SaveInterval = 120
57
58 ; Interval (s) between maintenance runs (0 = disable)
59 MaintenanceInterval = 10
60
61 ; Time a script can spend in an event handler before it is interrupted
62 EventLimit = 30
63
64 ; If a script overruns it's event limit, kill the script?
65 KillTimedOutScripts = false
66
67 ; Sets the multiplier for the scripting delays
68 ScriptDelayFactor = 1.0
69
70 ; The factor the 10 m distances llimits are multiplied by
71 ScriptDistanceLimitFactor = 1.0
72
73 ; OS Functions enable/disable
74 ; For each function, you can add one line, as shown
75 ; The default for all functions allows them if below threat level
76
77 ; true allows the use of the function unconditionally
78 ; Allow_osSetRegionWaterHeight = true
79
80 ; false disables the function completely
81 ; Allow_osSetRegionWaterHeight = false
82
83 ; Comma separated list of UUIDS allows the function for that list of UUIDS
84 ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
85
86 ; Allow for llCreateLink and llBreakLink to work without asking for permission
87 ; only enable this in a trusted environment otherwise you may be subject to hijacking
88 ; AutomaticLinkPermission = false
diff --git a/bin/config.preview.donotuseyet/region/scripting/ll-functions.ini.example b/bin/config.preview.donotuseyet/region/scripting/ll-functions.ini.example
new file mode 100644
index 0000000..e7ab7a9
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/scripting/ll-functions.ini.example
@@ -0,0 +1,18 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[LL-Functions]
10 ; Set the following to true to allow administrator owned scripts to execute console commands
11 ; currently unused
12 ; AllowosConsoleCommand=false
13
14 AllowGodFunctions = false
15
16 ; Maximum number of llListen events we allow per script
17 ; Set this to 0 to have no limit imposed.
18 max_listens_per_script = 64
diff --git a/bin/config.preview.donotuseyet/region/scripting/regionready.ini.example b/bin/config.preview.donotuseyet/region/scripting/regionready.ini.example
new file mode 100644
index 0000000..611b81b
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/scripting/regionready.ini.example
@@ -0,0 +1,19 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[RegionReady]
10 ; Enable this module to get notified once all items and scripts in the region have been completely loaded and compiled
11 ; default is false
12 enabled = false
13
14 ; Channel on which to signal region readiness through a message
15 ; formatted as follows: "{0|1},n,[oar error]"
16 ; - the first number indicating whether the OAR file loaded ok (1 == ok, 0 == error)
17 ; - the second number indicates how many scrips failed to compile
18 ; - "oar error" if supplied, provides the error message from the OAR load
19 channel_notify = -800
diff --git a/bin/config.preview.donotuseyet/region/scripting/smtp.ini.example b/bin/config.preview.donotuseyet/region/scripting/smtp.ini.example
new file mode 100644
index 0000000..5b423ab
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/scripting/smtp.ini.example
@@ -0,0 +1,19 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[SMTP]
10
11 enabled=false
12
13 ;enabled=true
14 ;internal_object_host=lsl.opensim.local
15 ;host_domain_header_from=127.0.0.1
16 ;SMTP_SERVER_HOSTNAME=127.0.0.1
17 ;SMTP_SERVER_PORT=25
18 ;SMTP_SERVER_LOGIN=foo
19 ;SMTP_SERVER_PASSWORD=bar
diff --git a/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example b/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example
new file mode 100644
index 0000000..4e39256
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example
@@ -0,0 +1,20 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Chat]
10 ; Controls whether the chat module is enabled. Default is true.
11 enabled = true;
12
13 ; Distance in meters that whispers should travel. Default is 10m
14 whisper_distance = 10
15
16 ; Distance in meters that ordinary chat should travel. Default is 30m
17 say_distance = 30
18
19 ; Distance in meters that shouts should travel. Default is 100m
20 shout_distance = 100
diff --git a/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example b/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example
new file mode 100644
index 0000000..a94a89e
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example
@@ -0,0 +1,61 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9; Uncomment the following for IRC bridge
10; experimental, so if it breaks... keep both parts... yada yada
11; also, not good error detection when it fails
12;[IRC]
13 ;enabled = true ; you need to set this otherwise it won't connect
14 ;server = name.of.irc.server.on.the.net
15 ;; user password - only use this if the server requires one
16 ;password = mypass
17 ;nick = OpenSimBotNameProbablyMakeThisShorter
18 ;channel = #the_irc_channel_you_want_to_connect_to
19 ;port = 6667
20 ;; channel to listen for configuration commands
21 ;commands_enabled = false
22 ;command_channel = 2777
23 ;report_clients = true
24 ;; relay private chat connections
25 ;; relay_private_channels = true: will relay IRC chat from/to private in-world channels
26 ;; relay_private_channel_out -- channel to send messages out to the IRC bridge
27 ;; relay_private_channel_in -- channel to receive message from the IRC bridge
28 ;; relay_chat = false: IRC bridge will not relay normal chat
29 ;; access_password -- simple security device
30 ;;
31 ;; so, to just relay chat from an IRC channel to in-world region and vice versa:
32 ;;
33 ;; relay_private_channels = false
34 ;; relay_chat = true
35 ;;
36 ;; to relay chat only to/from private in-world channels:
37 ;;
38 ;; relay_chat = false
39 ;; relay_private_channels = true
40 ;; relay_private_channel_in = 2226
41 ;; relay_private_channel_out = 2225
42 ;;
43 ;; in this example, all chat coming in from IRC will be send out via
44 ;; in-world channel 2226, and all chat from in-world channel 2225 will
45 ;; be relayed to the IRC channel.
46 ;;
47 ;relay_private_channels = false
48 ;relay_private_channel_in = 2226
49 ;relay_private_channel_out = 2225
50 ;relay_chat = true
51 ;access_password = foobar
52
53 ;fallback_region = name of "default" region
54 ;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message
55 ; must start with "PRIVMSG {0} : " or irc server will get upset
56 ;for <bot>:<user in region> :<message>
57 ;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}"
58 ;for <bot>:<message> - <user of region> :
59 msgformat = "PRIVMSG {0} : {3} - {1} of {2}"
60 ;for <bot>:<message> - from <user> :
61 ;msgformat = "PRIVMSG {0} : {3} - from {1}"
diff --git a/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example b/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example
new file mode 100644
index 0000000..f7f708b
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example
@@ -0,0 +1,12 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Messaging]
10 ; Control which region module is used for instant messaging.
11 ; Default is InstantMessageModule (this is the name of the core IM module as well as the setting)
12 InstantMessageModule = InstantMessageModule
diff --git a/bin/config.preview.donotuseyet/region/user/concierge.ini.example b/bin/config.preview.donotuseyet/region/user/concierge.ini.example
new file mode 100644
index 0000000..0f6f051
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/concierge.ini.example
@@ -0,0 +1,37 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Concierge]
10 ; Enable concierge module
11 ; Default is false
12 enabled = false
13
14 ; name of the concierge
15 whoami = "jeeves"
16
17 ; password for updating the welcome message templates via XmlRpc
18 password = SECRET
19
20 ; regex specifying for which regions concierge service is desired; if
21 ; empty, then for all
22 regions = "^MeetingSpace-"
23
24 ; for each region that matches the regions regexp you can provide
25 ; (optionally) a welcome template using format substitution:
26 ; {0} is replaced with the name of the avatar entering the region
27 ; {1} is replaced with the name of the region
28 ; {2} is replaced with the name of the concierge (whoami variable above)
29
30 welcomes = /path/to/welcome/template/directory
31
32 ; Concierge can send attendee lists to an event broker whenever an
33 ; avatar enters or leaves a concierged region. the URL is subject
34 ; to format substitution:
35 ; {0} is replaced with the region's name
36 ; {1} is replaced with the region's UUID
37 broker = "http://broker.place.com/{1}"
diff --git a/bin/config.preview.donotuseyet/region/user/economy.ini.example b/bin/config.preview.donotuseyet/region/user/economy.ini.example
new file mode 100644
index 0000000..33343bf
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/economy.ini.example
@@ -0,0 +1,64 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Economy]
10 ; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only -
11 ; In grid mode, use this currency XMLRPC server. Leave blank for normal functionality
12 CurrencyServer = ""
13 ; "http://192.168.1.127/currency.php"
14
15 ; In grid mode, this is the land XMLRPC server. Leave blank for normal functionality
16 LandServer = ""
17 ;"http://192.168.1.127/landtool.php"
18
19 ; 45000 is the highest value that the sim could possibly report because of protocol constraints
20 ObjectCapacity = 45000
21
22 ; Money Unit fee to upload textures, animations etc
23 PriceUpload = 0
24
25 ; Money Unit fee to create groups
26 PriceGroupCreate = 0
27
28 ; This is the account Money goes to for fees. Remember, economy requires that money circulates somewhere... even if it's an upload fee
29 EconomyBaseAccount = 00000000-0000-0000-0000-000000000000
30
31 ; This is the type of user that will pay fees.
32 ; Set this to 2 for users, estate managers and Estate Owners
33 ; Set this to 1 for Users and Estate Managers
34 ; Set this to 0 for Users only.
35 ; -1 disables
36 UserLevelPaysFees = -1
37
38 ; Amount to give to user as a stipend
39 UserStipend = 1000
40
41 ; When a user gets low on money units and logs off, then logs back on, issue a new stipend if they have less money units then this
42 ; amount. Be aware that the account money isn't stored anywhere so users will get a stipend if you restart the simulator
43 IssueStipendWhenClientIsBelowAmount = 10
44
45 ; If this is true, the simulator will remember account balances until the simulator is shutdown or restarted.
46 KeepMoneyAcrossLogins = true
47
48 ; We don't really know what the rest of these values do. These get sent to the client
49 ; These taken from Agni at a Public Telehub. Change at your own risk.
50 ObjectCount = 0
51 PriceEnergyUnit = 100
52 PriceObjectClaim = 10
53 PricePublicObjectDecay = 4
54 PricePublicObjectDelete = 4
55 PriceParcelClaim = 1
56 PriceParcelClaimFactor = 1
57
58 PriceRentLight = 5
59 TeleportMinPrice = 2
60 TeleportPriceExponent = 2
61 EnergyEfficiency = 1
62 PriceObjectRent = 1
63 PriceObjectScaleFactor = 10
64 PriceParcelRent = 1
diff --git a/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example b/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example
new file mode 100644
index 0000000..fc0b0e8
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example
@@ -0,0 +1,23 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[AsteriskVoice]
10 ; PLEASE NOTE that we don't have voice support in OpenSim quite yet - these configuration options are stubs
11 enabled = false
12 ; SIP account server domain
13 sip_domain = testserver.com
14 ; SIP conf server domain
15 conf_domain = testserver.com
16 ; URL of the asterisk opensim frontend
17 asterisk_frontend = http://testserver.com:49153/
18 ; password for the asterisk frontend XmlRpc calls
19 asterisk_password = bah-humbug
20 ; timeout for XmlRpc calls to asterisk front end (in ms)
21 asterisk_timeout = 3000
22 ; salt for asterisk nonces
23 asterisk_salt = paluempalum
diff --git a/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example b/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example
new file mode 100644
index 0000000..6485f20
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example
@@ -0,0 +1,17 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Voice]
10 ; PLEASE NOTE that we don't have voice support in OpenSim quite yet - these configuration options are stubs
11 enabled = false
12 ; This is not supported by the SLViewer right now and
13 ; hardcoded within the SL Viewer. Maybe it will be
14 ; changed in future. :-)
15 account_management_server = https://www.bhr.vivox.com/api2
16 ; Global SIP Server for conference calls
17 sip_domain = testserver.com
diff --git a/bin/config.preview.donotuseyet/region/world/contentmanagement/cms.ini.example b/bin/config.preview.donotuseyet/region/world/contentmanagement/cms.ini.example
new file mode 100644
index 0000000..d5a624d
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/world/contentmanagement/cms.ini.example
@@ -0,0 +1,11 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9;[CMS]
10 ;enabled = true
11 ;channel = 345
diff --git a/bin/config.preview.donotuseyet/region/world/contentmanagement/datasnapshot.ini.example b/bin/config.preview.donotuseyet/region/world/contentmanagement/datasnapshot.ini.example
new file mode 100644
index 0000000..285fccf
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/world/contentmanagement/datasnapshot.ini.example
@@ -0,0 +1,33 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[DataSnapshot]
10 ; The following set of configs pertains to search.
11 ; Set index_sims to true to enable search engines to index your searchable data
12 ; If false, no data will be exposed, DataSnapshot module will be off, and you can ignore the rest of these search-related configs
13 ; default is false
14 index_sims = false
15
16 ; The variable data_exposure controls what the regions expose:
17 ; minimum: exposes only things explicitly marked for search
18 ; all: exposes everything
19 data_exposure = minimum
20
21 ; If search is on, change this to your grid name; will be ignored for standalones
22 gridname = "OSGrid"
23
24 ; Period between data snapshots, in seconds. 20 minutes, for starters, so that you see the initial changes fast.
25 ; Later, you may want to increase this to 3600 (1 hour) or more
26 default_snapshot_period = 1200
27
28 ; This will be created in bin, if it doesn't exist already. It will hold the data snapshots.
29 snapshot_cache_directory = "DataSnapshot"
30
31 ; This semicolon-separated string serves to notify specific data services about the existence
32 ; of this sim. Uncomment if you want to index your data with this and/or other search providers.
33 ;data_services="http://metaverseink.com/cgi-bin/register.py"
diff --git a/bin/config.preview.donotuseyet/region/world/contentmanagement/svn.ini.example b/bin/config.preview.donotuseyet/region/world/contentmanagement/svn.ini.example
new file mode 100644
index 0000000..802c143
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/world/contentmanagement/svn.ini.example
@@ -0,0 +1,17 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[SVN]
10 Enabled = false
11 Directory = SVNmodule\repo
12 URL = "svn://your.repo.here/"
13 Username = "user"
14 Password = "password"
15 ImportOnStartup = false
16 Autosave = false
17 AutoSavePeriod = 15 ; Number of minutes between autosave backups
diff --git a/bin/config.preview.donotuseyet/region/world/sun.ini.example b/bin/config.preview.donotuseyet/region/world/sun.ini.example
new file mode 100644
index 0000000..b98a74e
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/world/sun.ini.example
@@ -0,0 +1,20 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9; Uncomment the following to control the progression of daytime
10; in the Sim. The defaults are what is shown below
11;[Sun]
12 ; number of wall clock hours for an opensim day. 24.0 would mean realtime
13 ;day_length = 4
14 ; Year length in days
15 ;year_length = 60
16 ; Day to Night Ratio
17 ;day_night_offset = 0.45
18 ; send a Sun update every update_interval # of frames. A lower number will
19 ; make for smoother sun transition at the cost of network
20 ;update_interval = 100
diff --git a/bin/config.preview.donotuseyet/region/world/trees.ini.example b/bin/config.preview.donotuseyet/region/world/trees.ini.example
new file mode 100644
index 0000000..f3151ef
--- /dev/null
+++ b/bin/config.preview.donotuseyet/region/world/trees.ini.example
@@ -0,0 +1,15 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[Trees]
10 ; Enable this to allow the tree module to manage your sim trees, including growing, reproducing and dying
11 ; default is false
12 active_trees = false
13
14 ; Density of tree population
15 tree_density = 1000.0