0.0.1 • Published 7 years ago

haraka-plugin-milter v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Build Status Code Climate Greenkeeper badge NPM

haraka-plugin-milter

Clone me, to create a new plugin!

Template Instructions

These instructions will not self-destruct after use. Use and destroy.

See also, How to Write a Plugin and Plugins.md for additional plugin writing information.

Create a new repo for your plugin

Haraka plugins are named like haraka-plugin-something. All the namespace after haraka-plugin- is yours for the taking. Please check the Plugins page and a Google search to see what plugins already exist.

Once you've settled on a name, create the GitHub repo. On the repo's main page, click the Clone or download button and copy the URL. Then paste that URL into a local ENV variable with a command like this:

export MY_PLUGIN_NAME=haraka-plugin-SOMETHING
export MY_PLUGIN_REPO=git@github.com:SOME_ORG/haraka-plugin-SOMETHING.git

Clone and rename the milter repo:

git clone git@github.com:haraka/haraka-plugin-milter.git
mv haraka-plugin-milter $MY_PLUGIN_NAME
cd $MY_PLUGIN_NAME
git remote rm origin
git remote add origin $MY_PLUGIN_REPO

Now you'll have a local git repo to begin authoring your plugin

rename boilerplate

Replaces all uses of the word milter with your plugin's name.

./redress.sh something

You'll then be prompted to update package.json and then force push this repo onto the GitHub repo you've created earlier.

Enable Travis-CI testing

  • visit your Travis-CI profile page and enable Continuous Integration testing on the repo
  • enable Code Climate. Click the code climate badge and import your repo.

Add your content here

INSTALL

cd /path/to/local/haraka
npm install haraka-plugin-milter
echo "milter" >> config/plugins
service haraka restart

Configuration

If the default configuration is not sufficient, copy the config file from the distribution into your haraka config dir and then modify it:

cp node_modules/haraka-plugin-milter/config/milter.ini config/milter.ini
$EDITOR config/milter.ini

USAGE