]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
Merge branch '0.8.x' 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               ),
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         'syslog' =>
69         array('appname' => 'statusnet', # for syslog
70               'priority' => 'debug', # XXX: currently ignored
71               'facility' => LOG_USER),
72         'queue' =>
73         array('enabled' => false,
74               'subsystem' => 'db', # default to database, or 'stomp'
75               'stomp_server' => null,
76               'queue_basename' => 'statusnet',
77               'stomp_username' => null,
78               'stomp_password' => null,
79               ),
80         'license' =>
81         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
82               'title' => 'Creative Commons Attribution 3.0',
83               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
84         'mail' =>
85         array('backend' => 'mail',
86               'params' => null),
87         'nickname' =>
88         array('blacklist' => array(),
89               'featured' => array()),
90         'profile' =>
91         array('banned' => array(),
92               'biolimit' => null),
93         'avatar' =>
94         array('server' => null,
95               'dir' => INSTALLDIR . '/avatar/',
96               'path' => $_path . '/avatar/'),
97         'background' =>
98         array('server' => null,
99               'dir' => INSTALLDIR . '/background/',
100               'path' => $_path . '/background/'),
101         'public' =>
102         array('localonly' => true,
103               'blacklist' => array(),
104               'autosource' => array()),
105         'theme' =>
106         array('server' => null,
107               'dir' => null,
108               'path'=> null),
109         'throttle' =>
110         array('enabled' => false, // whether to throttle edits; false by default
111               'count' => 20, // number of allowed messages in timespan
112               'timespan' => 600), // timespan for throttling
113         'xmpp' =>
114         array('enabled' => false,
115               'server' => 'INVALID SERVER',
116               'port' => 5222,
117               'user' => 'update',
118               'encryption' => true,
119               'resource' => 'uniquename',
120               'password' => 'blahblahblah',
121               'host' => null, # only set if != server
122               'debug' => false, # print extra debug info
123               'public' => array()), # JIDs of users who want to receive the public stream
124         'invite' =>
125         array('enabled' => true),
126         'sphinx' =>
127         array('enabled' => false,
128               'server' => 'localhost',
129               'port' => 3312),
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         'twitter' =>
143         array('enabled' => true),
144         'twitterbridge' =>
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('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), # on by default for new sites
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         );