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