|
default
By manually enabling `(run-in-container? #t)` in the server and doing an
strace(1) of the running processes:
$ strace `pgrep -fi dkimproxy.out-real | sed 's|^| -p|' | tr -d '\n'`
...revealed that dkimproxy_out(1) failed when it couldn't find the
`/etc/protocols` file in its namespace. After adding that manually via
the `(extra-mappings ...)` list, it worked correctly.
|