README
Installation
git clonethis repository on to a server with incoming SMTP enabled. I recommend running both a live and test copy. For instance, store in both/usr/local/bin/redirectand/usr/local/bin/redirect_test.- In
/etc/aliases, set up aliases. E.g.:
support: "| /usr/local/bin/redirect/redirect.php"
support-test: "| /usr/local/bin/redirect_test/redirect.php"
- Run
newaliasesas root for the aliases to take effect. - Run
composer installin the directory to install dependencies. - Copy
.env.exampleto.env. - Open
.envand fill in the appropriate environment values. Note that for the boolean values (e.g.DEBUG_MODE), you should leave the values blank for false. - (Optional) Add a custom field in Redmine called "Email Domain" to the Projects entity of type "Text". Populate this with the domain name that emails come from. This catches users from the organization who don't otherwise haev an account.
- Run
php getmappings.phpto test your settings. If you've set everything up correctly, it should populate two CSVs in thedatafolder:domainmap.csvandusermap.csv. - If you have special emails that should be handled differently, you can create a
specialusers.csvfile in thedatafolder with the same format as records inusermap.csv. This file is concatenated on to the end of whatever users come from Redmine. - Set up a cron job to generate the mappings. I run this once per hour:
45 3 * * * /usr/bin/php /usr/local/bin/redirect_test/getmappings.php
45 4 * * * /usr/bin/php /usr/local/bin/redirect/getmappings.php
Description
Languages
PHP
100%