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