|
NAMEdkimproxy.in - SMTP proxy for verifying DKIM signaturesSYNOPSISdkimproxy.in [options] LISTENADDR:PORT RELAYADDR:PORT smtp options: --conf_file=FILENAME --listen=LISTENADDR:PORT --relay=RELAYADDR:PORT --reject-error verification options: --reject-fail --hostname=HOSTNAME daemon options: --daemonize --user=USER --group=GROUP --pidfile=PIDFILE dkimproxy.in --help to see a full description of the various options OPTIONS
DESCRIPTIONdkimproxy.in listens on the IP address and TCP port specified by its first argument (the "listen" port), and sends the traffic it receives onto the second argument (the "relay" port), with messages getting verified and having an "Authentication-Results" header added to them.EXAMPLEFor example, if dkimproxy.in is started with:dkimproxy.in --reject-fail --reject-error 127.0.0.1:10025 127.0.0.1:10026 the proxy will listen on port 10025 and send the verified messages to some other SMTP service on port 10026. CONFIGURATION FILEParameters can be stored in a separate file instead of specifying them all on the command-line. Use the conf_file option to specify the path to the configuration file, e.g.dkimproxy.in --conf_file=/etc/dkimproxy_in.conf The format of the configuration file is one option per line: name of the option, space, then the value of the option. E.g. # this is an example config file listen 127.0.0.1:10025 relay 127.0.0.1:10026 hostname myhost.example.com reject_fail is equivalent to dkimproxy.out --hostname=myhost.example.com --reject-fail \ 127.0.0.1:10025 127.0.0.1:10026 AUTHORJason Long
Visit the GSP FreeBSD Man Page Interface. |