This is a discussion on postfix on dynamic IP within the alt.comp.mail.postfix forums, part of the Mail Servers and Related category; Hi how setting postfix if i have make this: postfix on dynamic adrres IP: - sending (forwarding) all mail to postfix ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi
how setting postfix if i have make this: postfix on dynamic adrres IP: - sending (forwarding) all mail to postfix with static IP and this host sending this email away... because some orb have blocked my email which is sending from dynamic ip please help....me |
|
|||
|
Rafal sxat wrote:
> Hi > > how setting postfix if i have make this: > > postfix on dynamic adrres IP: - sending (forwarding) all mail to postfix > with static IP and this host sending this email away... because some orb > have blocked my email which is sending from dynamic ip > > > please help....me I think what you are looking for is the "relayhost" configuration in main.cf. relayhost = mailrelay.domain.com and then "postfix reload". -- Greg |
|
|||
|
>
> I think what you are looking for is the "relayhost" > configuration in main.cf. > > relayhost = mailrelay.domain.com > > and then "postfix reload". thanks very match! relayhost with auth can work with SMTP in wrapper mode (SSL) ? regards Rafal sxat |
|
|||
|
Rafal (sxat) wrote:
> relayhost with auth can work with SMTP in wrapper mode (SSL) ? Sure can. http://www.postfix.org/TLS_README.html -- Greg |
|
|||
|
> > relayhost with auth can work with SMTP in wrapper mode (SSL) ?
> > > Sure can. > > http://www.postfix.org/TLS_README.html > my relayhost with auth in wrappermode is running on port 3000 becase port 25 is used by other smtp (for me only as proxy) and if I in main.cf setting relayhost = [mail.host.pl]:3000 smtp_sasl_password_maps = hash:/tmp/auth_smtp smtp_sasl_auth_enable=yes smtp_sasl_security_options = noanonymous in auth_smtp: mail.host.pl useronrelay:userpassword when SMTP on relay is in wrappermode maillog on client (my server) always say connection time out (I can normal connect to relay server host to smtp from openssl s_client -connect host:port) but if I change SMTP on relayhost from warappermode to STARTTLS all is ok regards Rafal |
|
|||
|
Rafal (sxat) wrote:
>>> relayhost with auth can work with SMTP in wrapper mode (SSL) ? >> >> Sure can. >> >> http://www.postfix.org/TLS_README.html >> > > my relayhost with auth in wrappermode is running on port 3000 > becase port 25 is used by other smtp (for me only as proxy) > > and if I in main.cf setting > > > relayhost = [mail.host.pl]:3000 > smtp_sasl_password_maps = hash:/tmp/auth_smtp > smtp_sasl_auth_enable=yes > smtp_sasl_security_options = noanonymous > > in auth_smtp: > mail.host.pl useronrelay:userpassword > > > when SMTP on relay is in wrappermode maillog on client (my server) always > say connection time out > (I can normal connect to relay server host to smtp from openssl > s_client -connect host:port) > but if I change SMTP on relayhost from warappermode to STARTTLS all is ok > > > > regards > Rafal OK Rafal, I understand now. Postfix can listen in the SSL wrapper mode on port 465. But if it can send email to another server that's running in the SSL wrapper mode.... I don't know how to do it. I don't see it documented anywhere and didn't see anything in Google searches. -- Greg |