home | added listadmin

This commit is contained in:
Don Harper 2023-10-10 21:30:49 -05:00
parent 629b879f03
commit 445c9cbd4f
2 changed files with 22 additions and 1 deletions

21
home/listadmin.nix Normal file
View file

@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ listadmin ];
home.file."listadmin.ini" = {
enable = true;
target = ".listadmin.ini";
text = ''
password "duck69"
adminurl http://lists.{domain}/admindb.cgi/{list}-{domain}
dumpdir /home/don/tmp/listadmin
log /home/don/.list.log
default discard
spamlevel 1
discard_if_from ^(postmaster|mailer(-daemon)?|listproc|no-reply)@
#lists
ex-psa@duckland.org
techies@duckland.org
'';
};
}