How To Set Up A Postfix Autoresponder With Autoresponse

Do you like HowtoForge? Please consider supporting us by becoming a subscriber.
Submitted by falko (Contact Author) (Forums) on Thu, 2009-04-02 10:34. :: Postfix

How To Set Up A Postfix Autoresponder With Autoresponse

Version 1.0
Author: Falko Timme <ft [at] falkotimme [dot] com>
Last edited 03/25/2009

Autoresponse is an autoresponder for the Postfix MTA. It allows you to create autoresponder messages for email accounts from the shell and also by emailing the autoresponder text to a certain email address.

I do not issue any guarantee that this will work for you!

 

1 Preliminary Note

The setup that I describe here works for all my "Virtual Users And Domains With Postfix, Courier, MySQL And SquirrelMail" setups. I don't guarantee that it will work for other setups.

I'm using such a "Virtual Users And Domains With Postfix, Courier, MySQL And SquirrelMail" here and have set up the email account falko@example.com for which I want to create an autoresponder.

 

2 Installing Autoresponse

We can download and install Autoresponse as follows:

cd /tmp
wget http://www.nefaria.com/scriptz/autoresponse-1.6.2.tar.gz
tar xvfz autoresponse-1.6.2.tar.gz
cd autoresponse

useradd -d /var/spool/autoresponse -s `which nologin` autoresponse
mkdir -p /var/spool/autoresponse/log /var/spool/autoresponse/responses
cp ./autoresponse /usr/local/sbin/
chown -R autoresponse:autoresponse /var/spool/autoresponse
chmod -R 0770 /var/spool/autoresponse

Then we edit /etc/postfix/master.cf:

vi /etc/postfix/master.cf

At the beginning of the file, you should see the line

[...]
smtp      inet  n       -       -       -       -       smtpd
[...]

Modify it so that it looks as follows (the second line must begin with at least one whitespace!):

[...]
smtp      inet  n       -       -       -       -       smtpd
   -o content_filter=autoresponder:dummy
[...]

At the end of the file, append the following two lines (again, the second line must begin with at least one whitespace!):

[...]
autoresponder unix - n n - - pipe
     flags=Fq user=autoresponse argv=/usr/local/sbin/autoresponse -s ${sender} -r ${recipient} -S ${sasl_username} -C ${client_address}

Then run...

postconf -e 'autoresponder_destination_recipient_limit = 1'

... and restart Postfix:

/etc/init.d/postfix restart

If you have users with shell access, and you want these users to be able to create autoresponder messages themselves on the shell, you must add each user account to the autoresponse group, e.g. as follows for the system user falko:

usermod -G autoresponse falko

