+ NNTP Content Server

* Read-only to public conf/areas only for now
* Missing some protocol support
* Could use better encoding practices and ANSI prep
This commit is contained in:
Bryan Ashby
2018-12-14 22:21:57 -07:00
parent cde329b439
commit 772022f0d0
6 changed files with 840 additions and 9 deletions

View File

@@ -222,6 +222,39 @@
// messageConferences: {
// some_conf: [ "area_tag1", "area_tag2" ]
// }
//
}
// You may also wish to enable NNTP services
nntp: {
//
// Set publicMessageConferences{} to configure
// publicly exposed conferences & areas.
//
// Example:
// publicMessageConferences: {
// some_conf: [ "area_tag1", "area_tag2" ]
// }
//
publicMessageConferences: {}
// non-secure
nntp: {
enabled: false
port: XXXXX
}
// secure (TLS)
nntps: {
enabled: false
port: XXXXX
//
// You will need a SSL/TLS certificate and key
//
certPem: XXXXX
keyPem: XXXXX
}
}
}