I am having problems with postfix. When i try to send emails to virtual users i get: Dec 6 08:17:50 chip postfix/smtp[21365]: EF17A21808F: to=<[email protected]>, orig_to=<[email protected]>, relay=none, delay=3, status=bounced ([server1.example.com]: Name or service not known) My server details are as follows: Code: hostname:chip.codefreaks.com.au in my postifx main.cf: Code: mydomain = codefreaks.com.au myhostname = chip.$mydomain and in my virtusertable: Code: [email protected] web12_luis Does anyone have a clue what is happening? Where is postfix resolving the virtual user to server1.example.com? Thanks in advance. Luis
Fix it. Found this thread here and applied this: Code: find ./ -type f -exec sed -i 's/server1.server.example.com/chip.codefreaks.com.au/' {} \; in Code: /etc and Code: /etc/postfix Ho yeah by the way the problem was the mailname file was still server1.example.com. Good luck