Open danbo opened 7 years ago
Started seeing this in the logs.. I think it was after I upgraded docker..
I fixed this by adding
$inet_socket_bind = '127.0.0.1';
to the end of /etc/amavisd/amavisd.conf in the image.
Of course the fastest way to do this was to extract it out of the image:
docker exec -it <image_name> cat /etc/amavisd/amavisd.conf > amavisd.conf
and update the run command to map the locally updated one to the image:
-v $(pwd)/amavisd.conf:/etc/amavisd/amavisd.conf:rw\
Hope this helps someone
Source: https://groups.google.com/forum/#!topic/mailing.unix.amavis-user/WAsTKPO-i-0
Started seeing this in the logs.. I think it was after I upgraded docker..
I fixed this by adding
$inet_socket_bind = '127.0.0.1';
to the end of /etc/amavisd/amavisd.conf in the image.
Of course the fastest way to do this was to extract it out of the image:
docker exec -it <image_name> cat /etc/amavisd/amavisd.conf > amavisd.conf
and update the run command to map the locally updated one to the image:
-v $(pwd)/amavisd.conf:/etc/amavisd/amavisd.conf:rw\
Hope this helps someone
Source: https://groups.google.com/forum/#!topic/mailing.unix.amavis-user/WAsTKPO-i-0