ruby version 2.2

main
Steffen Rademacker 9 years ago
parent 2f393186be
commit df7b8dda4c

@ -0,0 +1,10 @@
Capture all emails to prevent accidental spam
edit /etc/postfix/main.cf
add: canonical_maps = regexp:/etc/postfix/canonical-redirect
create /etc/postfix/canonical-redirect
enter: /^.*$/ your_email@domain.com
or, if you're not setting up SMTP relay below, change your_email@domain.com to your username on your Mac, which will deliver mail to your local account (I'm not sure how you'd read it though, so that's why I also set up the SMTP relay business).
From the command line, execute sudo postmap /etc/postfix/canonical-redirect . This command will create the file /etc/postfix/canonical-redirect.db which postfix will find automatically. Just in case, also execute sudo postfix reload although you'll probably get an error message that postfix isn't running (which is OK, but if it was, this would be needed to pick up the changes to main.cf).

@ -37,7 +37,7 @@ export LESS="-R"
export LC_CTYPE=$LANG
# ruby
export RBENV_VERSION="2.1.5"
export RBENV_VERSION="2.2.0"
# docker -- boot2docker config
export DOCKER_TLS_VERIFY=1

Loading…
Cancel
Save