Looking at the code, it looks like it binds to all ip addresses and there's currently no option to bind to a specific one. However, it shouldn't be too difficult to change. For now, you should be able to change Pop_Server.pm (admin/Plugins/GMail/Pop_Server.pm), around line 298 (in connect()), change:
to
I'll have to add this as an option for a future release.
Adrian
Code:
bind(Server, sockaddr_in($self->{port}, INADDR_ANY)) || return $self->error("could not bind to port $self->{port}, perhaps something is already using that port: $!", "WARN");Code:
bind(Server, sockaddr_in($self->{port}, inet_aton('the ip address to bind to'))) || return $self->error("could not bind to port $self->{port}, perhaps something is already using that port: $!", "WARN");I'll have to add this as an option for a future release.
Adrian

