This is a discussion on postfix and amavisd refused port 25 within the alt.comp.mail.postfix forums, part of the Mail Servers and Related category; helol! I installed amavisd,it works with postfix,but now postfix works on port 10025,amavisd on 10024,why Postfix ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Ander Malcon wrote:
> helol! > I installed amavisd,it works with postfix,but now postfix works on port > 10025,amavisd on 10024,why Postfix dont work on port 25,mail can be send > to me:/ > > who can help me? > > regards Try to implement it that way (if you didn't yet): main.cf: content_filter = smtp:127.0.0.1:10024 master.cf localhost:10025 inet n - n - - smtpd -o content_filter= That should work. I've implemented antivir (without usage of amavis) this way. Postfix still listens on Port 25. Content_filter is just an interface to pipe messages to an external program. The same vice versa at port 10025. |
|
|||
|
Torsten Stauder <audio07@t-online.de> wrote:
> Try to implement it that way (if you didn't yet): > > main.cf: > content_filter = smtp:127.0.0.1:10024 > > master.cf > localhost:10025 inet n - n - - smtpd -o content_filter= > > That should work. I've implemented antivir (without usage of amavis) > this way. > > Postfix still listens on Port 25. Content_filter is just an interface to > pipe messages to an external program. The same vice versa at port 10025. > I use antivir with amavisd and postfix in main.cf I have: content_filter=smtp-amavis:[127.0.0.1]:10024 in master.cf I have: 127.0.0.1:10025 inet n - n - - smtpd -o content_filter= -o local_recipient_maps= -o smtpd_helo_restrictions= -o smtpd_client_restrictions= -o smtpd_sender_restrictions= -o smtpd_recipient_restrictions=permit_mynetworks,rej ect -o mynetworks=127.0.0.0/8 When Postfix is started and I telnet 127.0.0.1 25 I can't connect[unable to connect] ports 10024 amavisd and 10025 postfix works! regards |