LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Postfix: How to configure postfix to process mail from another host (https://www.linuxquestions.org/questions/linux-server-73/postfix-how-to-configure-postfix-to-process-mail-from-another-host-676331/)

m1ckey78 10-14-2008 02:23 PM

Postfix: How to configure postfix to process mail from another host
 
Hey there.

I have an Ubuntu 7.10 server with postfix on it.
I installed postfix primarily to send mail trought the php script on this server, wich act primarily as a webserver.

Postifx was installed, and configured with the default settings.

I can send mail to anyone trought the php mail function without any problem. Now what we would like to do, is send email from another host. This host will use the postfix server as its SMTP server, and we would like to mail to be processed correctly, just as the server do when I send it locally.

I am not a postfix guy, so I dont know much about it, if one of you can give me a solution, I would really appreciate it.

Thanks




Error that postfix gives when the other host try to send the mail:



Oct 14 14:41:42 cnqweb postfix/smtpd[16248]: connect from unknown[x.20.0.205]
Oct 14 14:41:42 cnqweb postfix/smtpd[16248]: disconnect from unknown[x.20.0.205]
Oct 14 14:41:42 cnqweb postfix/smtpd[16248]: connect from unknown[x.20.0.205]
Oct 14 14:41:42 cnqweb postfix/smtpd[16248]: NOQUEUE: reject: RCPT from unknown[x.20.0.205]: 550 5.1.1 <x@cablevision.qc.ca>: Recipient address rejected: User unknown in local recipient table; from=<y@cablevision.qc.ca> to=<z@cablevision.qc.ca> proto=ESMTP helo=<XXX>
Oct 14 14:41:42 cnqweb postfix/smtpd[16248]: disconnect from unknown[x.20.0.205]


Here is the important stuff in my DEFAULT postfix installation:

myhostname = cnqweb.cablevision.qc.ca
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = cnqweb.cablevision.qc.ca, localhost.cablevision.qc.ca,localhost
relayhost =
mynetworks = 127.0.0.0/8, x.x.0.2, x.x.0.6, x.x.0.0/24
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all

m1ckey78 10-15-2008 07:11 AM

bump anyone, im sure someone have an answer to this!!
thanks

carlmarshall 10-15-2008 10:43 AM

You need to allow the postfix server to relay mail for the other host. The simply way is to add the IP address of the other server to the mynetworks variable.

Carl.

m1ckey78 10-15-2008 10:59 AM

Cool it works.

Thanks a lot!!


All times are GMT -5. The time now is 11:57 PM.