]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
New access admin panel for site registration settings
[quix0rs-gnu-social.git] / lib / default.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Default settings for core configuration
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Config
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-9 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 $default =
31   array('site' =>
32         array('name' => 'Just another StatusNet microblog',
33               'nickname' => 'statusnet',
34               'wildcard' => null,
35               'server' => $_server,
36               'theme' => 'default',
37               'path' => $_path,
38               'logfile' => null,
39               'logo' => null,
40               'logdebug' => false,
41               'fancy' => false,
42               'locale_path' => INSTALLDIR.'/locale',
43               'language' => 'en_US',
44               'languages' => get_all_languages(),
45               'email' =>
46               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
47               'broughtby' => null,
48               'timezone' => 'UTC',
49               'broughtbyurl' => null,
50               'closed' => false,
51               'inviteonly' => false,
52               'private' => false,
53               'ssl' => 'never',
54               'sslserver' => null,
55               'shorturllength' => 30,
56               'dupelimit' => 60, # default for same person saying the same thing
57               'textlimit' => 140,
58               'indent' => true,
59               'use_x_sendfile' => false
60               ),
61         'db' =>
62         array('database' => 'YOU HAVE TO SET THIS IN config.php',
63               'schema_location' => INSTALLDIR . '/classes',
64               'class_location' => INSTALLDIR . '/classes',
65               'require_prefix' => 'classes/',
66               'class_prefix' => '',
67               'mirror' => null,
68               'utf8' => true,
69               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
70               'quote_identifiers' => false,
71               'type' => 'mysql',
72               'schemacheck' => 'runtime', // 'runtime' or 'script'
73               'log_queries' => false, // true to log all DB queries
74               'log_slow_queries' => 0), // if set, log queries taking over N seconds
75         'syslog' =>
76         array('appname' => 'statusnet', # for syslog
77               'priority' => 'debug', # XXX: currently ignored
78               'facility' => LOG_USER),
79         'queue' =>
80         array('enabled' => false,
81               'subsystem' => 'db', # default to database, or 'stomp'
82               'stomp_server' => null,
83               'queue_basename' => '/queue/statusnet/',
84               'control_channel' => '/topic/statusnet-control', // broadcasts to all queue daemons
85               'stomp_username' => null,
86               'stomp_password' => null,
87               'monitor' => null, // URL to monitor ping endpoint (work in progress)
88               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
89               'debug_memory' => false, // true to spit memory usage to log
90               ),
91         'license' =>
92         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
93               'owner' => null, # can be name of content owner e.g. for enterprise
94               'url' => 'http://creativecommons.org/licenses/by/3.0/',
95               'title' => 'Creative Commons Attribution 3.0',
96               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
97         'mail' =>
98         array('backend' => 'mail',
99               'params' => null,
100               'domain_check' => true),
101         'nickname' =>
102         array('blacklist' => array(),
103               'featured' => array()),
104         'profile' =>
105         array('banned' => array(),
106               'biolimit' => null),
107         'avatar' =>
108         array('server' => null,
109               'dir' => INSTALLDIR . '/avatar/',
110               'path' => $_path . '/avatar/'),
111         'background' =>
112         array('server' => null,
113               'dir' => INSTALLDIR . '/background/',
114               'path' => $_path . '/background/'),
115         'public' =>
116         array('localonly' => true,
117               'blacklist' => array(),
118               'autosource' => array()),
119         'theme' =>
120         array('server' => null,
121               'dir' => null,
122               'path'=> null),
123         'throttle' =>
124         array('enabled' => false, // whether to throttle edits; false by default
125               'count' => 20, // number of allowed messages in timespan
126               'timespan' => 600), // timespan for throttling
127         'xmpp' =>
128         array('enabled' => false,
129               'server' => 'INVALID SERVER',
130               'port' => 5222,
131               'user' => 'update',
132               'encryption' => true,
133               'resource' => 'uniquename',
134               'password' => 'blahblahblah',
135               'host' => null, # only set if != server
136               'debug' => false, # print extra debug info
137               'public' => array()), # JIDs of users who want to receive the public stream
138         'invite' =>
139         array('enabled' => true),
140         'tag' =>
141         array('dropoff' => 864000.0),
142         'popular' =>
143         array('dropoff' => 864000.0),
144         'daemon' =>
145         array('piddir' => '/var/run',
146               'user' => false,
147               'group' => false),
148         'emailpost' =>
149         array('enabled' => true),
150         'sms' =>
151         array('enabled' => true),
152         'twitterimport' =>
153         array('enabled' => false),
154         'integration' =>
155         array('source' => 'StatusNet', # source attribute for Twitter
156               'taguri' => $_server.',2009'), # base for tag URIs
157         'twitter' =>
158         array('enabled'       => true,
159               'consumer_key'    => null,
160               'consumer_secret' => null),
161         'cache' =>
162         array('base' => null),
163         'ping' =>
164         array('notify' => array()),
165         'inboxes' =>
166         array('enabled' => true), # ignored after 0.9.x
167         'newuser' =>
168         array('default' => null,
169               'welcome' => null),
170         'snapshot' =>
171         array('run' => 'web',
172               'frequency' => 10000,
173               'reporturl' => 'http://status.net/stats/report'),
174         'attachments' =>
175         array('server' => null,
176               'dir' => INSTALLDIR . '/file/',
177               'path' => $_path . '/file/',
178               'supported' => array('image/png',
179                                    'image/jpeg',
180                                    'image/gif',
181                                    'image/svg+xml',
182                                    'audio/mpeg',
183                                    'audio/x-speex',
184                                    'application/ogg',
185                                    'application/pdf',
186                                    'application/vnd.oasis.opendocument.text',
187                                    'application/vnd.oasis.opendocument.text-template',
188                                    'application/vnd.oasis.opendocument.graphics',
189                                    'application/vnd.oasis.opendocument.graphics-template',
190                                    'application/vnd.oasis.opendocument.presentation',
191                                    'application/vnd.oasis.opendocument.presentation-template',
192                                    'application/vnd.oasis.opendocument.spreadsheet',
193                                    'application/vnd.oasis.opendocument.spreadsheet-template',
194                                    'application/vnd.oasis.opendocument.chart',
195                                    'application/vnd.oasis.opendocument.chart-template',
196                                    'application/vnd.oasis.opendocument.image',
197                                    'application/vnd.oasis.opendocument.image-template',
198                                    'application/vnd.oasis.opendocument.formula',
199                                    'application/vnd.oasis.opendocument.formula-template',
200                                    'application/vnd.oasis.opendocument.text-master',
201                                    'application/vnd.oasis.opendocument.text-web',
202                                    'application/x-zip',
203                                    'application/zip',
204                                    'text/plain',
205                                    'video/mpeg',
206                                    'video/mp4',
207                                    'video/quicktime',
208                                    'video/mpeg'),
209               'file_quota' => 5000000,
210               'user_quota' => 50000000,
211               'monthly_quota' => 15000000,
212               'uploads' => true,
213               'filecommand' => '/usr/bin/file',
214               ),
215         'application' =>
216         array('desclimit' => null),
217         'group' =>
218         array('maxaliases' => 3,
219               'desclimit' => null),
220         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
221         'search' =>
222         array('type' => 'fulltext'),
223         'sessions' =>
224         array('handle' => false, // whether to handle sessions ourselves
225               'debug' => false), // debugging output for sessions
226         'design' =>
227         array('backgroundcolor' => null, // null -> 'use theme default'
228               'contentcolor' => null,
229               'sidebarcolor' => null,
230               'textcolor' => null,
231               'linkcolor' => null,
232               'backgroundimage' => null,
233               'disposition' => null),
234         'notice' =>
235         array('contentlimit' => null),
236         'message' =>
237         array('contentlimit' => null),
238         'location' =>
239         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
240               'sharedefault' => true),
241         'omb' =>
242         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
243         'logincommand' =>
244         array('disabled' => true),
245         'plugins' =>
246         array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
247                                                    'freeService' => true,
248                                                    'serviceUrl'=>'http://ur1.ca/'),
249                                  'PtitUrl' => array('shortenerName' => 'ptiturl.com',
250                                                     'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
251                                  'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
252                                                       array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
253                                                       array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
254                                                       array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
255                                  'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
256                                  'Geonames' => null,
257                                  'Mapstraction' => null,
258                                  'Linkback' => null,
259                                  'WikiHashtags' => null,
260                                  'OpenID' => null),
261               ),
262         'admin' =>
263         array('panels' => array('design', 'site', 'user', 'paths', 'access')),
264         'singleuser' =>
265         array('enabled' => false,
266               'nickname' => null),
267         );