From 7fb4c9d347dd03613eed2f729b647d4773b33cf6 Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Sat, 25 May 2024 23:46:21 +0200 Subject: [PATCH] Convert README to proper markdown. Signed-off-by: Thomas Hochstein --- README | 24 ------------------------ README.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 24 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index e1b20b9..0000000 --- a/README +++ /dev/null @@ -1,24 +0,0 @@ - Bits and pieces of INN config - ============================= - -Up to now this is just some hodgepodge of config snippets; -when (if!) I'll manage to spare some time, I'll try to -structure it a bit ... - ------------------------------------------------------------- - -auth/perl-_mysql - Perl script to authenticatie against a MySQL database - --> /usr/lib/news/bin/auth/passwd/perl_mysql - ------------------------------------------------------------- - -filter/filter_nnrpd.pl - Posting filter to add Cancel-Lock and Cancel-Key - --> /etc/news/filter/filter_nnrpd.pl - -filter/cleanfeed.local - Posting filter to add Cancel-Lock and Cancel-Key - --> /etc/news/filter/cleanfeed/etc/cleanfeed.local - ------------------------------------------------------------- diff --git a/README.md b/README.md new file mode 100644 index 0000000..d922040 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# Bits and pieces of INN config + +Up to now this is just some hodgepodge of config snippets; +when (if!) I'll manage to spare some time, I'll try to +structure it a bit ... + +------------------------------------------------------------ + +## Authentication programs + +### auth/perl_mysql + +Perl script to authenticatie against a MySQL database + +Copy to `/usr/lib/news/bin/auth/passwd/perl_mysql`. + +------------------------------------------------------------ +## Filters + +### filter/filter_nnrpd.pl + +Posting filter to add Cancel-Lock and Cancel-Key + +Copy to `/etc/news/filter/filter_nnrpd.pl`. + +### filter/cleanfeed.local + +Posting filter to add Cancel-Lock and Cancel-Key + +Copy to `/etc/news/filter/cleanfeed/etc/cleanfeed.local`. + +------------------------------------------------------------