]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
OpportunisticQM moved from core to default plugins.
[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   GNUsocial
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://www.gnu.org/software/social/
28  */
29
30 $default =
31     array('site' =>
32         array('name' => 'Just another GNU social node',
33               'nickname' => 'gnusocial',
34               'wildcard' => null,
35               'server' => $_server,
36               'theme' => 'neo',
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' => true,
56               'private' => true,
57               'ssl' => 'never',
58               'sslserver' => null,
59               'dupelimit' => 60, // default for same person saying the same thing
60               'textlimit' => 0, // in chars; 0 == no limit
61               'indent' => true,
62               'use_x_sendfile' => false,
63               'notice' => null, // site wide notice text
64               'build' => 1, // build number, for code-dependent cache
65               ),
66         'db' =>
67           array('database' => null, // must be set
68               'schema_location' => INSTALLDIR . '/classes',
69               'class_location' => INSTALLDIR . '/classes',
70               'require_prefix' => 'classes/',
71               'class_prefix' => '',
72               'mirror' => null,
73               'utf8' => true,
74               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
75               'quote_identifiers' => false,
76               'type' => 'mysql',
77               'schemacheck' => 'runtime', // 'runtime' or 'script'
78               'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
79               'log_queries' => false, // true to log all DB queries
80               'log_slow_queries' => 0, // if set, log queries taking over N seconds
81               'mysql_foreign_keys' => false), // if set, enables experimental foreign key support on MySQL
82         'syslog' =>
83         array('appname' => 'statusnet', # for syslog
84               'priority' => 'debug', # XXX: currently ignored
85               'facility' => LOG_USER),
86         'queue' =>
87         array('enabled' => true,
88               'daemon' => false, # Use queuedaemon. Default to false
89               'subsystem' => 'db', # default to database, or 'stomp'
90               'stomp_server' => null,
91               'queue_basename' => '/queue/statusnet/',
92               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
93               'stomp_username' => null,
94               'stomp_password' => null,
95               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
96               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
97               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
98               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
99               'monitor' => null, // URL to monitor ping endpoint (work in progress)
100               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
101               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
102               'debug_memory' => false, // true to spit memory usage to log
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         'image' =>
134         array('jpegquality' => 85),
135         'avatar' =>
136         array('server' => null,
137               'dir' => INSTALLDIR . '/avatar/',
138               'path' => $_path . '/avatar/',
139               'ssl' => null,
140               'maxsize' => 300),
141         'background' =>
142         array('server' => null,
143               'dir' => INSTALLDIR . '/background/',
144               'path' => $_path . '/background/',
145               'ssl' => null),
146         'public' =>
147         array('localonly' => true,
148               'blacklist' => array(),
149               'autosource' => array()),
150         'theme' =>
151         array('server' => null,
152               'dir' => null,
153               'path'=> null,
154               'ssl' => null),
155         'usertheme' =>
156         array('linkcolor' => 'black',
157               'backgroundcolor' => 'black'),
158         'theme_upload' =>
159         array('enabled' => extension_loaded('zip')),
160         'javascript' =>
161         array('server' => null,
162               'path'=> null,
163               'ssl' => null,
164               'bustframes' => true),
165         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
166         array('server' => null,
167               'dir' => null,
168               'path' => null,
169               'ssl' => null),
170         'throttle' =>
171         array('enabled' => false, // whether to throttle edits; false by default
172               'count' => 20, // number of allowed messages in timespan
173               'timespan' => 600), // timespan for throttling
174         'invite' =>
175         array('enabled' => true),
176         'tag' =>
177         array('dropoff' => 864000.0,   # controls weighting based on age
178               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
179         'popular' =>
180         array('dropoff' => 864000.0,   # controls weighting based on age
181               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
182         'daemon' =>
183         array('piddir' => '/var/run',
184               'user' => false,
185               'group' => false),
186         'emailpost' =>
187         array('enabled' => false),
188         'sms' =>
189         array('enabled' => false),
190         'twitterimport' =>
191         array('enabled' => false),
192         'integration' =>
193         array('source' => 'StatusNet', # source attribute for Twitter
194               'taguri' => null), # base for tag URIs
195         'twitter' =>
196         array('signin' => true,
197               'consumer_key' => null,
198               'consumer_secret' => null),
199         'cache' =>
200         array('base' => null),
201         'ping' =>
202         array('notify' => array(),
203               'timeout' => 2),
204         'inboxes' =>
205         array('enabled' => true), # ignored after 0.9.x
206         'newuser' =>
207         array('default' => null,
208               'welcome' => null),
209         'attachments' =>
210         array('server' => null,
211               'dir' => INSTALLDIR . '/file/',
212               'path' => $_path . '/file/',
213               'sslserver' => null,
214               'sslpath' => null,
215               'ssl' => null,
216               'supported' => array(
217                                 'application/vnd.oasis.opendocument.chart'                  => 'odc',
218                                 'application/vnd.oasis.opendocument.formula'                => 'odf',
219                                 'application/vnd.oasis.opendocument.graphics'               => 'odg',
220                                 'application/vnd.oasis.opendocument.graphics-template'      => 'otg',
221                                 'application/vnd.oasis.opendocument.image'                  => 'odi',
222                                 'application/vnd.oasis.opendocument.presentation'           => 'odp',
223                                 'application/vnd.oasis.opendocument.presentation-template'  => 'otp',
224                                 'application/vnd.oasis.opendocument.spreadsheet'            => 'ods',
225                                 'application/vnd.oasis.opendocument.spreadsheet-template'   => 'ots',
226                                 'application/vnd.oasis.opendocument.text'                   => 'odt',
227                                 'application/vnd.oasis.opendocument.text-master'            => 'odm',
228                                 'application/vnd.oasis.opendocument.text-template'          => 'ott',
229                                 'application/vnd.oasis.opendocument.text-web'               => 'oth',
230                                 'application/pdf'   => 'pdf',
231                                 'application/zip'   => 'zip',
232                                 'image/png'         => 'png',
233                                 'image/jpeg'        => 'jpg',
234                                 'image/gif'         => 'gif',
235                                 'image/svg+xml'     => 'svg',
236                                 'image/vnd.microsoft.icon'  => 'ico',
237                                 'audio/ogg'         => 'ogg',
238                                 'audio/mpeg'        => 'mpg',
239                                 'audio/x-speex'     => 'spx',
240                                 'application/ogg'   => 'ogx',
241                                 'text/plain'        => 'txt',
242                                 'video/mpeg'        => 'mpeg',
243                                 'video/mp4'         => 'mp4',
244                                 'video/ogg'         => 'ogv',
245                                 'video/quicktime'   => 'mov',
246                                 'video/webm'        => 'webm',
247                                 ),
248               'file_quota' => 5000000,
249               'user_quota' => 50000000,
250               'monthly_quota' => 15000000,
251               'uploads' => true,
252               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
253               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
254               ),
255         'thumbnail' =>
256         array('crop' => false,      // overridden to true if thumb height === null
257               'maxsize' => 500,     // thumbs bigger than this will not be generated
258               'width' => 500,
259               'height' => 250),
260         'application' =>
261         array('desclimit' => null),
262         'group' =>
263         array('maxaliases' => 3,
264               'desclimit' => null,
265               'addtag' => false),
266         'peopletag' =>
267         array('maxtags' => 100, // maximum number of tags a user can create.
268               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
269               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
270               'desclimit' => null),
271         'oembed' =>
272         array('endpoint' => 'https://noembed.com/embed/',
273               'order' => array('built-in', 'well-known', 'service', 'discovery'),
274         ),
275         'search' =>
276         array('type' => 'like'),
277         'sessions' =>
278         array('handle' => false,   // whether to handle sessions ourselves
279               'debug' => false,    // debugging output for sessions
280               'gc_limit' => 1000), // max sessions to expire at a time
281         'notice' =>
282         array('contentlimit' => null,
283               'defaultscope' => null, // null means 1 if site/private, 0 otherwise
284               'hidespam' => false), // Whether to hide silenced users from timelines
285         'message' =>
286         array('contentlimit' => null),
287         'location' =>
288         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
289               'sharedefault' => false),
290         'logincommand' =>
291         array('disabled' => true),
292         'plugins' =>
293         array('core' => array(
294                             'AuthCrypt' => array(),
295                             'Cronish' => array(),
296                             'LRDD' => array(),
297                             'StrictTransportSecurity' => array(),
298                         ),
299               'default' => array(
300                             'Activity' => array(),
301                             'Bookmark' => array(),
302                             'ClientSideShorten' => array(),
303                             'EmailAuthentication' => array(),
304                             'Event' => array(),
305                             'Oembed' => array(),
306                             'OpenID' => array(),
307                             'OpportunisticQM' => array(),
308                             'Poll' => array(),
309                             'QnA' => array(),
310                             'SearchSub' => array(),
311                             'TagSub' => array(),
312                         ),
313               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
314               'server' => null,
315               'sslserver' => null,
316               'path' => null,
317               'sslpath' => null,
318               ),
319         'pluginlist' => array(),
320         'admin' =>
321         array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
322         'singleuser' =>
323         array('enabled' => false,
324               'nickname' => null),
325         'robotstxt' =>
326         array('crawldelay' => 0,
327               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
328               ),
329         'api' =>
330         array('realm' => null),
331         'nofollow' =>
332         array('subscribers' => true,
333               'members' => true,
334               'peopletag' => true,
335               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
336         'url' =>
337         array('shortener' => 'internal',
338               'maxurllength' => 100,
339               'maxnoticelength' => -1),
340         'http' => // HTTP client settings when contacting other sites
341         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
342               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
343               'proxy_host' => null,
344               'proxy_port' => null,
345               'proxy_user' => null,
346               'proxy_password' => null,
347               'proxy_auth_scheme' => null,
348               ),
349         'router' =>
350         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
351         'discovery' =>
352           array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
353         'performance' => array('high' => false) // disable some features for higher performance; default false
354     );