From e57156bcaa07ba7862f105cd1eb0145ca17b2c50 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sat, 6 Apr 2019 16:57:27 +0200 Subject: nixos/hylafax: fix faxq `ModemGroup` setting The manpage claims that the "limit" in the setting:: :[:] is optional and defaults to zero, implying no limit. However, tests confirmed that it actually isn't optional. Without limit, the setting ``any:.*`` places outbound jobs on infinite hold if no particular modem was specified on the sendfax command line. The new default value ``any:0:.*`` from this commit uses any available modem to send jobs if not modem was given to sendfax. --- nixos/modules/services/networking/hylafax/faxq-default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos/modules/services/networking/hylafax') diff --git a/nixos/modules/services/networking/hylafax/faxq-default.nix b/nixos/modules/services/networking/hylafax/faxq-default.nix index a2630ce66b7..9b634650cf7 100644 --- a/nixos/modules/services/networking/hylafax/faxq-default.nix +++ b/nixos/modules/services/networking/hylafax/faxq-default.nix @@ -4,7 +4,7 @@ { - ModemGroup = [ ''"any:.*"'' ]; + ModemGroup = [ ''"any:0:.*"'' ]; ServerTracing = "0x78701"; SessionTracing = "0x78701"; UUCPLockDir = "/var/lock"; -- cgit 1.4.1