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