2013-06-03 10:10, Axb wrote:
not sure if this purely cosmetic or a bug
It is by design.
or my lack of clue: my init script's spamd options
SPAMDOPTIONS=" --ipv4-only -d -c -m 30 --min-spare=4 -u spamd -x -q"
on start, spamd log shows:
Jun 3 10:04:51 spamd03 spamd[18606]: spamd: server started on
IO::Socket::INET6 [127.0.0.1]:783 (running version
3.4.0-pre3-r1435395)
Jun 3 10:04:51 fumail03 spamd[18606]: spamd: server pid: 18606
why does --ipv4-only show IO::Socket::INET6 usage?
The module IO::Socket::INET6 as well as the IO::Socket::IP can
handle both protocol families and act as a complete replacement
for IO::Socket::INET. Currently the choice of the module is:
(best)IO::Socket::IP -> IO::Socket::INET6 -> IO::Socket::INET,
regardless of -4 or -6 options.
Mark