config file parser ignores options without values
Brought to you by:
jasonlong
For example, in the following config file:
BEGIN
daemonize
domain example.org
group dkim
listen 127.0.0.1:10029
relay 127.0.0.1:10028
keyfile /usr/local/dkimproxy/private.key
selector selector1
signature dkim
signature domainkeys
user dkim
END
I would expect the server to "daemonize" when it starts. It does not.
If I change the option to
daemonize 1
then it works.