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