]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
f7f4777a2e593c3a730eb48ad9b2018fbd2141e0
[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               'server' => $_server,
34               'theme' => 'default',
35               'path' => $_path,
36               'logfile' => null,
37               'logo' => null,
38               'logdebug' => false,
39               'fancy' => false,
40               'locale_path' => INSTALLDIR.'/locale',
41               'language' => 'en_US',
42               'languages' => get_all_languages(),
43               'email' =>
44               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
45               'broughtby' => null,
46               'timezone' => 'UTC',
47               'broughtbyurl' => null,
48               'closed' => false,
49               'inviteonly' => false,
50               'private' => false,
51               'ssl' => 'never',
52               'sslserver' => null,
53               'shorturllength' => 30,
54               'dupelimit' => 60, # default for same person saying the same thing
55               'textlimit' => 140,
56               'indent' => true,
57               'use_x_sendfile' => false,
58               ),
59         'db' =>
60         array('database' => 'YOU HAVE TO SET THIS IN config.php',
61               'schema_location' => INSTALLDIR . '/classes',
62               'class_location' => INSTALLDIR . '/classes',
63               'require_prefix' => 'classes/',
64               'class_prefix' => '',
65               'mirror' => null,
66               'utf8' => true,
67               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
68               'quote_identifiers' => false,
69               'type' => 'mysql',
70               'schemacheck' => 'runtime'), // 'runtime' or 'script'
71         'syslog' =>
72         array('appname' => 'statusnet', # for syslog
73               'priority' => 'debug', # XXX: currently ignored
74               'facility' => LOG_USER),
75         'queue' =>
76         array('enabled' => false,
77               'subsystem' => 'db', # default to database, or 'stomp'
78               'stomp_server' => null,
79               'queue_basename' => '/queue/statusnet/',
80               'stomp_username' => null,
81               'stomp_password' => null,
82               'monitor' => null, // URL to monitor ping endpoint (work in progress)
83               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
84               ),
85         'license' =>
86         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
87               'title' => 'Creative Commons Attribution 3.0',
88               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
89         'mail' =>
90         array('backend' => 'mail',
91               'params' => null,
92               'domain_check' => true),
93         'nickname' =>
94         array('blacklist' => array(),
95               'featured' => array()),
96         'profile' =>
97         array('banned' => array(),
98               'biolimit' => null),
99         'avatar' =>
100         array('server' => null,
101               'dir' => INSTALLDIR . '/avatar/',
102               'path' => $_path . '/avatar/'),
103         'background' =>
104         array('server' => null,
105               'dir' => INSTALLDIR . '/background/',
106               'path' => $_path . '/background/'),
107         'public' =>
108         array('localonly' => true,
109               'blacklist' => array(),
110               'autosource' => array()),
111         'theme' =>
112         array('server' => null,
113               'dir' => null,
114               'path'=> null),
115         'throttle' =>
116         array('enabled' => false, // whether to throttle edits; false by default
117               'count' => 20, // number of allowed messages in timespan
118               'timespan' => 600), // timespan for throttling
119         'xmpp' =>
120         array('enabled' => false,
121               'server' => 'INVALID SERVER',
122               'port' => 5222,
123               'user' => 'update',
124               'encryption' => true,
125               'resource' => 'uniquename',
126               'password' => 'blahblahblah',
127               'host' => null, # only set if != server
128               'debug' => false, # print extra debug info
129               'public' => array()), # JIDs of users who want to receive the public stream
130         'invite' =>
131         array('enabled' => true),
132         'tag' =>
133         array('dropoff' => 864000.0),
134         'popular' =>
135         array('dropoff' => 864000.0),
136         'daemon' =>
137         array('piddir' => '/var/run',
138               'user' => false,
139               'group' => false),
140         'emailpost' =>
141         array('enabled' => true),
142         'sms' =>
143         array('enabled' => true),
144         'twitterimport' =>
145         array('enabled' => false),
146         'integration' =>
147         array('source' => 'StatusNet', # source attribute for Twitter
148               'taguri' => $_server.',2009'), # base for tag URIs
149         'twitter' =>
150         array('enabled'       => true,
151               'consumer_key'    => null,
152               'consumer_secret' => null),
153         'cache' =>
154         array('base' => null),
155         'ping' =>
156         array('notify' => array()),
157         'inboxes' =>
158         array('enabled' => true), # ignored after 0.9.x
159         'newuser' =>
160         array('default' => null,
161               'welcome' => null),
162         'snapshot' =>
163         array('run' => 'web',
164               'frequency' => 10000,
165               'reporturl' => 'http://status.net/stats/report'),
166         'attachments' =>
167         array('server' => null,
168               'dir' => INSTALLDIR . '/file/',
169               'path' => $_path . '/file/',
170               'supported' => array('image/png',
171                                    'image/jpeg',
172                                    'image/gif',
173                                    'image/svg+xml',
174                                    'audio/mpeg',
175                                    'audio/x-speex',
176                                    'application/ogg',
177                                    'application/pdf',
178                                    'application/vnd.oasis.opendocument.text',
179                                    'application/vnd.oasis.opendocument.text-template',
180                                    'application/vnd.oasis.opendocument.graphics',
181                                    'application/vnd.oasis.opendocument.graphics-template',
182                                    'application/vnd.oasis.opendocument.presentation',
183                                    'application/vnd.oasis.opendocument.presentation-template',
184                                    'application/vnd.oasis.opendocument.spreadsheet',
185                                    'application/vnd.oasis.opendocument.spreadsheet-template',
186                                    'application/vnd.oasis.opendocument.chart',
187                                    'application/vnd.oasis.opendocument.chart-template',
188                                    'application/vnd.oasis.opendocument.image',
189                                    'application/vnd.oasis.opendocument.image-template',
190                                    'application/vnd.oasis.opendocument.formula',
191                                    'application/vnd.oasis.opendocument.formula-template',
192                                    'application/vnd.oasis.opendocument.text-master',
193                                    'application/vnd.oasis.opendocument.text-web',
194                                    'application/x-zip',
195                                    'application/zip',
196                                    'text/plain',
197                                    'video/mpeg',
198                                    'video/mp4',
199                                    'video/quicktime',
200                                    'video/mpeg'),
201               'file_quota' => 5000000,
202               'user_quota' => 50000000,
203               'monthly_quota' => 15000000,
204               'uploads' => true,
205               'filecommand' => '/usr/bin/file',
206               ),
207         'group' =>
208         array('maxaliases' => 3,
209               'desclimit' => null),
210         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
211         'search' =>
212         array('type' => 'fulltext'),
213         'sessions' =>
214         array('handle' => false, // whether to handle sessions ourselves
215               'debug' => false), // debugging output for sessions
216         'design' =>
217         array('backgroundcolor' => null, // null -> 'use theme default'
218               'contentcolor' => null,
219               'sidebarcolor' => null,
220               'textcolor' => null,
221               'linkcolor' => null,
222               'backgroundimage' => null,
223               'disposition' => null),
224         'notice' =>
225         array('contentlimit' => null),
226         'message' =>
227         array('contentlimit' => null),
228         'location' =>
229         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
230               'sharedefault' => true),
231         'omb' =>
232         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
233         'logincommand' =>
234         array('disabled' => true),
235         'plugins' =>
236         array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
237                                                    'freeService' => true,
238                                                    'serviceUrl'=>'http://ur1.ca/'),
239                                  'PtitUrl' => array('shortenerName' => 'ptiturl.com',
240                                                     'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
241                                  'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
242                                                       array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
243                                                       array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
244                                                       array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
245                                  'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
246                                  'Geonames' => null,
247                                  'Mapstraction' => null,
248                                  'Linkback' => null,
249                                  'WikiHashtags' => null,
250                                  'OpenID' => null),
251               ),
252         'admin' =>
253         array('panels' => array('design', 'site', 'user', 'paths')),
254         );