Hi everyone,
I just reinstalled ispCP 1.0.3-1 on an Ubuntu 9.04 machine, however, I get an error when receiving mail from external adresses :
Quote:warning: problem talking to server 127.0.0.1:60000: Connection refused
I think this has to do with Postgrey not listening on port 60000 on external adresses, anyone could help me out with this?
Many thanks is advance 

Ok, found the problem.
In case it's useful to anyone :
Code:
vim /etc/default/postgrey
 
Changed line to : 
Code:
POSTGREY_OPTS="--inet=10023 --inet=60000"
 
Restarted Postgrey : 
Code:
/etc/init.d/postgrey restart
 
Checked Postgrey was listening on the port i wanted :
Code:
netstat -anp | grep 60000
 
Quote:tcp        0      0 127.0.0.1:60000         0.0.0.0:*               LISTEN      28977/postgrey.pid
I think the bug is linked to the corresponding Ubuntu Package, by default Postgrey was listening on port 10023..