xref: /plugin/discussion/conf/default.php (revision 5fc512fb4e57f6c46a139cbe38495abc4108b731)
1<?php
2/**
3 * Options for the discussion plugin
4 */
5
6$conf['allowguests']     = 1;   // should unregistred users be able to comment?
7$conf['linkemail']       = 0;   // link usernames with e-mail addresses
8$conf['usegravatar']     = 1;   // use gravatars in comments
9$conf['gravatar_size']   = 40;  // default size of gravatar: 20, 40 or 80 pixel
10$conf['gravatar_rating'] = 'R'; // max rating of gravatar images: G, PG, R or X - see http://gravatar.com/rating.php
11$conf['urlfield']        = 0;   // allow entering an URL
12$conf['addressfield']    = 0;   // allow entering an address
13$conf['datefield']       = 0;   // allow admins to set the date (for import)
14$conf['usecocomment']    = 1;   // use coComment comment tracking
15$conf['wikisyntaxok']    = 1;   // allow wiki syntax in comments
16
17$conf['threads_formposition'] = 'bottom'; // position of new thread form
18
19//Setup VIM: ex: et ts=2 enc=utf-8 :