]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
Merge branch 'master' into 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               '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               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
88               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
89               'monitor' => null, // URL to monitor ping endpoint (work in progress)
90               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
91               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
92               'debug_memory' => false, // true to spit memory usage to log
93               'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
94               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
95                                      // Default will share all queues for all sites within each group.
96                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
97                                      // using nickname identifier as site.
98                                      //
99                                      // 'main/distrib' separate "distrib" queue covering all sites
100                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
101               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
102               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
103               ),
104         'license' =>
105         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
106               'owner' => null, # can be name of content owner e.g. for enterprise
107               'url' => 'http://creativecommons.org/licenses/by/3.0/',
108               'title' => 'Creative Commons Attribution 3.0',
109               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
110         'mail' =>
111         array('backend' => 'mail',
112               'params' => null,
113               'domain_check' => true),
114         'nickname' =>
115         array('blacklist' => array(),
116               'featured' => array()),
117         'profile' =>
118         array('banned' => array(),
119               'biolimit' => null),
120         'avatar' =>
121         array('server' => null,
122               'dir' => INSTALLDIR . '/avatar/',
123               'path' => $_path . '/avatar/',
124               'ssl' => null),
125         'background' =>
126         array('server' => null,
127               'dir' => INSTALLDIR . '/background/',
128               'path' => $_path . '/background/',
129               'ssl' => null),
130         'public' =>
131         array('localonly' => true,
132               'blacklist' => array(),
133               'autosource' => array()),
134         'theme' =>
135         array('server' => null,
136               'dir' => null,
137               'path'=> null,
138               'ssl' => null),
139         'javascript' =>
140         array('server' => null,
141               'path'=> null,
142               'ssl' => null),
143         'throttle' =>
144         array('enabled' => false, // whether to throttle edits; false by default
145               'count' => 20, // number of allowed messages in timespan
146               'timespan' => 600), // timespan for throttling
147         'xmpp' =>
148         array('enabled' => false,
149               'server' => 'INVALID SERVER',
150               'port' => 5222,
151               'user' => 'update',
152               'encryption' => true,
153               'resource' => 'uniquename',
154               'password' => 'blahblahblah',
155               'host' => null, # only set if != server
156               'debug' => false, # print extra debug info
157               'public' => array()), # JIDs of users who want to receive the public stream
158         'invite' =>
159         array('enabled' => true),
160         'tag' =>
161         array('dropoff' => 864000.0,   # controls weighting based on age
162               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
163         'popular' =>
164         array('dropoff' => 864000.0,   # controls weighting based on age
165               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
166         'daemon' =>
167         array('piddir' => '/var/run',
168               'user' => false,
169               'group' => false),
170         'emailpost' =>
171         array('enabled' => true),
172         'sms' =>
173         array('enabled' => true),
174         'twitterimport' =>
175         array('enabled' => false),
176         'integration' =>
177         array('source' => 'StatusNet', # source attribute for Twitter
178               'taguri' => $_server.',2009'), # base for tag URIs
179         'twitter' =>
180         array('enabled'       => true,
181               'consumer_key'    => null,
182               'consumer_secret' => null),
183         'cache' =>
184         array('base' => null),
185         'ping' =>
186         array('notify' => array()),
187         'inboxes' =>
188         array('enabled' => true), # ignored after 0.9.x
189         'newuser' =>
190         array('default' => null,
191               'welcome' => null),
192         'snapshot' =>
193         array('run' => 'web',
194               'frequency' => 10000,
195               'reporturl' => 'http://status.net/stats/report'),
196         'attachments' =>
197         array('server' => null,
198               'dir' => INSTALLDIR . '/file/',
199               'path' => $_path . '/file/',
200               'ssl' => null,
201               'supported' => array('image/png',
202                                    'image/jpeg',
203                                    'image/gif',
204                                    'image/svg+xml',
205                                    'audio/mpeg',
206                                    'audio/x-speex',
207                                    'application/ogg',
208                                    'application/pdf',
209                                    'application/vnd.oasis.opendocument.text',
210                                    'application/vnd.oasis.opendocument.text-template',
211                                    'application/vnd.oasis.opendocument.graphics',
212                                    'application/vnd.oasis.opendocument.graphics-template',
213                                    'application/vnd.oasis.opendocument.presentation',
214                                    'application/vnd.oasis.opendocument.presentation-template',
215                                    'application/vnd.oasis.opendocument.spreadsheet',
216                                    'application/vnd.oasis.opendocument.spreadsheet-template',
217                                    'application/vnd.oasis.opendocument.chart',
218                                    'application/vnd.oasis.opendocument.chart-template',
219                                    'application/vnd.oasis.opendocument.image',
220                                    'application/vnd.oasis.opendocument.image-template',
221                                    'application/vnd.oasis.opendocument.formula',
222                                    'application/vnd.oasis.opendocument.formula-template',
223                                    'application/vnd.oasis.opendocument.text-master',
224                                    'application/vnd.oasis.opendocument.text-web',
225                                    'application/x-zip',
226                                    'application/zip',
227                                    'text/plain',
228                                    'video/mpeg',
229                                    'video/mp4',
230                                    'video/quicktime',
231                                    'video/mpeg'),
232               'file_quota' => 5000000,
233               'user_quota' => 50000000,
234               'monthly_quota' => 15000000,
235               'uploads' => true,
236               'filecommand' => '/usr/bin/file',
237               ),
238         'application' =>
239         array('desclimit' => null),
240         'group' =>
241         array('maxaliases' => 3,
242               'desclimit' => null),
243         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
244         'search' =>
245         array('type' => 'fulltext'),
246         'sessions' =>
247         array('handle' => false, // whether to handle sessions ourselves
248               'debug' => false), // debugging output for sessions
249         'design' =>
250         array('backgroundcolor' => null, // null -> 'use theme default'
251               'contentcolor' => null,
252               'sidebarcolor' => null,
253               'textcolor' => null,
254               'linkcolor' => null,
255               'backgroundimage' => null,
256               'disposition' => null),
257         'notice' =>
258         array('contentlimit' => null),
259         'message' =>
260         array('contentlimit' => null),
261         'location' =>
262         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
263               'sharedefault' => true),
264         'omb' =>
265         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
266         'logincommand' =>
267         array('disabled' => true),
268         'plugins' =>
269         array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
270                                                    'freeService' => true,
271                                                    'serviceUrl'=>'http://ur1.ca/'),
272                                  'PtitUrl' => array('shortenerName' => 'ptiturl.com',
273                                                     'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
274                                  'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
275                                                       array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
276                                                       array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
277                                                       array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
278                                  'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
279                                  'Geonames' => null,
280                                  'Mapstraction' => null,
281                                  'Linkback' => null,
282                                  'WikiHashtags' => null,
283                                  'OpenID' => null),
284               ),
285         'admin' =>
286         array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions')),
287         'singleuser' =>
288         array('enabled' => false,
289               'nickname' => null),
290         'robotstxt' =>
291         array('crawldelay' => 0,
292               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
293               ),
294         );