On 12/10/2010 2:39 PM, Philip A Colvin wrote:
--------------------------------------------------------------
I could really use some help with getting MIMEDefang working
with Postfix. I know from reading many, many posts and web
site How To's it can be done. I have read through the Postfix
guides on implementing milters, but just can't seem to figure
out what needs to be done. I'm still pretty new to Linux so
I'll apologize now for asking what is I'm sure a simple question.
What I'm specifically looking for are the settings needed in
the Postfix main.cf and master.cf files to work with MIMEDefang.
I have Postfix installed and working fine. I also have
MIMEDefang installed and running fine, just not communicating
with Postfix properly.
If anyone can give me some help for guidance, I would greatly
appreciate it.
P. Colvin
I haven't used MIMEDefang, but I can give you general milter tips.
Carefully read
http://www.postfix.org/MILTER_README.html
Then add to your main.cf something like the below.
# for a milter listening on TCP port 2270
smtpd_milters = inet:127.0.0.1:2270
# for a milter listening on a unix socket
smtpd_milters = unix:/path/to/socket
If you have more than one milter, define them in the order you
want them used.
smtpd_milters = unix:/path/to/socket, inet:127.0.0.1:2270
Come back with details if you have a more specific question.
-- Noel Jones