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