diff options
author | Justin Clarke Casey | 2009-03-13 17:34:11 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-13 17:34:11 +0000 |
commit | d17314f331a40f58bae6ae891bc87f018c430450 (patch) | |
tree | e69cdb5557a9afe9411b1b0fa439967478cce2e6 /bin/config.preview.donotuseyet/region | |
parent | Mark AssetBase.Metadata with [XmlIgnore] (diff) | |
download | opensim-SC_OLD-d17314f331a40f58bae6ae891bc87f018c430450.zip opensim-SC_OLD-d17314f331a40f58bae6ae891bc87f018c430450.tar.gz opensim-SC_OLD-d17314f331a40f58bae6ae891bc87f018c430450.tar.bz2 opensim-SC_OLD-d17314f331a40f58bae6ae891bc87f018c430450.tar.xz |
* Config preview round 2
Diffstat (limited to '')
19 files changed, 133 insertions, 458 deletions
diff --git a/bin/config.preview.donotuseyet/region/user/concierge.ini.example b/bin/config.preview.donotuseyet-v2/defaults/applications.ini.defaults index 0f6f051..eac488c 100644 --- a/bin/config.preview.donotuseyet/region/user/concierge.ini.example +++ b/bin/config.preview.donotuseyet-v2/defaults/applications.ini.defaults | |||
@@ -1,10 +1,4 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | 1 | ; Settings for applications that are bundled with the core OpenSimulator package |
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 | 2 | ||
9 | [Concierge] | 3 | [Concierge] |
10 | ; Enable concierge module | 4 | ; Enable concierge module |
@@ -35,3 +29,19 @@ | |||
35 | ; {0} is replaced with the region's name | 29 | ; {0} is replaced with the region's name |
36 | ; {1} is replaced with the region's UUID | 30 | ; {1} is replaced with the region's UUID |
37 | broker = "http://broker.place.com/{1}" | 31 | broker = "http://broker.place.com/{1}" |
32 | |||
33 | |||
34 | ;[CMS] | ||
35 | ;enabled = true | ||
36 | ;channel = 345 | ||
37 | |||
38 | |||
39 | [SVN] | ||
40 | Enabled = false | ||
41 | Directory = SVNmodule\repo | ||
42 | URL = "svn://your.repo.here/" | ||
43 | Username = "user" | ||
44 | Password = "password" | ||
45 | ImportOnStartup = false | ||
46 | Autosave = false | ||
47 | AutoSavePeriod = 15 ; Number of minutes between autosave backups | ||
diff --git a/bin/config.preview.donotuseyet/region/physics/engines/ode.ini.example b/bin/config.preview.donotuseyet-v2/defaults/physics.ini.defaults index ec9380a..3822aca 100644 --- a/bin/config.preview.donotuseyet/region/physics/engines/ode.ini.example +++ b/bin/config.preview.donotuseyet-v2/defaults/physics.ini.defaults | |||
@@ -1,10 +1,4 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | 1 | ; Physics settings |
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 | 2 | ||
9 | [ODEPhysicsSettings] | 3 | [ODEPhysicsSettings] |
10 | ;## | 4 | ;## |
diff --git a/bin/config.preview.donotuseyet/region/scripting/engines/dotnetengine.ini.example b/bin/config.preview.donotuseyet-v2/defaults/scriptengines.ini.defaults index ee624de..c615581 100644 --- a/bin/config.preview.donotuseyet/region/scripting/engines/dotnetengine.ini.example +++ b/bin/config.preview.donotuseyet-v2/defaults/scriptengines.ini.defaults | |||
@@ -1,10 +1,87 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | 1 | ; Script engine settings |
2 | ; please copy/rename this file from .ini.example file to .ini. For example | 2 | |
3 | ; | 3 | |
4 | ; chat.ini.example => chat.ini | 4 | [XEngine] |
5 | ; | 5 | ; Enable this engine in this OpenSim instance |
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | 6 | Enabled = true |
7 | ; | 7 | |
8 | ; How many threads to keep alive even if nothing is happening | ||
9 | MinThreads = 2 | ||
10 | |||
11 | ; How many threads to start at maximum load | ||
12 | MaxThreads = 100 | ||
13 | |||
14 | ; Time a thread must be idle (in seconds) before it dies | ||
15 | IdleTimeout = 60 | ||
16 | |||
17 | ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest") | ||
18 | Priority = "BelowNormal" | ||
19 | |||
20 | ; Maximum number of events to queue for a script (excluding timers) | ||
21 | MaxScriptEventQueue = 300 | ||
22 | |||
23 | ; Stack size per thread created | ||
24 | ThreadStackSize = 262144 | ||
25 | |||
26 | ; Rate to poll for asynchronous command replies (ms) | ||
27 | ; currently unused | ||
28 | ;AsyncLLCommandLoopms = 50 | ||
29 | |||
30 | ; Save the source of all compiled scripts | ||
31 | WriteScriptSourceToDebugFile = false | ||
32 | |||
33 | ; Default language for scripts | ||
34 | DefaultCompileLanguage = lsl | ||
35 | |||
36 | ; List of allowed languages (lsl,vb,js,cs) | ||
37 | ; AllowedCompilers=lsl,cs,js,vb. | ||
38 | ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk. | ||
39 | AllowedCompilers=lsl | ||
40 | |||
41 | ; Compile debug info (line numbers) into the script assemblies | ||
42 | CompileWithDebugInformation = true | ||
43 | |||
44 | ; Allow the use of os* functions (some are dangerous) | ||
45 | AllowOSFunctions = false | ||
46 | |||
47 | ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe | ||
48 | OSFunctionThreatLevel = VeryLow | ||
49 | |||
50 | ; Interval (s) between background save of script states | ||
51 | SaveInterval = 120 | ||
52 | |||
53 | ; Interval (s) between maintenance runs (0 = disable) | ||
54 | MaintenanceInterval = 10 | ||
55 | |||
56 | ; Time a script can spend in an event handler before it is interrupted | ||
57 | EventLimit = 30 | ||
58 | |||
59 | ; If a script overruns it's event limit, kill the script? | ||
60 | KillTimedOutScripts = false | ||
61 | |||
62 | ; Sets the multiplier for the scripting delays | ||
63 | ScriptDelayFactor = 1.0 | ||
64 | |||
65 | ; The factor the 10 m distances llimits are multiplied by | ||
66 | ScriptDistanceLimitFactor = 1.0 | ||
67 | |||
68 | ; OS Functions enable/disable | ||
69 | ; For each function, you can add one line, as shown | ||
70 | ; The default for all functions allows them if below threat level | ||
71 | |||
72 | ; true allows the use of the function unconditionally | ||
73 | ; Allow_osSetRegionWaterHeight = true | ||
74 | |||
75 | ; false disables the function completely | ||
76 | ; Allow_osSetRegionWaterHeight = false | ||
77 | |||
78 | ; Comma separated list of UUIDS allows the function for that list of UUIDS | ||
79 | ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb | ||
80 | |||
81 | ; Allow for llCreateLink and llBreakLink to work without asking for permission | ||
82 | ; only enable this in a trusted environment otherwise you may be subject to hijacking | ||
83 | ; AutomaticLinkPermission = false | ||
84 | |||
8 | 85 | ||
9 | [ScriptEngine.DotNetEngine] | 86 | [ScriptEngine.DotNetEngine] |
10 | Enabled = true | 87 | Enabled = true |
@@ -126,3 +203,9 @@ | |||
126 | ; Remove old scripts on next startup | 203 | ; Remove old scripts on next startup |
127 | ; currently unused | 204 | ; currently unused |
128 | ;CleanUpOldScriptsOnStartup=true | 205 | ;CleanUpOldScriptsOnStartup=true |
206 | |||
207 | |||
208 | [MRM] | ||
209 | ; Enables the Mini Region Modules Script Engine. WARNING: SECURITY RISK. | ||
210 | ; default is false | ||
211 | Enabled = false | ||
diff --git a/bin/config.preview.donotuseyet/region/scripting/regionready.ini.example b/bin/config.preview.donotuseyet-v2/defaults/scripting.ini.defaults index e64139e..12dd042 100644 --- a/bin/config.preview.donotuseyet/region/scripting/regionready.ini.example +++ b/bin/config.preview.donotuseyet-v2/defaults/scripting.ini.defaults | |||
@@ -1,10 +1,16 @@ | |||
1 | ; This file shows initialization defaults for OpenSimulator. If you want to override these | 1 | ; Scripting settings |
2 | ; please copy/rename this file from .ini.example file to .ini. For example | 2 | |
3 | ; | 3 | [LL-Functions] |
4 | ; chat.ini.example => chat.ini | 4 | ; Set the following to true to allow administrator owned scripts to execute console commands |
5 | ; | 5 | ; currently unused |
6 | ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini | 6 | ; AllowosConsoleCommand=false |
7 | ; | 7 | |
8 | AllowGodFunctions = false | ||
9 | |||
10 | ; Maximum number of llListen events we allow per script | ||
11 | ; Set this to 0 to have no limit imposed. | ||
12 | max_listens_per_script = 64 | ||
13 | |||
8 | 14 | ||
9 | [RegionReady] | 15 | [RegionReady] |
10 | ; Enable this module to get notified once all items and scripts in the region have been completely loaded and compiled | 16 | ; Enable this module to get notified once all items and scripts in the region have been completely loaded and compiled |
@@ -18,3 +24,15 @@ | |||
18 | ; - the third field is a number indicating how many scripts failed to compile | 24 | ; - the third field is a number indicating how many scripts failed to compile |
19 | ; - "oar error" if supplied, provides the error message from the OAR load | 25 | ; - "oar error" if supplied, provides the error message from the OAR load |
20 | channel_notify = -800 | 26 | channel_notify = -800 |
27 | |||
28 | |||
29 | [SMTP] | ||
30 | enabled=false | ||
31 | |||
32 | ;enabled=true | ||
33 | ;internal_object_host=lsl.opensim.local | ||
34 | ;host_domain_header_from=127.0.0.1 | ||
35 | ;SMTP_SERVER_HOSTNAME=127.0.0.1 | ||
36 | ;SMTP_SERVER_PORT=25 | ||
37 | ;SMTP_SERVER_LOGIN=foo | ||
38 | ;SMTP_SERVER_PASSWORD=bar | ||
diff --git a/bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example b/bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example deleted file mode 100644 index 0c194ae..0000000 --- a/bin/config.preview.donotuseyet/region/scripting/engines/mrm.ini.example +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
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 deleted file mode 100644 index b65e422..0000000 --- a/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example +++ /dev/null | |||
@@ -1,88 +0,0 @@ | |||
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 deleted file mode 100644 index e7ab7a9..0000000 --- a/bin/config.preview.donotuseyet/region/scripting/ll-functions.ini.example +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
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/smtp.ini.example b/bin/config.preview.donotuseyet/region/scripting/smtp.ini.example deleted file mode 100644 index 5b423ab..0000000 --- a/bin/config.preview.donotuseyet/region/scripting/smtp.ini.example +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
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 deleted file mode 100644 index 4e39256..0000000 --- a/bin/config.preview.donotuseyet/region/user/chat/chat.ini.example +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
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 deleted file mode 100644 index a94a89e..0000000 --- a/bin/config.preview.donotuseyet/region/user/chat/irc.ini.example +++ /dev/null | |||
@@ -1,61 +0,0 @@ | |||
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 deleted file mode 100644 index f7f708b..0000000 --- a/bin/config.preview.donotuseyet/region/user/chat/messaging.ini.example +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
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/economy.ini.example b/bin/config.preview.donotuseyet/region/user/economy.ini.example deleted file mode 100644 index 33343bf..0000000 --- a/bin/config.preview.donotuseyet/region/user/economy.ini.example +++ /dev/null | |||
@@ -1,64 +0,0 @@ | |||
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 deleted file mode 100644 index fc0b0e8..0000000 --- a/bin/config.preview.donotuseyet/region/user/voice/asterisk.ini.example +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
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 deleted file mode 100644 index 6485f20..0000000 --- a/bin/config.preview.donotuseyet/region/user/voice/voice.ini.example +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
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 deleted file mode 100644 index d5a624d..0000000 --- a/bin/config.preview.donotuseyet/region/world/contentmanagement/cms.ini.example +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
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 deleted file mode 100644 index 285fccf..0000000 --- a/bin/config.preview.donotuseyet/region/world/contentmanagement/datasnapshot.ini.example +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
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 deleted file mode 100644 index 802c143..0000000 --- a/bin/config.preview.donotuseyet/region/world/contentmanagement/svn.ini.example +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
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 deleted file mode 100644 index b98a74e..0000000 --- a/bin/config.preview.donotuseyet/region/world/sun.ini.example +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
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 deleted file mode 100644 index f3151ef..0000000 --- a/bin/config.preview.donotuseyet/region/world/trees.ini.example +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
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 | ||