Questions tagged [milter]

Milter is set of API that provides an interface for third-party software to validate and modify messages as they pass through the mail transport system.

Milter was portmanteau for mail filter. Originally milter was written for . In 2006, 2.3.0 officially support milter, although there are little limitations of Postfix milter implementations.

A milter-capable MTA will notifies the milter application about each phase of the delivery of a message. At each phase of the SMTP session, the milter application is given data about the arriving message and then has an opportunity to terminate acceptance of the message early when appropriate.

A milter-capable MTA can connect to multiple filters in parallel that serve specific purposes such as anti-virus, anti-spam, message authentication, flow regulation, etc. The filters also can take special action on the message: add or remove recipients in the envelope; alter the body prior to delivery; add, change or remove header fields in the message, etc.

Website www.milter.org provides catalog of open-source and commercial milter. This website also provides the documentation about milter API for developer.

References:

43 questions
0
votes
1 answer

Capture queue ID and 250 OK via milter

We have a web app that sends email. Right now, if we send an email, and it is bounced (for whatever reason), no one knows since it comes from a no-reply address, which is never checked for bounces. Some of these emails are very important, and we'd…
DrDamnit
  • 348
  • 5
  • 18
0
votes
1 answer

postfix connection to python-libmilter test-milter

From the python-libmilter I am trying to run the test milter. The milter is listening (I can connect via telnet to localhost 5000) I enabled the milter in the postfix config: milter_protocol = 6 milter_default_action = accept smtpd_milters =…
Alexander
  • 277
  • 2
  • 8
0
votes
3 answers

Postfix + Python MIlter

I want to write own miter, but I have problem. I have installed postfix, libmilter and python module Milter. I try to run sample.py milter which I found in pymilter-0.9.7.tar.gz (from http://bmsi.com/python/milter.html ) but I don't now how to add…
infernox
  • 29
  • 1
  • 4
0
votes
1 answer

Configuring Postfix to use milter (archiveSMTP)

How does one config Postfix to use the milter "archiveSMTP" ? The milter config instructions (http://www.dancingfortune.com/projects/archivesmtp/download.php) mention only one socket for communication between the milter and the MTA ... yet any…
Doug
  • 1
  • 1
  • 1
0
votes
1 answer

How can I collect the information sendmail sends to a milter and receives from that milter?

SendMail | CentOS For debugging/troubleshooting purposes, I'd like to examine the raw information that sendmail is sending to a local milter (and also the data being returned by a milter). Is that possible? Would I be able to see this if I changed…
Mike B
  • 11,871
  • 42
  • 107
  • 168
0
votes
1 answer

Do I need libmilter somewhere to make postfix use dkim-filter?

I've been doing everything the instructions say http://www.postfix.org/MILTER_README.html and I was able to build, configure and run dkim-filter but postfix doesn't seem to call it. I've got this in my main.cf # DKIM milter_default_action =…
Stu
  • 2,198
  • 2
  • 16
  • 23
0
votes
1 answer

milter-regex / Ubuntu or Debian

I have been using milter-regex (http://www.benzedrine.cx/milter-regex.html) on Redhat for some time and am moving to Ubuntu. When compiling the source from their website, I get errors, even though I have the required libs installed. The email…
NinjaCat
  • 576
  • 1
  • 9
  • 21
0
votes
1 answer

Getting postfix to forward a certain warning to the milter

I'm running postfix 2.11.3 under Debian. I have installed a homegrown milter which runs in conjunction with CONNECTION, HELO, MAIL FROM, RCPT TO, HEADERS, and EOM, and it's been working well for years. It uses the standard milter API. When the…
HippoMan
  • 222
  • 1
  • 10
0
votes
2 answers

opendkim milter not launching on proper server socket

The following error impeded the restart of opendkim × opendkim.service - OpenDKIM Milter Loaded: loaded (/lib/systemd/system/opendkim.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Sat 2023-04-22…
Jerome
  • 207
  • 1
  • 8
0
votes
2 answers

How to add a single header for any incoming mail with Postfix?

I have Postfix running with a number of smtpd processes configured in master.cf like this: # Internet facing one 1.2.3.4:25 inet n - y - - smtpd -o ... # internet-only overrides # Internal facing…
gertvdijk
  • 3,504
  • 4
  • 30
  • 46
0
votes
1 answer

Postfix seems to ignore spam miltering for LMTP

I use SpamAssassin through a milter to check e-mail, but it seems postfix does not check local delivery (like contact forms). How can I force Postfix to treat all mail as 'foreign'?
Guido Goluke
  • 95
  • 1
  • 7
-1
votes
1 answer

Postfix Package Openarc

I have a server running Ubuntu 16. I'm trying to get postfix configured to use OpenArc. I've installed the OpenArc package, but it's not automatically starting on reboot. If I run openarc -c /etc/openarc/openarc.conf -n it doesn't return an error.…
-4
votes
4 answers

Clamav. WARNING: No clamd server appears to be available

I have clamav.log full of these messages, what might be the problem and how to fix this? I have Debian clamav-0.97.6+dfsg-1~squeeze1 spamassassin-3.3.1-1 dovecot-pop3d-1.2.15-7 postfix-2.7.1-1+squeeze1 and also there is somewhere near…
Jevgeni Smirnov
  • 492
  • 1
  • 6
  • 22
1 2
3