]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
Merge branch 'testing'
[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               'ssllogo' => null,
41               'logdebug' => false,
42               'logperf' => false, // Enable to dump performance counters to syslog
43               'logperf_detail' => false, // Enable to dump every counter hit
44               'fancy' => false,
45               'locale_path' => INSTALLDIR.'/locale',
46               'language' => 'en',
47               'langdetect' => true,
48               'languages' => get_all_languages(),
49               'email' =>
50               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
51               'broughtby' => null,
52               'timezone' => 'UTC',
53               'broughtbyurl' => null,
54               'closed' => false,
55               'inviteonly' => false,
56               'private' => false,
57               'ssl' => 'never',
58               'sslserver' => null,
59               'shorturllength' => 30,
60               'dupelimit' => 60, // default for same person saying the same thing
61               'textlimit' => 140,
62               'indent' => true,
63               'use_x_sendfile' => false,
64               'notice' => null, // site wide notice text
65               'build' => 1, // build number, for code-dependent cache
66               ),
67         'db' =>
68         array('database' => 'YOU HAVE TO SET THIS IN config.php',
69               'schema_location' => INSTALLDIR . '/classes',
70               'class_location' => INSTALLDIR . '/classes',
71               'require_prefix' => 'classes/',
72               'class_prefix' => '',
73               'mirror' => null,
74               'utf8' => true,
75               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
76               'quote_identifiers' => false,
77               'type' => 'mysql',
78               'schemacheck' => 'runtime', // 'runtime' or 'script'
79               'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
80               'log_queries' => false, // true to log all DB queries
81               'log_slow_queries' => 0), // if set, log queries taking over N seconds
82         'syslog' =>
83         array('appname' => 'statusnet', # for syslog
84               'priority' => 'debug', # XXX: currently ignored
85               'facility' => LOG_USER),
86         'queue' =>
87         array('enabled' => false,
88               'subsystem' => 'db', # default to database, or 'stomp'
89               'stomp_server' => null,
90               'queue_basename' => '/queue/statusnet/',
91               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
92               'stomp_username' => null,
93               'stomp_password' => null,
94               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
95               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
96               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
97               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
98               'monitor' => null, // URL to monitor ping endpoint (work in progress)
99               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
100               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
101               'debug_memory' => false, // true to spit memory usage to log
102               'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
103               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
104                                      // Default will share all queues for all sites within each group.
105                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
106                                      // using nickname identifier as site.
107                                      //
108                                      // 'main/distrib' separate "distrib" queue covering all sites
109                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
110               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
111               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
112               ),
113         'license' =>
114         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
115               'owner' => null, # can be name of content owner e.g. for enterprise
116               'url' => 'http://creativecommons.org/licenses/by/3.0/',
117               'title' => 'Creative Commons Attribution 3.0',
118               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
119         'mail' =>
120         array('backend' => 'mail',
121               'params' => null,
122               'domain_check' => true),
123         'nickname' =>
124         array('blacklist' => array(),
125               'featured' => array()),
126         'profile' =>
127         array('banned' => array(),
128               'biolimit' => null,
129               'backup' => true,
130               'restore' => true,
131               'delete' => false,
132               'move' => true),
133         'avatar' =>
134         array('server' => null,
135               'dir' => INSTALLDIR . '/avatar/',
136               'path' => $_path . '/avatar/',
137               'ssl' => null),
138         'background' =>
139         array('server' => null,
140               'dir' => INSTALLDIR . '/background/',
141               'path' => $_path . '/background/',
142               'ssl' => null),
143         'public' =>
144         array('localonly' => true,
145               'blacklist' => array(),
146               'autosource' => array()),
147         'theme' =>
148         array('server' => null,
149               'dir' => null,
150               'path'=> null,
151               'ssl' => null),
152         'theme_upload' =>
153         array('enabled' => extension_loaded('zip')),
154         'javascript' =>
155         array('server' => null,
156               'path'=> null,
157               'ssl' => null),
158         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
159         array('server' => null,
160               'dir' => null,
161               'path' => null,
162               'ssl' => null),
163         'throttle' =>
164         array('enabled' => false, // whether to throttle edits; false by default
165               'count' => 20, // number of allowed messages in timespan
166               'timespan' => 600), // timespan for throttling
167         'xmpp' =>
168         array('enabled' => false,
169               'server' => 'INVALID SERVER',
170               'port' => 5222,
171               'user' => 'update',
172               'encryption' => true,
173               'resource' => 'uniquename',
174               'password' => 'blahblahblah',
175               'host' => null, # only set if != server
176               'debug' => false, # print extra debug info
177               'public' => array()), # JIDs of users who want to receive the public stream
178         'invite' =>
179         array('enabled' => true),
180         'tag' =>
181         array('dropoff' => 864000.0,   # controls weighting based on age
182               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
183         'popular' =>
184         array('dropoff' => 864000.0,   # controls weighting based on age
185               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
186         'daemon' =>
187         array('piddir' => '/var/run',
188               'user' => false,
189               'group' => false),
190         'emailpost' =>
191         array('enabled' => true),
192         'sms' =>
193         array('enabled' => true),
194         'twitterimport' =>
195         array('enabled' => false),
196         'integration' =>
197         array('source' => 'StatusNet', # source attribute for Twitter
198               'taguri' => null), # base for tag URIs
199         'twitter' =>
200         array('signin' => true,
201               'consumer_key' => null,
202               'consumer_secret' => null),
203         'cache' =>
204         array('base' => null),
205         'ping' =>
206         array('notify' => array(),
207               'timeout' => 2),
208         'inboxes' =>
209         array('enabled' => true), # ignored after 0.9.x
210         'newuser' =>
211         array('default' => null,
212               'welcome' => null),
213         'snapshot' =>
214         array('run' => 'web',
215               'frequency' => 10000,
216               'reporturl' => 'http://status.net/stats/report'),
217         'attachments' =>
218         array('server' => null,
219               'dir' => INSTALLDIR . '/file/',
220               'path' => $_path . '/file/',
221               'sslserver' => null,
222               'sslpath' => null,
223               'ssl' => null,
224               'supported' => array('image/png',
225                                    'image/jpeg',
226                                    'image/gif',
227                                    'image/svg+xml',
228                                    'audio/mpeg',
229                                    'audio/x-speex',
230                                    'application/ogg',
231                                    'application/pdf',
232                                    'application/vnd.oasis.opendocument.text',
233                                    'application/vnd.oasis.opendocument.text-template',
234                                    'application/vnd.oasis.opendocument.graphics',
235                                    'application/vnd.oasis.opendocument.graphics-template',
236                                    'application/vnd.oasis.opendocument.presentation',
237                                    'application/vnd.oasis.opendocument.presentation-template',
238                                    'application/vnd.oasis.opendocument.spreadsheet',
239                                    'application/vnd.oasis.opendocument.spreadsheet-template',
240                                    'application/vnd.oasis.opendocument.chart',
241                                    'application/vnd.oasis.opendocument.chart-template',
242                                    'application/vnd.oasis.opendocument.image',
243                                    'application/vnd.oasis.opendocument.image-template',
244                                    'application/vnd.oasis.opendocument.formula',
245                                    'application/vnd.oasis.opendocument.formula-template',
246                                    'application/vnd.oasis.opendocument.text-master',
247                                    'application/vnd.oasis.opendocument.text-web',
248                                    'application/x-zip',
249                                    'application/zip',
250                                    'text/plain',
251                                    'video/mpeg',
252                                    'video/mp4',
253                                    'video/quicktime',
254                                    'video/mpeg'),
255               'file_quota' => 5000000,
256               'user_quota' => 50000000,
257               'monthly_quota' => 15000000,
258               'uploads' => true,
259               'filecommand' => '/usr/bin/file',
260               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
261               'thumb_width' => 100,
262               'thumb_height' => 75,
263               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
264               ),
265         'application' =>
266         array('desclimit' => null),
267         'group' =>
268         array('maxaliases' => 3,
269               'desclimit' => null),
270         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
271         'search' =>
272         array('type' => 'fulltext'),
273         'sessions' =>
274         array('handle' => false,   // whether to handle sessions ourselves
275               'debug' => false,    // debugging output for sessions
276               'gc_limit' => 1000), // max sessions to expire at a time
277         'design' =>
278         array('backgroundcolor' => null, // null -> 'use theme default'
279               'contentcolor' => null,
280               'sidebarcolor' => null,
281               'textcolor' => null,
282               'linkcolor' => null,
283               'backgroundimage' => null,
284               'disposition' => null),
285         'custom_css' =>
286         array('enabled' => true,
287               'css' => ''),
288         'notice' =>
289         array('contentlimit' => null),
290         'message' =>
291         array('contentlimit' => null),
292         'location' =>
293         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
294               'sharedefault' => true),
295         'omb' =>
296         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
297         'logincommand' =>
298         array('disabled' => true),
299         'plugins' =>
300         array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
301                                                    'freeService' => true,
302                                                    'serviceUrl'=>'http://ur1.ca/'),
303                                  'PtitUrl' => array('shortenerName' => 'ptiturl.com',
304                                                     'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
305                                  'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
306                                                       array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
307                                                       array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
308                                                       array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
309                                  'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
310                                  'Geonames' => null,
311                                  'Mapstraction' => null,
312                                  'OStatus' => null,
313                                  'WikiHashtags' => null,
314                                  'RSSCloud' => null,
315                                  'OpenID' => null),
316               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
317               ),
318         'admin' =>
319         array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license')),
320         'singleuser' =>
321         array('enabled' => false,
322               'nickname' => null),
323         'robotstxt' =>
324         array('crawldelay' => 0,
325               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
326               ),
327         'api' =>
328         array('realm' => null),
329         'nofollow' =>
330         array('subscribers' => true,
331               'members' => true,
332               'peopletag' => true,
333               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
334         'http' => // HTTP client settings when contacting other sites
335         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
336               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
337               'proxy_host' => null,
338               'proxy_port' => null,
339               'proxy_user' => null,
340               'proxy_password' => null,
341               'proxy_auth_scheme' => null,
342               ),
343         'router' =>
344         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
345         );