]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
d9f377ecd77db918c768a7d35d400c79c3cabf73
[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-gnu',
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               'fakeaddressrecovery' => true,
52               'broughtby' => null,
53               'timezone' => 'UTC',
54               'broughtbyurl' => null,
55               'closed' => false,
56               'inviteonly' => true,
57               'private' => false,
58               'ssl' => 'never',
59               'sslproxy' => false,   // set to true to force GNU social to think it is HTTPS (i.e. using reverse proxy to enable it)
60               'sslserver' => null,
61               'dupelimit' => 60, // default for same person saying the same thing
62               'textlimit' => 1000, // in chars; 0 == no limit
63               'indent' => true,
64               'use_x_sendfile' => false,
65               'notice' => null, // site wide notice text
66               'build' => 1, // build number, for code-dependent cache
67               ),
68         'db' =>
69           array('database' => null, // must be set
70               'schema_location' => INSTALLDIR . '/classes',
71               'class_location' => INSTALLDIR . '/classes',
72               'require_prefix' => 'classes/',
73               'class_prefix' => '',
74               'mirror' => null,
75               'utf8' => true,
76               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
77               'quote_identifiers' => false,
78               'type' => 'mysql',
79               'schemacheck' => 'runtime', // 'runtime' or 'script'
80               'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
81               'log_queries' => false, // true to log all DB queries
82               'log_slow_queries' => 0, // if set, log queries taking over N seconds
83               'mysql_foreign_keys' => false), // if set, enables experimental foreign key support on MySQL
84         'syslog' =>
85         array('appname' => 'statusnet', # for syslog
86               'priority' => 'debug', # XXX: currently ignored
87               'facility' => LOG_USER),
88         'queue' =>
89         array('enabled' => true,
90               'daemon' => false, # Use queuedaemon. Default to false
91               'subsystem' => 'db', # default to database, or 'stomp'
92               'stomp_server' => null,
93               'queue_basename' => '/queue/statusnet/',
94               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
95               'stomp_username' => null,
96               'stomp_password' => null,
97               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
98               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
99               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
100               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
101               'monitor' => null, // URL to monitor ping endpoint (work in progress)
102               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
103               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
104               'debug_memory' => false, // true to spit memory usage to log
105               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
106                                      // Default will share all queues for all sites within each group.
107                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
108                                      // using nickname identifier as site.
109                                      //
110                                      // 'main/distrib' separate "distrib" queue covering all sites
111                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
112               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
113               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
114               ),
115         'license' =>
116         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
117               'owner' => null, # can be name of content owner e.g. for enterprise
118               'url' => 'https://creativecommons.org/licenses/by/3.0/',
119               'title' => 'Creative Commons Attribution 3.0',
120               'image' => $_path . '/theme/licenses/cc_by_3.0_80x15.png'),
121         'mail' =>
122         array('backend' => 'mail',
123               'params' => null,
124               'domain_check' => true),
125         'nickname' =>
126         array('blacklist' => array(),
127               'featured' => array()),
128         'profile' =>
129         array('banned' => array(),
130               'biolimit' => null,
131               'changenick' => false,
132               'backup' => false,    // can cause DoS, so should be done via CLI
133               'restore' => false,
134               'delete' => false,
135               'move' => true),
136         'image' =>
137         array('jpegquality' => 85),
138         'avatar' =>
139         array('server' => null,
140               'dir' => INSTALLDIR . '/avatar/',
141               'path' => $_path . '/avatar/',
142               'ssl' => null,
143               'maxsize' => 300),
144         'public' =>
145         array('localonly' => false,
146               'blacklist' => array(),
147               'autosource' => array()),
148         'theme' =>
149         array('server' => null,
150               'dir' => null,
151               'path'=> null,
152               'ssl' => null),
153         'usertheme' =>
154         array('linkcolor' => 'black',
155               'backgroundcolor' => 'black'),
156         'theme_upload' =>
157         array('enabled' => extension_loaded('zip')),
158         'javascript' =>
159         array('server' => null,
160               'path'=> null,
161               'ssl' => null,
162               'bustframes' => true),
163         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
164         array('server' => null,
165               'dir' => null,
166               'path' => null,
167               'ssl' => null),
168         'throttle' =>
169         array('enabled' => false, // whether to throttle edits; false by default
170               'count' => 20, // number of allowed messages in timespan
171               'timespan' => 600), // timespan for throttling
172         'invite' =>
173         array('enabled' => true),
174         'tag' =>
175         array('dropoff' => 864000.0,   # controls weighting based on age
176               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
177         'popular' =>
178         array('dropoff' => 864000.0,   # controls weighting based on age
179               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
180         'daemon' =>
181         array('piddir' => sys_get_temp_dir(),
182               'user' => false,
183               'group' => false),
184         'emailpost' =>
185         array('enabled' => false),
186         'sms' =>
187         array('enabled' => false),
188         'twitterimport' =>
189         array('enabled' => false),
190         'integration' =>
191         array('source' => 'StatusNet', # source attribute for Twitter
192               'taguri' => null), # base for tag URIs
193         'twitter' =>
194         array('signin' => true,
195               'consumer_key' => null,
196               'consumer_secret' => null),
197         'cache' =>
198         array('base' => null),
199         'ping' =>
200         array('notify' => array(),
201               'timeout' => 2),
202         'inboxes' =>
203         array('enabled' => true), # ignored after 0.9.x
204         'newuser' =>
205         array('default' => null,
206               'welcome' => null),
207         'linkify' => array(
208             // "bare" below means "without schema", like domain.com vs. https://domain.com
209             'bare_domains' => false,  // convert domain.com to <a href="http://domain.com/" ...>domain.com</a> ?
210             'bare_ipv4' => false,   // convert IPv4 addresses to hyperlinks?
211             'bare_ipv6' => false,   // convert IPv6 addresses to hyperlinks?
212         ),
213         'attachments' =>
214         array('server' => null,
215               'dir' => INSTALLDIR . '/file/',
216               'path' => $_path . '/file/',
217               'sslserver' => null,
218               'sslpath' => null,
219               'ssl' => null,
220               'supported' => array(
221                                 'application/vnd.oasis.opendocument.chart'                  => 'odc',
222                                 'application/vnd.oasis.opendocument.formula'                => 'odf',
223                                 'application/vnd.oasis.opendocument.graphics'               => 'odg',
224                                 'application/vnd.oasis.opendocument.graphics-template'      => 'otg',
225                                 'application/vnd.oasis.opendocument.image'                  => 'odi',
226                                 'application/vnd.oasis.opendocument.presentation'           => 'odp',
227                                 'application/vnd.oasis.opendocument.presentation-template'  => 'otp',
228                                 'application/vnd.oasis.opendocument.spreadsheet'            => 'ods',
229                                 'application/vnd.oasis.opendocument.spreadsheet-template'   => 'ots',
230                                 'application/vnd.oasis.opendocument.text'                   => 'odt',
231                                 'application/vnd.oasis.opendocument.text-master'            => 'odm',
232                                 'application/vnd.oasis.opendocument.text-template'          => 'ott',
233                                 'application/vnd.oasis.opendocument.text-web'               => 'oth',
234                                 'application/pdf'   => 'pdf',
235                                 'application/zip'   => 'zip',
236                                 'application/xml'   => 'xml',
237                                 'image/png'         => 'png',
238                                 'image/jpeg'        => 'jpg',
239                                 'image/gif'         => 'gif',
240                                 'image/svg+xml'     => 'svg',
241                                 'image/vnd.microsoft.icon'  => 'ico',
242                                 'audio/ogg'         => 'ogg',
243                                 'audio/mpeg'        => 'mpg',
244                                 'audio/x-speex'     => 'spx',
245                                 'application/ogg'   => 'ogx',
246                                 'text/plain'        => 'txt',
247                                 'video/mpeg'        => 'mpeg',
248                                 'video/mp4'         => 'mp4',
249                                 'video/ogg'         => 'ogv',
250                                 'video/quicktime'   => 'mov',
251                                 'video/webm'        => 'webm',
252                                 ),
253               'file_quota' => 5000000,
254               'user_quota' => 50000000,
255               'monthly_quota' => 15000000,
256               'uploads' => true,
257               'filename_base' => 'hash',   // for new files, choose one: 'upload', 'hash'
258               'show_html' => false,  // show (filtered) text/html attachments (and oEmbed HTML etc.). Doesn't affect AJAX calls.
259               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
260               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
261               ),
262         'thumbnail' =>
263         array('crop' => false,      // overridden to true if thumb height === null
264               'maxsize' => 1000,     // thumbs with an edge larger than this will not be generated
265               'width' => 450,
266               'height' => 600,
267               'upscale' => false,
268               'animated' => false), // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin
269         'application' =>
270         array('desclimit' => null),
271         'group' =>
272         array('maxaliases' => 3,
273               'desclimit' => null,
274               'addtag' => false),
275         'peopletag' =>
276         array('maxtags' => 100, // maximum number of tags a user can create.
277               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
278               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
279               'desclimit' => null),
280         'search' =>
281         array('type' => 'like'),
282         'sessions' =>
283         array('handle' => false,   // whether to handle sessions ourselves
284               'debug' => false,    // debugging output for sessions
285               'gc_limit' => 1000), // max sessions to expire at a time
286         'htmlfilter' => array(  // purify HTML through HTMLPurifier
287             'img' => true,
288             'video' => true,
289             'audio' => true,
290         ),
291         'notice' =>
292         array('contentlimit' => null,
293               'defaultscope' => null, // null means 1 if site/private, 0 otherwise
294               'hidespam' => true), // Whether to hide silenced users from timelines
295         'message' =>
296         array('contentlimit' => null),
297         'location' =>
298         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
299               'sharedefault' => false),
300         'logincommand' =>
301         array('disabled' => true),
302         'plugins' =>
303         array('core' => array(
304                             'ActivityVerb' => array(),
305                             'ActivityVerbPost' => array(),
306                             'ActivityModeration' => array(),
307                             'AuthCrypt' => array(),
308                             'Cronish' => array(),
309                             'Favorite' => array(),
310                             'HTMLPurifierSchemes' => array(),
311                             'Share' => array(),
312                             'LRDD' => array(),
313                         ),
314               'default' => array(
315                             'Activity' => array(),
316                             'AntiBrute' => array(),
317                             'Bookmark' => array(),
318                             'ClientSideShorten' => array(),
319                             'DefaultLayout' => array(),
320                             'Directory' => array(),
321                             'DirectMessage' => array(),
322                             'EmailAuthentication' => array(),
323                             'Event' => array(),
324                             'Oembed' => array(),
325                             'OpenID' => array(),
326                             'OpportunisticQM' => array(),
327                             'OStatus' => array(),
328                             'Poll' => array(),
329                             'SearchSub' => array(),
330                             'SimpleCaptcha' => array(),
331                             'TagSub' => array(),
332                             'WebFinger' => array(),
333                         ),
334               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
335               'server' => null,
336               'sslserver' => null,
337               'path' => null,
338               'sslpath' => null,
339               ),
340         'admin' =>
341         array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
342         'singleuser' =>
343         array('enabled' => false,
344               'nickname' => null),
345         'robotstxt' =>
346         array('crawldelay' => 0,
347               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
348               ),
349         'api' =>
350         array('realm' => null),
351         'nofollow' =>
352         array('subscribers' => true,
353               'members' => true,
354               'peopletag' => true,
355               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
356         'url' =>
357         array('shortener' => 'internal',
358               'maxurllength' => 100,
359               'maxnoticelength' => -1),
360         'http' => // HTTP client settings when contacting other sites
361         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') (this activates "ssl_verify_peer")
362               'ssl_verify_host' => true,    // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
363               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
364               'connect_timeout' => 5,
365               'proxy_host' => null,
366               'proxy_port' => null,
367               'proxy_user' => null,
368               'proxy_password' => null,
369               'proxy_auth_scheme' => null,
370               ),
371         'router' =>
372         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
373         'discovery' =>
374           array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
375         'performance' => array('high' => false) // disable some features for higher performance; default false
376     );