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