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