gitextract_4yp5s7nn/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .gitmodules ├── README.md ├── agpl-3.0.txt ├── dub.sdl ├── dub.selections.json ├── flake.nix ├── makejson ├── schema_v1.sql ├── site-defaults/ │ ├── config/ │ │ ├── apis/ │ │ │ ├── akismet.ini.sample │ │ │ ├── bitly.ini.sample │ │ │ ├── mailhide.ini.sample │ │ │ ├── openai.ini.sample │ │ │ ├── projecthoneypot.ini.sample │ │ │ ├── recaptcha.ini.sample │ │ │ └── stopforumspam.ini │ │ ├── backup.ini.sample │ │ ├── groups.ini │ │ ├── groups.ini.sample │ │ ├── sinks/ │ │ │ ├── irc/ │ │ │ │ └── irc.ini.sample │ │ │ └── twitter/ │ │ │ └── twitter.ini.sample │ │ ├── site.ini.sample │ │ ├── sources/ │ │ │ ├── feeds/ │ │ │ │ └── example.ini.sample │ │ │ ├── github/ │ │ │ │ └── github.ini.sample │ │ │ ├── mailman/ │ │ │ │ └── example.ini.sample │ │ │ ├── mailrelay/ │ │ │ │ └── example.ini.sample │ │ │ ├── nntp/ │ │ │ │ └── example.ini.sample │ │ │ ├── smtp/ │ │ │ │ └── example.ini.sample │ │ │ ├── socket/ │ │ │ │ └── socket.ini.sample │ │ │ └── stackoverflow/ │ │ │ └── so.ini.sample │ │ ├── user.ini.sample │ │ └── web.ini.sample │ └── web/ │ ├── help-english.htt │ ├── help-turkish.htt │ ├── highlight-js/ │ │ ├── LICENSE │ │ ├── highlight.pack.js │ │ └── styles/ │ │ └── vs.css │ ├── skel.htt │ └── static/ │ ├── css/ │ │ ├── dfeed.css │ │ └── style.css │ ├── js/ │ │ └── dfeed.js │ ├── robots_private.txt │ └── robots_public.txt ├── src/ │ └── dfeed/ │ ├── backup.d │ ├── bayes.d │ ├── bitly.d │ ├── common.d │ ├── database.d │ ├── debugging.d │ ├── groups.d │ ├── loc/ │ │ ├── english.d │ │ ├── package.d │ │ └── turkish.d │ ├── mail.d │ ├── message.d │ ├── paths.d │ ├── progs/ │ │ ├── dfeed.d │ │ ├── nntpdownload.d │ │ ├── sendspamfeedback.d │ │ └── unban.d │ ├── sinks/ │ │ ├── cache.d │ │ ├── irc.d │ │ ├── messagedb.d │ │ ├── subscriptions.d │ │ └── twitter.d │ ├── site.d │ ├── sources/ │ │ ├── github.d │ │ ├── mailman.d │ │ ├── mailrelay.d │ │ ├── newsgroups.d │ │ ├── socket.d │ │ └── web/ │ │ ├── feed.d │ │ ├── reddit.d │ │ ├── stackoverflow.d │ │ └── webpoller.d │ └── web/ │ ├── captcha/ │ │ ├── common.d │ │ ├── dcaptcha.d │ │ ├── dummy.d │ │ ├── package.d │ │ └── recaptcha.d │ ├── lint.d │ ├── list.d │ ├── mailhide.d │ ├── markdown.d │ ├── moderation.d │ ├── posting.d │ ├── spam/ │ │ ├── akismet.d │ │ ├── bayes.d │ │ ├── blogspam.d │ │ ├── openai.d │ │ ├── package.d │ │ ├── projecthoneypot.d │ │ ├── simple.d │ │ └── stopforumspam.d │ ├── user.d │ └── web/ │ ├── cache.d │ ├── config.d │ ├── draft.d │ ├── moderation.d │ ├── page.d │ ├── part/ │ │ ├── gravatar.d │ │ ├── pager.d │ │ ├── post.d │ │ ├── postbody.d │ │ ├── profile.d │ │ ├── strings.d │ │ └── thread.d │ ├── perf.d │ ├── postinfo.d │ ├── posting.d │ ├── postmod.d │ ├── request.d │ ├── server.d │ ├── site.d │ ├── statics.d │ ├── user.d │ └── view/ │ ├── feed.d │ ├── group.d │ ├── index.d │ ├── login.d │ ├── moderation.d │ ├── post.d │ ├── search.d │ ├── settings.d │ ├── subscription.d │ ├── thread.d │ ├── userprofile.d │ └── widgets.d └── tests/ ├── captcha-screenshot.spec.ts ├── deleted-post-moderation.spec.ts ├── deleted-post-screenshot.spec.ts ├── index.spec.ts ├── package.json ├── playwright.config.ts ├── posting.spec.ts └── user-journey.spec.ts