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