Last active
December 5, 2018 12:22
-
-
Save v-jacob/68caf7aeee53305a1ffa to your computer and use it in GitHub Desktop.
Mailhog Bash Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo ">>> Installing Mailhog" | |
# Download binary from github | |
wget --quiet -O ~/mailhog https://github.com/mailhog/MailHog/releases/download/v1.0.0/MailHog_linux_amd64 | |
# Make it executable | |
chmod +x ~/mailhog | |
# Make it start on reboot | |
sudo tee /etc/init/mailhog.conf <<EOL | |
description "Mailhog" | |
start on runlevel [2345] | |
stop on runlevel [!2345] | |
respawn | |
pre-start script | |
exec su - vagrant -c "/usr/bin/env ~/mailhog > /dev/null 2>&1 &" | |
end script | |
EOL | |
# Start it now in the background | |
sudo service mailhog start |
@kalenjohnson: you can install it on your vagrant box and access it through your box's IP and port 8025
systemd version instead of upstart (Ubuntu 16.04 or greater)
https://gist.github.com/varghesejacob/c31a844042ca5ced6b72ccab3cd6055b
upstart alternative without vagrant: https://gist.github.com/gsouf/845feca97655dc8092975b14473a4e7e
Tested this and works nicely (Ubuntu 14.04). Make sure to open port 8025 (if firewall present) and restart mailhog with sudo service mailhog restart.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you install this on the Vagrant box or on your host machine?