preliminary inbound nntpchan support

This commit is contained in:
czaks
2016-08-14 16:24:17 +02:00
parent 11cecf8452
commit 5e335a8564
4 changed files with 326 additions and 92 deletions

View File

@@ -1689,6 +1689,23 @@
// Example: Adding the pre-markup post body to the API as "com_nomarkup".
// $config['api']['extra_fields'] = array('body_nomarkup' => 'com_nomarkup');
/*
* ==================
* NNTPChan settings
* ==================
*/
$config['nntpchan'] = array();
// Enable NNTPChan integration
$config['nntpchan']['enabled'] = false;
// NNTP server
$config['nntpchan']['server'] = "localhost:1119";
// Global dispatch array. Add your boards to it to enable them.
$config['nntpchan']['dispatch'] = array(); // 'overchan.test' => 'test'
/*
* ====================
* Other/uncategorized