From 58539ef1725ca79926e5ba98e16310dbae608e08 Mon Sep 17 00:00:00 2001 From: Rich Remer Date: Tue, 15 Sep 2015 23:56:48 -0700 Subject: [PATCH 1/2] add install notes to README --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dfb35cb..6263955 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ SMTP to HTTP gateway Usage ----- -Begin listening for incoming messages over SMTP and post them to the sepcified -HTTP endpoint. +Begin listening for incoming SMTP messages, parse them, and post them to the +specified HTTP endpoint. ```sh smtp2http https://dev-services.zingle.me/inbound-communication/email ``` @@ -17,3 +17,10 @@ CA=/etc/private/ssl/zingle-ca.crt smtp2http -T$CERT:$KEY:$CA https://dev-services.zingle.me/foo ``` +Install +------- +```sh +git clone git@github.com:Zingle/smtp2http.git +cd smtp2http +npm install -g +```sh From f4af0264baece42bf65b7e33407c8412585ddc81 Mon Sep 17 00:00:00 2001 From: Rich Remer Date: Tue, 15 Sep 2015 23:57:08 -0700 Subject: [PATCH 2/2] fix some bad README markdown --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6263955..ef9302f 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ Install git clone git@github.com:Zingle/smtp2http.git cd smtp2http npm install -g -```sh +```