Muzaffer Tolga ?zses: > Hi, > > It seems my service provider's network has been blocked by Hotmail. > After many correspondences, I was mailed by Hotmail that the issue was > cleared for one IP, however I gave them wrong one. So, I edited main.cf > and replaced inet_interfaces = all with inet_interfaces = the.ip.I.gave, > and restarted postfix. However, I'm now getting "(connect to > 127.0.0.1[127.0.0.1]:10024: Connection refused)". I did a grep in the > logs and the output was "Feb 27 09:48:17 server postfix/smtp[11674]: > 3C361768793: to=<to...@ozses.net>, relay=127.0.0.1[127.0.0.1]:10024, > delay=0.04, delays=0.03/0.01/0/0, dsn=4.4.2, status=deferred (lost > connection with 127.0.0.1[127.0.0.1] while receiving the initial server > greeting)"
http://www.postfix.org/DEBUG_README.html#logging When Postfix does not receive or deliver mail, the first order of business is to look for errors that prevent Postfix from working properly: % egrep '(warning|error|fatal|panic):' /some/log/file | more Note: the most important message is near the BEGINNING of the output. Error messages that come later are less useful. The nature of each problem is indicated as follows: * "panic" indicates a problem in the software itself that only a programmer can fix. Postfix cannot proceed until this is fixed. * "fatal" is the result of missing files, incorrect permissions, incorrect configuration file settings that you can fix. Postfix cannot proceed until this is fixed. * "error" reports an error condition. For safety reasons, a Postfix process will terminate when more than 13 of these happen. * "warning" indicates a non-fatal error. These are problems that you may not be able to fix (such as a broken DNS server elsewhere on the network) but may also indicate local configuration errors that could become a problem later.