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$conf['threads_showdate'] = 1; // show date of last answer in thread list 19$conf['threads_showuser'] = 1; // show name of user who started the thread 20 21//Setup VIM: ex: et ts=2 enc=utf-8 :