]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
9f3d4b1f9d858ea78fb2a8c5c745a5e5f4f3eaa8
[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               ),
57         'db' =>
58         array('database' => 'YOU HAVE TO SET THIS IN config.php',
59               'schema_location' => INSTALLDIR . '/classes',
60               'class_location' => INSTALLDIR . '/classes',
61               'require_prefix' => 'classes/',
62               'class_prefix' => '',
63               'mirror' => null,
64               'utf8' => true,
65               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
66               'quote_identifiers' => false,
67               'type' => 'mysql',
68               'schemacheck' => 'runtime'), // 'runtime' or 'script'
69         'syslog' =>
70         array('appname' => 'statusnet', # for syslog
71               'priority' => 'debug', # XXX: currently ignored
72               'facility' => LOG_USER),
73         'queue' =>
74         array('enabled' => false,
75               'subsystem' => 'db', # default to database, or 'stomp'
76               'stomp_server' => null,
77               'queue_basename' => 'statusnet',
78               'stomp_username' => null,
79               'stomp_password' => null,
80               ),
81         'license' =>
82         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
83               'title' => 'Creative Commons Attribution 3.0',
84               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
85         'mail' =>
86         array('backend' => 'mail',
87               'params' => null),
88         'nickname' =>
89         array('blacklist' => array(),
90               'featured' => array()),
91         'profile' =>
92         array('banned' => array(),
93               'biolimit' => null),
94         'avatar' =>
95         array('server' => null,
96               'dir' => INSTALLDIR . '/avatar/',
97               'path' => $_path . '/avatar/'),
98         'background' =>
99         array('server' => null,
100               'dir' => INSTALLDIR . '/background/',
101               'path' => $_path . '/background/'),
102         'public' =>
103         array('localonly' => true,
104               'blacklist' => array(),
105               'autosource' => array()),
106         'theme' =>
107         array('server' => null,
108               'dir' => null,
109               'path'=> null),
110         'throttle' =>
111         array('enabled' => false, // whether to throttle edits; false by default
112               'count' => 20, // number of allowed messages in timespan
113               'timespan' => 600), // timespan for throttling
114         'xmpp' =>
115         array('enabled' => false,
116               'server' => 'INVALID SERVER',
117               'port' => 5222,
118               'user' => 'update',
119               'encryption' => true,
120               'resource' => 'uniquename',
121               'password' => 'blahblahblah',
122               'host' => null, # only set if != server
123               'debug' => false, # print extra debug info
124               'public' => array()), # JIDs of users who want to receive the public stream
125         'invite' =>
126         array('enabled' => true),
127         'sphinx' =>
128         array('enabled' => false,
129               'server' => 'localhost',
130               'port' => 3312),
131         'tag' =>
132         array('dropoff' => 864000.0),
133         'popular' =>
134         array('dropoff' => 864000.0),
135         'daemon' =>
136         array('piddir' => '/var/run',
137               'user' => false,
138               'group' => false),
139         'emailpost' =>
140         array('enabled' => true),
141         'sms' =>
142         array('enabled' => true),
143         'twitterbridge' =>
144         array('enabled' => false),
145         'integration' =>
146         array('source' => 'StatusNet', # source attribute for Twitter
147               'taguri' => $_server.',2009'), # base for tag URIs
148         'twitter' =>
149         array('enabled'       => true,
150             'consumer_key'    => null,
151             'consumer_secret' => null),
152         'memcached' =>
153         array('enabled' => false,
154               'server' => 'localhost',
155               'base' => null,
156               'port' => 11211),
157                 'ping' =>
158         array('notify' => array()),
159         'inboxes' =>
160         array('enabled' => true), # ignored after 0.9.x
161         'newuser' =>
162         array('default' => null,
163               'welcome' => null),
164         'snapshot' =>
165         array('run' => 'web',
166               'frequency' => 10000,
167               'reporturl' => 'http://status.net/stats/report'),
168         'attachments' =>
169         array('server' => null,
170               'dir' => INSTALLDIR . '/file/',
171               'path' => $_path . '/file/',
172               'supported' => array('image/png',
173                                    'image/jpeg',
174                                    'image/gif',
175                                    'image/svg+xml',
176                                    'audio/mpeg',
177                                    'audio/x-speex',
178                                    'application/ogg',
179                                    'application/pdf',
180                                    'application/vnd.oasis.opendocument.text',
181                                    'application/vnd.oasis.opendocument.text-template',
182                                    'application/vnd.oasis.opendocument.graphics',
183                                    'application/vnd.oasis.opendocument.graphics-template',
184                                    'application/vnd.oasis.opendocument.presentation',
185                                    'application/vnd.oasis.opendocument.presentation-template',
186                                    'application/vnd.oasis.opendocument.spreadsheet',
187                                    'application/vnd.oasis.opendocument.spreadsheet-template',
188                                    'application/vnd.oasis.opendocument.chart',
189                                    'application/vnd.oasis.opendocument.chart-template',
190                                    'application/vnd.oasis.opendocument.image',
191                                    'application/vnd.oasis.opendocument.image-template',
192                                    'application/vnd.oasis.opendocument.formula',
193                                    'application/vnd.oasis.opendocument.formula-template',
194                                    'application/vnd.oasis.opendocument.text-master',
195                                    'application/vnd.oasis.opendocument.text-web',
196                                    'application/x-zip',
197                                    'application/zip',
198                                    'text/plain',
199                                    'video/mpeg',
200                                    'video/mp4',
201                                    'video/quicktime',
202                                    'video/mpeg'),
203         'file_quota' => 5000000,
204         'user_quota' => 50000000,
205         'monthly_quota' => 15000000,
206         'uploads' => true,
207         'filecommand' => '/usr/bin/file',
208         ),
209         'group' =>
210         array('maxaliases' => 3,
211               'desclimit' => null),
212         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
213         'search' =>
214         array('type' => 'fulltext'),
215         'sessions' =>
216         array('handle' => false, // whether to handle sessions ourselves
217               'debug' => false), // debugging output for sessions
218         'design' =>
219         array('backgroundcolor' => null, // null -> 'use theme default'
220               'contentcolor' => null,
221               'sidebarcolor' => null,
222               'textcolor' => null,
223               'linkcolor' => null,
224               'backgroundimage' => null,
225               'disposition' => null),
226         'notice' =>
227         array('contentlimit' => null),
228         'message' =>
229         array('contentlimit' => null),
230         'http' =>
231         array('client' => 'curl'), // XXX: should this be the default?
232         );