Skip to content

Commit

Permalink
✨ Install and configure postfix for SMTP on port 1025 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 authored Mar 12, 2018
1 parent 57e5536 commit 8b293c6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,19 @@ chown -R vagrant:vagrant /home/vagrant/.oh-my-zsh
chown vagrant:vagrant /home/vagrant/.zshrc

# Install Golang

wget https://dl.google.com/go/go1.10.linux-amd64.tar.gz
tar -C /usr/local -xzf go1.10.linux-amd64.tar.gz
printf "\nPATH=\"/usr/local/go/bin:\$PATH\"\n" | tee -a /home/vagrant/.profile

# Install & Configure Postfix

echo "postfix postfix/mailname string homestead.test" | debconf-set-selections
echo "postfix postfix/main_mailer_type string 'Internet Site'" | debconf-set-selections
apt-get install -y postfix
sed -i "s/relayhost =/relayhost = [localhost]:1025/g" /etc/postfix/main.cf
/etc/init.d/postfix reload

# One last upgrade check

apt-get -y upgrade
Expand Down

0 comments on commit 8b293c6

Please sign in to comment.