> I tried that in Openmeetings: > mail..smtp.server: localhost > mail.smtp.starttls.enable: false
> does not work, same timeout Check your /etc/hosts or use 127.0.0.1 instead of localhost. It could be that localhost is not in the hosts file and can't be resolved or that it only resolves to ::1 or some other such. > I tried that via telnet: > Send a mail with auth login via localhost. > ->> i get an error : authentication not enabled You need something like mydomain = yourdomain.tld myorigin = $mydomain inet_interfaces = localhost mynetworks_style = host The last line tells postfix to relay anything from localhost without requiring a valid user. Don't forget to restart postfix. Cheers, Z
