http://mailcatcher.me/ sudo gem install mailcatcher – won’t run without sudo Google brought me to Faison’s issue: https://github.com/sj26/mailcatcher/issues/144 So I Install RVM gpg –keyserver hkp://keys.gnupg.net –recv-keys D39DC0E3 sudo curl -sSL https://get.rvm.io | bash rvm install 2.1.2 Exit iTerm2 and open new tab rvm use 2.1.2 RVM is not a function, selecting rubies with ‘rvm use …’ will not work. […]
smtp
Sending with Gmail from 8890DW with Stunnel on Ubuntu
$ sudo apt-get install stunnel4 $ sudo cp /usr/share/doc/stunnel4/examples/stunnel.conf-sample /etc/stunnel/stunnel.conf $ vi /etc/default/stunnel4 Change: ENABLED=0 to ENABLED=1 $ vi /etc/stunnel/stunnel.conf # GLOBAL socket = l:TCP_NODELAY=1 socket = r:TCP_NODELAY=1 client=yes [SMTP Gmail] accept = 2525 connect = smtp.gmail.com:465 [POP3 Gmail Incoming] accept = 110 connect = pop.gmail.com:995 Create cert $ sudo openssl req -new -out mail.pem […]