postfix, auto postmap using inotify

required: inotify-tools

first create this bash script, let’s name it as transport.sh

1#!/bin/bash
2while true; do
3    inotifywait -e modify /etc/postfix/transport
4    postmap hash:/etc/postfix/transport
5done

make it executable

1chmod 755 transport.sh

run the script

1./transport.sh > /dev/null 2>&1&

this script will stay on background proccess.

try modify transport file

1dd.com smtp:[x.x.x.x]:25
2ee.com smtp:[x.x.x.x]:25

save it, and test it

1postmap -q ee.com hash:/etc/postfix/transport
2smtp:[x.x.x.x]:25

enjoy

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *