Fix qmail deferral exit code.

FossilOrigin-Name: a133d5760f08b983c4543f2a51426079e15a1394c69ea5195f08b7bd79e3866c
This commit is contained in:
Mahlon E. Smith 2023-07-01 03:34:23 +00:00
parent 36b4c1c572
commit 22542f9864

View file

@ -148,7 +148,7 @@ proc hl( msg: string, fg: ForegroundColor, bright=false ): string =
proc deferral*( msg: string ) =
## Exit with Qmail deferral code immediately.
echo msg.replace( "\n", " - " ).hl( fgRed, bright=true )
quit( 1 )
quit( 111 )
proc debug*( msg: string, args: varargs[string, `$`] ) =