Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ScottPhillips/4c29000315808ce4e9da578553040187 to your computer and use it in GitHub Desktop.

Select an option

Save ScottPhillips/4c29000315808ce4e9da578553040187 to your computer and use it in GitHub Desktop.
Mailhog Bash Script
#!/usr/bin/env bash
echo ">>> Installing Mailhog"
# Download binary from github
wget --quiet -O ~/mailhog https://github.com/mailhog/MailHog/releases/download/v0.2.1/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
@saimuthu38
Copy link

The MailHog Bash Script (Upstart) is a very useful script for managing MailHog as a service on Linux-based systems. It helps developers efficiently test emails in a local environment without the need for an external SMTP server.

With this script, you can easily start, stop, and manage MailHog as a background service, ensuring smooth email testing during development.

Thanks to its simplicity and effectiveness, this script is a must-have for developers working with email testing setups!

For more gaming guides and tech tips, visit:
🔗 https://gameypro.in/
🔗 https://gameypro.in/fc-mobile/

@gen-tools
Copy link

ngl, MailHog is such a clutch tool when you’re testing emails locally. No more accidentally blasting real inboxes while debugging 😂. It keeps everything in one clean spot so you can check formatting, links, and templates without stress. emotional oriya sad shayari

@gen-tools
Copy link

This is really insightful! It’s always inspiring to see discussions about leadership, strategy, and making a real impact in any field. Taking the time to reflect on these points really highlights how thoughtful planning and the right team can drive meaningful change. painful relationship pati patni emotional quotes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment