Skip to content

Instantly share code, notes, and snippets.

@facundobianco
Created May 27, 2015 19:42
Show Gist options
  • Save facundobianco/43b429e7b14e1c1aadac to your computer and use it in GitHub Desktop.
Save facundobianco/43b429e7b14e1c1aadac to your computer and use it in GitHub Desktop.
I used it on openBSD 5.5
# libesmtp
# with "--enable-debug=yes" you can use "-X /tmp/esmtp" option
ftp -4 http://www.stafford.uklinux.net/libesmtp/libesmtp-1.0.6.tar.gz
tar zxf libesmtp-1.0.6.tar.gz && cd libesmtp-1.0.6
./configure --prefix=/usr/local --enable-debug=yes
make && make install
# esmtp
ftp -4 ftp://ftp.tw.freebsd.org/pub/FreeBSD/distfiles/esmtp-1.2.tar.bz2
tar jxf esmtp-1.2.tar.bz2 && cd esmtp-1.2
./configure --prefix=/usr/local --with-libesmtp=/usr/local
make && make install
# CA certs
mkdir ~/.authenticate
ftp -4o ~/.authenticate/ca.cert http://curl.haxx.se/ca/cacert.pem
chmod 0700 ~/.authenticate && chmod 0600 ~/.authenticate/ca.cert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment