I spend today reading about how to pipe a mail received by postfix into a perl script. I read a lot but could hardly find a solution for my setup. So I give one here.
An application must be able to process email coming in from the net and it must be also able to respond to these emails.
The postfix main.cf configuration created by dpkg-reconfigure postfix
myhostname = [host name] alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases myorigin = /etc/mailname mydestination = [list for local delivery] relayhost = [the MTA name for sending emails] mynetworks = [see posfix documentation] mailbox_size_limit = [you would rather set it!] recipient_delimiter = + inet_interfaces = all inet_protocols = ipv4 mail_spool_directory = /var/mail
As usual TIMTOWTDI but a simple alias will NOT work! My solution works without:
Now you have to:
To avoid creating whatsoever users, we will use a kind of redirect. So we add a line like the following to the main.cf file:
virtual_alias_maps = hash:/etc/postfix/redirectNotice the hash: prefix to the file. This works well and avoid to re-compile postfix with pcre, in case it is not included.
Create the file defined above and enter a line with a regexp and a name in it:
/[name]@[machine domain]/ [alias name]Notice you have to use a regexp as first argument on this line! The alias name does not matter. Only secure name@domain is the correct email address.
Now we create the alias which will pipe the email into our script. Add a line like the following to the /etc/aliases file:
[alias name]: "|/usr/bin/perl /[path to]/thescript.pl"Notice you have to secure both alias name match!
To activate all this you have to
This is what you will get in the STDIN of your script
From [who ever]@[whatever].com Mon Apr 22 17:48:08 2013 Return-Path: <[who ever]@[whatever].com > X-Original-To: [name]@[machine domain] Delivered-To: [name]@[machine domain] Received: by [No matter to you] To: <[name]@[machine domain]> Subject: [What so ever] X-Mailer: mail (GNU Mailutils 2.2) Message-Id: <20130422154808.4100143A9@lap01> Date: Mon, 22 Apr 2013 17:48:08 +0200 (CEST) From: [who ever]@[whatever].com lkjahsdlfkjhlahsdf lkjahdsflkjhasdlfh lkjahsdflkjhsaldfhk
Notice: If you intent to open(OUT ">", $filename); in your PERL script it will fail with a missing privilege error. To avoid this you have to set default_privs = to an other user than nobody in the postfix main.cf. This has impact on the whole postfix setting. I did not analyse it until now. So if you do this, you do it at your own risk.
Enjoy!
K
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Postfix: Piping an email into a PERL script
by MidLifeXis (Monsignor) on Apr 26, 2013 at 15:12 UTC | |
by Zzenmonk (Sexton) on Apr 26, 2013 at 15:22 UTC | |
by MidLifeXis (Monsignor) on Apr 26, 2013 at 15:26 UTC | |
by Zzenmonk (Sexton) on Apr 26, 2013 at 15:34 UTC | |
by MidLifeXis (Monsignor) on Apr 26, 2013 at 15:42 UTC | |
| |
Re: Postfix: Piping an email into a PERL script
by i_m_mahmoud (Initiate) on May 06, 2013 at 13:38 UTC | |
Re: Postfix: Piping an email into a PERL script
by Anonymous Monk on May 28, 2013 at 19:29 UTC | |
by Anonymous Monk on Mar 06, 2014 at 16:50 UTC | |
Re: Postfix: Piping an email into a PERL script
by jesuashok (Curate) on Nov 18, 2013 at 07:24 UTC |