Created
November 28, 2014 11:08
-
-
Save techgaun/08fab5827d32fab8905a to your computer and use it in GitHub Desktop.
Install mailsend on centos, rhel, amazon linux
This file contains hidden or 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
| #!/bin/bash | |
| #installs https://github.com/muquit/mailsend | |
| #tested on amzn linux | |
| git clone git@github.com:muquit/mailsend.git mailsend | |
| cd mailsend | |
| git checkout 1.17b14 | |
| yum install -y openssl-devel | |
| ./configure --with-openssl=/usr/ | |
| make && make install | |
| #installs binary on /usr/local/bin/mailsend |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment