https://github.com/danielpigott/mandrill-relay
Simple forwarder for mandrill
https://github.com/danielpigott/mandrill-relay
Last synced: 9 months ago
JSON representation
Simple forwarder for mandrill
- Host: GitHub
- URL: https://github.com/danielpigott/mandrill-relay
- Owner: danielpigott
- License: mit
- Created: 2015-05-21T11:15:33.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-28T12:24:37.000Z (about 11 years ago)
- Last Synced: 2025-02-12T18:55:29.437Z (over 1 year ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
mandrill-relay
==============
Simple forwarder for mandrill written in node js
## Install
Clone this repository and run npm install
```
git clone https://github.com/danielpigott/mandrill-relay.git
cd mandrill-relay
npm install
```
## Configuration
Copy config.json.example to config.json and edit it.
Replace the value for key with a mandrill api key
Under forwarders change example.com to your registered domain
Change example@gmail.com to your personal email address
```json
{
"key": "api-key-goes-here",
"forwarders" : [
{
"from": "*@example.com",
"to": "example@gmail.com"
}
]
}
```
## Run
Run bin/www to start a web server on port 3000