These forums are locked and archived, but all topics have been migrated to the new forum. You can search for this topic on the new forum: Search for SPF (Sender Policy Framework) support on the new forum.
Hi guys,
I wonder there is no mention about SRS or Postsrsd support on the forum until today. Correct me if I am wrong. Because it is very easy to make Virtualmin supporting SRS, I am posting the (Debian 8) howto:
mkdir /opt/postsrsd
cd /opt/postsrsd
apt-get install cmake chkconfig
wget https://github.com/roehling/postsrsd/archive/master.zip
unzip master
cd postsrsd-master
make
make install
postconf -e "sender_canonical_maps = tcp:127.0.0.1:10001"
postconf -e "sender_canonical_classes = envelope_sender"
postconf -e "recipient_canonical_maps = tcp:127.0.0.1:10002"
postconf -e "recipient_canonical_classes = envelope_recipient"
chkconfig postsrsd on
service postsrsd restart
rm -r /opt/postsrsd
That's all, enjoy.