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