1
0
forked from iarv/nntpchan
2025-01-25 23:06:56 -05:00
2018-04-26 15:29:01 -04:00
2025-01-25 14:03:30 -05:00
2019-04-07 08:52:49 -04:00
2016-06-20 09:37:57 -04:00
2018-02-22 07:57:44 -05:00
2018-04-26 15:29:01 -04:00
2020-02-10 17:30:06 -05:00
2025-01-21 12:24:57 -05:00
2016-10-25 10:00:10 -04:00
2025-01-25 23:06:56 -05:00
2017-10-25 09:39:59 -04:00
2017-04-02 18:17:36 -04:00

le ebin logo

MIT License Logo is ebin

NNTPChan (previously known as overchan) is a decentralized imageboard that uses the NNTP protocol (network-news transfer protocol) to synchronize content between many different servers. It utilizes cryptographically signed posts to perform optional/opt-in decentralized moderation.

Getting started

This is a step-by-step guide for getting up-and-running with NNTPChan as well as documentation for developers who want to either work on NNTPChan directly or use NNTPChan in their aplications with the API.

Install the dependancies

sudo apt-get update
sudo apt-get --no-install-recommends install imagemagick ffmpeg sox build-essential git ca-certificates postgresql postgresql-client

### Get the NNTPChan source
git clone https://github.com/konamicode9/nntpchan
cd nntpchan

Now compile!

Run make:

make

Enable Some Modules

export GO111MODULE=off
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin

now its time to create the database in postgres

CREATE DATABASE nntpchan;
CREATE USER username WITH PASSWORD 'CHANGEME';
GRANT ALL PRIVILEGES ON DATABASE nntpchan TO username;

TL;DR edition:

$ sudo apt update
$ sudo apt install --no-install-recommends install imagemagick ffmpeg sox build-essential git ca-certificates postgresql postgresql-client golang
$ git clone https://github.com/majestrate/nntpchan
$ cd nntpchan
$ make
$ SRND_INSTALLER=0 ./srndv2 setup 

Bugs and issues

PLEASE report any bugs you find while building, setting-up or using NNTPChan on the GitHub issue tracker, the issue tracker on tor, the issue tracker on i2p or on the GitGud issue tracker so that the probelms can be resolved or discussed.

Clients

NNTP (confirmed working):

  • Thunderbird

Web:

  • Yukko: ncurses based nntpchan web ui reader

History

  • started in mid 2013 on anonet

This is a graph of the post flow of the overchan.test newsgroup over 4 years, quite a big network.

(thnx anon who made this btw)

network topology of 4 years

source code for map generation

Acknowledgements

  • Deavmi - Making the documentation beautiful.
Description
No description provided
Readme MIT 22 MiB
Languages
Go 56.7%
Mustache 16.3%
JavaScript 9.6%
C++ 6.6%
CSS 4.4%
Other 6.3%