From 01955d3cb28f0415c9a4f678e927f422d69446c8 Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Sun, 21 Oct 2012 14:47:41 -0700 Subject: [PATCH] Moved inbucketd to main to make building easier Updated README.md with a install procedure that actually works --- README.md | 17 +++++++++++++---- {inbucketd => main}/inbucketd.go | 0 2 files changed, 13 insertions(+), 4 deletions(-) rename {inbucketd => main}/inbucketd.go (100%) diff --git a/README.md b/README.md index b890dae..f79a93a 100644 --- a/README.md +++ b/README.md @@ -38,10 +38,19 @@ Installation ------------ You will need a functioning [Go installation][1] for this to work. - # From the base of your GOPATH... - go get github.com/jhillyerd/inbucket - go build github.com/jhillyerd/inbucket - bin/inbucketd src/github.com/jhillyerd/inbucket/conf/inbucket.conf +Grab the Inbucket source code and compile the daemon: + + go get -v github.com/jhillyerd/inbucket + go get -v github.com/gorilla/mux + go get -v github.com/gorilla/sessions + go get -v thegoods.biz/httpbuf + cd $GOPATH/src/github.com/jhillyerd/inbucket + go build main/inbucketd.go + +Edit conf/inbucket.conf and tailor to your environment. It should work on most +Unix and OS X machines as is. + + ./inbucketd conf/inbucket.conf By default the SMTP server will be listening on localhost port 2500 and the web interface will be available at [localhost:9000](http://localhost:9000/). diff --git a/inbucketd/inbucketd.go b/main/inbucketd.go similarity index 100% rename from inbucketd/inbucketd.go rename to main/inbucketd.go