However, this is not necessary if you want to create all autoresponder messages as root (or use the email feature to create autoresponder messages - I'll come to that in a moment).

 

3 Using Autoresponse

Run

autoresponse -h

to learn how to use Autoresponse:

server1:~# autoresponse -h

/usr/local/sbin/autoresponse [-r {recipient email} -s {sender email} -S {sasl username} -C {client ip}] 
[-e {email address}] [-d {email address}] [-E {email address}] [-D {email address}] [-h]

        -r, -s, -S, and optionally -C must be used together to 
specify a recipient, sender, sasl username, and client IP of an autoresponse message.
           Normally you configure these in postfix's "master.cf" 
but they can be used from the terminal as well (only for testing purposes!).
           If this is executed from a terminal, you'll need to hit CTRL-D
 when you are finished typing your autoresponse message.

        -e is used to create a new autoresponse or edit an existing one for the specified user.
           If a disabled autoresponse message exists, it will be ignored and a new message will be created.

        -d is used to disable an existing active autoresponse message.

        -E is used to enable an existing autoresponse message. If both a disabled AND and an active autoresponse message exist,
           the active message will be overwritten by the disabled one.

        -D is used to delete an existing autoresponse message, it will not delete disabled autoresponse messages.

        -h prints this help menu

server1:~#

To create an autoresponder message for the account falko@example.com, we run...

autoresponse -e falko@example.com

... and type in the autoresponder text:

I will be out the week of March 2 with very limited access to email.
I will respond as soon as possible.
Thanks!
Falko

(You cannot set the subject using this method; by default, the subject of the autoresponder messages will be Out of Office.)

Now send an email to falko@example.com from a different account, and you should get the autoresponder message back.

To disable an existing autoresponder, run

autoresponse -d falko@example.com

To enable a deactivated autoresponder, run

autoresponse -E falko@example.com

To delete an autoresponder, run

autoresponse -D falko@example.com

You can modify the RESPONSE_RATE variable in /usr/local/sbin/autoresponse. It defines the time limit (in seconds) that determines how often an autoresponder message will be sent, per email address. The default value is 86400 (seconds) which means if you send an email to falko@example.com and receive an autoresponder message and send a second email to falko@example.com within 86400 seconds (one day), you will not receive another autoresponder message.

vi /usr/local/sbin/autoresponse

[...]
declare RESPONSE_RATE="86400"
[...]

 

4 Creating/Deleting Autoresponder Messages By Email

Instead of creating autoresponder messages on the command line, this can also be done by email. If you want to create an autoresponder message for the email address falko@example.com, send an email from falko@example.com to falko+autoresponse@example.com (this works only if you've set up SMTP-AUTH on your server). The subject of that email will become the subject of the autoresponder message (that way you can define subjects different from Out of Office), and the email body will become the autoresponder text.

If you create an autoresponder this way, Autoresponse will send you an email back like this one (so that you know if the operation was successful):

Autoresponse enabled for falko@example.com by SASL authenticated user: falko@example.com from: 192.168.0.200

If there's already an active autoresponder for that email address, it will be disabled (i.e., there's no active autoresponder at all for that address anymore, and you will receive an email telling you so:

Autoresponse disabled for falko@example.com by SASL authenticated user: falko@example.com from: 192.168.0.200

).

This means the email feature is a toggle switch - if there's no sautoresponder, it will be created, and if there's an autoresponder, it will be disabled.

 

5 Links


Please do not use the comment function to ask for help! If you need help, please use our forum.
Comments will be published after administrator approval.
Submitted by MDH (not registered) on Sun, 2010-06-20 13:15.

Hi, one little issue.

The autoreposnder replies to the FROM address of the orignal sender. This is an issue when there is some aliasing going on (ie he REPLY TO address differs to the FROM address).

Do you know how I could force the autoresponder to always use the REPLY-TO address?

Thanks in advance

 

Submitted by MDH (not registered) on Sun, 2010-06-20 11:28.

I installed iRedMail (centos+postfix-dovecot) server then added autoreponse as per your instructions, and within 20 minutes from starting the whole process, I had a fully functional Enterprise ready email sever with autoreponse configured at the sametime as mailbox creation.

awesome job thanks!

Submitted by PJ (not registered) on Thu, 2010-05-13 15:29.
I set this up, and it works great.  However, I need to integrate Amavis and SpamAssassin according to these instructions, flurdy.com/docs/postfix/, but I can't get them all to work together.  How can I accomplish this?  Thanks
Submitted by Anonymous (not registered) on Sat, 2010-06-26 00:03.

you could try iRedMail (google it)

it installs postfix, dovecot, anti virus, anti spam, etc etc the lot.

all well documented, worked great for me...

Submitted by catalin bargaoanu (not registered) on Thu, 2010-05-13 14:35.

works like a charm... good job...

BR

Submitted by JQ (not registered) on Fri, 2009-09-18 09:05.
I am using local user and virtual users. autoresponse seems to work - I got an email response. But, the response email is empty. No subject, no content. I have created enable a response file for user actually. What is wrong?
Submitted by JustinHoMi (not registered) on Mon, 2010-03-29 22:23.
I'm having the same problem. The autoresponses are blank. Did you ever figure this out?
Submitted by Jun (not registered) on Thu, 2009-06-18 23:18.

 

Jun 18 15:14:19 x postfix/smtpd[15108]: NOQUEUE: reject: RCPT from x: 550 5.1.1 <junc+autoresponse@220mm.com>: Recipient address rejected: User unknown in virtual mailbox table; from=<junc@220mm.com> to=<junc+autoresponse@220mm.com> proto=ESMTP helo=<220mmjpchang>

 

Here is error from our log...

 

Thanks

Submitted by pebkac (registered user) on Fri, 2009-04-03 19:13.

will this work with the "Perfect Ubuntu Server 8.10"

--Steve

Submitted by Brendan Lally (not registered) on Sat, 2009-07-18 21:42.
Does NOT work with non virtual user mail accounts.
Sponsored Links: Turn your desk phone and mobile phone into one with Sprint Mobile Integration.
www.seamlessenterprise.com

One number. One voicemail. Seize the lead. Sprint Mobile Integration.
www.seamlessenterprise.com

One Number. One Voicemail.
Make it easier for clients to reach you. Turn your desk phone and mobile phone into one with Sprint Mobile Integration.
www.seamlessenterprise.com

One number. One voicemail. Sprint Mobile Integration.
www.seamlessenterprise.com

One number. one voicemail. Seize the lead with Sprint. Learn more

AT&T Synaptic Compute as a Service. Boost your power on demand.

Trial: IBM Cognos Express Reporting, Analysis & Planning

Learn benefits of Simpana software.
View the Gartner Video

Sprint 4G - The Ultimate Mobile Broadband
Click here

SAP-Business Objects Crystal Reports Server
Complete reporting without hidden costs. Free Trial