Various helper functions that don't have a better landing spot.
Procs
proc debug(msg: string; args: varargs[string, `$`]) {. ...raises: [ValueError, IOError], tags: [WriteIOEffect].}
- Emit msg if debug mode is enabled, coercing arguments into a string for formatting. Source Edit
proc deferral(msg: string) {....raises: [], tags: [].}
- Exit with Qmail deferral code immediately. Source Edit
proc parseCmdline() {....raises: [], tags: [ReadIOEffect].}
- Populate the global opts object with the user's preferences. Source Edit