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