Installs postfix and redis. Sets up postfix to forward all emails to user 'toredis' which stores all emails to redis.
- CentoOS 7
- Chef 12.0 or later
Just include postfix-redis
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[postfix-redis]"
]
}
cd /home/toredis
# Read messages from redis:
./store_to_redis.py -r [email protected]
Author: Sebastian Vaisov