How To Set Up A Postfix Autoresponder With Autoresponse
How To Set Up A Postfix Autoresponder With AutoresponseVersion 1.0 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 NoteThe 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 AutoresponseWe can download and install Autoresponse as follows: cd /tmp useradd -d /var/spool/autoresponse -s `which nologin` autoresponse Then we edit /etc/postfix/master.cf: vi /etc/postfix/master.cf At the beginning of the file, you should see the line
Modify it so that it looks as follows (the second line must begin with at least one whitespace!):
At the end of the file, append the following two lines (again, the second line must begin with at least one whitespace!):
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 AutoresponseRun autoresponse -h to learn how to use Autoresponse: server1:~# autoresponse -h To create an autoresponder message for the account falko@example.com, we run... autoresponse -e falko@example.com ... and type in the autoresponder text:
(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
4 Creating/Deleting Autoresponder Messages By EmailInstead 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
|



Recent comments
22 hours 7 min ago
1 day 1 hour ago
1 day 2 hours ago
1 day 3 hours ago
1 day 5 hours ago
1 day 6 hours ago
1 day 8 hours ago
1 day 23 hours ago
2 days 47 min ago
2 days 4 hours ago