1. Создаю пользователя, который будет посылать автоответы:
Код: Выделить всё
useradd -c "Autoresponer" -g mail -m -s /sbin/nologin autoresp
Код: Выделить всё
redirect unix - n n - - pipe
flags=R user=autoresp argv=/etc/postfix/script ${sender} ${recipient}
Код: Выделить всё
#!/bin/bash
/usr/sbin/sendmail -f $2 $1 < /etc/postfix/autoreply.txt
4. Создаю файл /etc/postfix/autoreply.txt и вписать в него текст сообщения
Код: Выделить всё
This is a autoreply text
I am absent
Send mail later
Код: Выделить всё
smtpd_recipient_restrictions = "что там есть", hash:/etc/postfix/recipient
Код: Выделить всё
user1@samara.vbrr.ru FILTER redirect:
user2@samara.vbrr.ru FILTER redirect:
Код: Выделить всё
postmap recipient
Код: Выделить всё
postfix reload
Почему, что может быть не так?
Заранее благодарен.