clockwerk-opensim-config – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 vero 1 [Startup]
2 ;
3 ; Place to create a PID file
4 ; PIDFile = "/tmp/money.pid"
5  
6  
7 [MySql]
8 ;
9 ;Connection parameters of MySQL
10 hostname = localhost
11 database = opensim
12 username = opensim
13 password = ***
14 pooling = false
15 port = 3306
16  
17 ;
18 ; Max DB connections kept by money server.
19 MaxConnection = 20
20  
21  
22 [MoneyServer]
23 ;
24 ; If the user is not found in database,he/she will be created with the default balance.
25 DefaultBalance = 1000
26  
27 ;
28 ; If "00000000-0000-0000-0000-000000000000" is specified, all avatars can get money from system.
29 ; If "" is specified, nobody can get money.
30 BankerAvatar = "00000000-0000-0000-0000-000000000000"
31  
32 ;
33 ; If you want to use llGiveMoney() function normally even when payer doesn't login to OpenSim,
34 ; please set true to this valiable
35 EnableForceTransfer = true
36  
37 ;
38 ; send money to avatar by MoneyScript (for Bonus)
39 ;EnableScriptSendMoney = false
40 ;MoneyScriptAccessKey = "123456789" ;; specify same secret key in include/config.php or WI(XoopenSim/Modlos)
41 ;MoneyScriptIPaddress = "202.26.159.139" ;; not use 127.0.0.1
42  
43 ;
44 ; Message that displayed in blue dialog, when balance is updated.
45 ; If "" is specified, blue dialog is not displayed.
46 ; You can use {0} and {1} in message string.
47 ; {0} means amount and {1} means avatar name or object owner name
48 ;BalanceMessageLandSale = "Paid the Money L${0} for Land." ;; for buy the land
49 ;BalanceMessageScvLandSale = "" ;; for get the money of the sold land
50 ;BalanceMessageSendGift = "Sent Gift L${0} to {1}." ;; for send gift to other avatar
51 ;BalanceMessageReceiveGift = "Received Gift L${0} from {1}." ;; for receieve gift from other avatar
52 ;BalanceMessagePayCharge = "" ;; for upload and group creation charge
53 ;BalanceMessageBuyObject = "Bought the Object L${0} from {1}." ;; for buy the object
54 ;BalanceMessageGetMoney = "Got the Money L${0} from {1}." ;; for get the money from object by llGiveMoney()
55 ;BalanceMessageBuyMoney = "Bought the Money L${0}." ;; for buy the money from system
56 ;BalanceMessageReceiveMoney = "Received L${0} from System." ;; for receive the money from system by send_money() script
57 ;BalanceMessageRollBack = "RollBack the Transaction: L${0} from/to {1}." ;; when roll back ocuurred
58  
59 ;
60 ; for HTTPS
61 ServerCertFilename = "SineWaveCert.pfx"
62 ServerCertPassword = "123"
63  
64 ;
65 ;
66