From b297913e2b4831a7dbc57c867f7ad6a46bd65f44 Mon Sep 17 00:00:00 2001
From: dahlia
Date: Fri, 8 Jan 2010 22:58:01 -0800
Subject: Add some notes to OpenSim.ini.example suggesting to use MySQL with
 Mono installations

---
 bin/OpenSim.ini.example | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

(limited to 'bin')

diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 0667047..15623de 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -126,11 +126,16 @@
     ;storage_plugin = "OpenSim.Data.Null.dll"
 
     ; --- To use sqlite as region storage:
+    ; NOTE: SQLite and OpenSim are not functioning properly with Mono 2.4.3 or greater.
+    ; If you are using Mono you probably should be using MySQL
     storage_plugin = "OpenSim.Data.SQLite.dll"
     storage_connection_string="URI=file:OpenSim.db,version=3";
 
-    ; --- To use MySQL storage, supply your own connectionstring (this is only an example):
+    ; --- To use MySQL storage, supply your own connection string (this is only an example):
     ;     note that the supplied account needs create privilegies if you want it to auto-create needed tables.
+    ;
+    ; -->>> There are multiple connection strings defined in several places in this file. Check it carefully!
+    ;
     ; storage_plugin="OpenSim.Data.MySQL.dll"
     ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
     ; If you want to use a different database/server for estate data, then
-- 
cgit v1.1


From b0a7bcb2c814554dff4fc6dcdcd45ccf700601e9 Mon Sep 17 00:00:00 2001
From: Melanie
Date: Sun, 10 Jan 2010 03:17:40 +0000
Subject: Add "StartDisabled" to [Startup] to make all regions start up with
 logins disabled until enabled from the console. Add the AccessModule (WIP)

---
 bin/OpenSim.ini.example | 3 +++
 1 file changed, 3 insertions(+)

(limited to 'bin')

diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 15623de..af6345a 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -268,6 +268,9 @@
     ; Enable JSON simulator data by setting a URI name (case sensitive)
     ; Stats_URI = "jsonSimStats"
 
+    ; Make OpenSim start all regions woth logins disabled. They will need
+    ; to be enabled from the console if this is set
+    ; StartDisabled = false
 
 [SMTP]
     enabled=false
-- 
cgit v1.1


From e966e51b89bdc0fc36482621f8954e5faffc8fbf Mon Sep 17 00:00:00 2001
From: Melanie
Date: Mon, 11 Jan 2010 03:29:24 +0000
Subject: Add a console_port setting to let the rest console use a different
 port from the region server

---
 bin/OpenSim.ini.example | 1 +
 1 file changed, 1 insertion(+)

(limited to 'bin')

diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index af6345a..d09dc67 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -326,6 +326,7 @@
     ConsoleUser = "Test"
     ConsolePass = "secret"
     http_listener_port = 9000
+    console_port = 0
     default_location_x = 1000
     default_location_y = 1000
 
-- 
cgit v1.1


From 2b478a61d09a75f0c7e575b7e43807a6c9328e73 Mon Sep 17 00:00:00 2001
From: Melanie
Date: Mon, 11 Jan 2010 03:49:05 +0000
Subject: Add the console port setting to ROBUST, too

---
 bin/OpenSim.Server.ini.example | 1 +
 1 file changed, 1 insertion(+)

(limited to 'bin')

diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index f3d222f..12af0cd 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -22,6 +22,7 @@ port = 8003
 ; * Leave commented to diable logins to the console
 ;ConsoleUser = Test
 ;ConsolePass = secret
+;ConsolePort = 0
 
 ; * As an example, the below configuration precisely mimicks the legacy
 ; * asset server. It is read by the asset IN connector (defined above)
-- 
cgit v1.1


From fcaef85029b98b13d884869b6da7e561e365fcf8 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Mon, 11 Jan 2010 17:13:03 +0000
Subject: Add explanation about AllowModFunctions to OpenSim.ini.example This
 switch allows scripts to pass messages to modules via the modSendCommand()
 function Modules can then send messages back to scripts via the link_message
 LSL event through invoking DispatchReply() on
 OpenSim.Region.Framework.Interfaces.IScriptModuleComms

---
 bin/OpenSim.ini.example | 5 +++++
 1 file changed, 5 insertions(+)

(limited to 'bin')

diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index d09dc67..6a117c9 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -987,6 +987,11 @@
     ; Compile debug info (line numbers) into the script assemblies
     CompileWithDebugInformation = true
 
+    ; Allow the user of mod* functions.  This allows a script to pass messages
+    ; to a region module via the modSendCommand() function
+    ; Default is false
+    AllowMODFunctions = false
+
     ; Allow the use of os* functions (some are dangerous)
     AllowOSFunctions = false
 
-- 
cgit v1.1


From 7467a471ca2d3e6066f89d8bca4ba956e07fbb6b Mon Sep 17 00:00:00 2001
From: Melanie
Date: Mon, 11 Jan 2010 22:52:05 +0000
Subject: Add the option to reject duplicate region names

---
 bin/OpenSim.Server.ini.example | 1 +
 1 file changed, 1 insertion(+)

(limited to 'bin')

diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index 12af0cd..d4e05af 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -80,3 +80,4 @@ LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
 StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;"
 Realm = "regions"
+; AllowDuplicateNames = "True"
-- 
cgit v1.1