home | refactor

This commit is contained in:
Don Harper 2024-01-06 14:02:54 -06:00
parent 672d71a83a
commit 73fadb981d
468 changed files with 197 additions and 210 deletions

21
home/common/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
'';
};
}