npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

haraka-plugin-vmta

v0.5.9

Published

Administer virtual MTAs for the outbound traffic

Downloads

8

Readme

VMTA

Build Status GitHub license Code Climate NPM Version

NPM

The VMTA plugin gives the HARAKA users the ability to add/administer as many virtual MTAs (IP/host) as they need, allowing them to create enormous potential sending.

Installation

All you need is enabling the plugin inside the config/plugins file by adding a new line contains the plugin name vmta.

Configuration

First of all you should create the config file config/vmta.ini, then you could simply add the virtual MTA information as the sample bellow shown :

[mta_name_1]
ip = IP_1
host = HOST_1

[mta_name_2]
ip = IP_2
host = HOST_2

Every Virtual MTA has an identifier name and two required entries :

  • ip : Contains the local address ip to be assigned.
  • host : Contains the custom domain that will be sent with the ip.

NB: The specified ips in the config file should be configured as a local ips in the current server, else the plugin will throw an exception (The specified 'ip' doesn't belong to this server).

Usage

You could send every email with specific/customized VMTA ('IP/HOST') just by assigning your emails to the appropriate VMTA by adding the x-vmta header to your emails (The value of x-vmta parameter should be pre-defined in the config file), e.g :

Subject: xxxx
From: yyyy
...
x-vmta: mta_name_1       <<-------- Just add the param to your header
...

The mta_name_1 in the previous example is one of the VMTAs you should pre-define in your configuration file vmta.ini with simple format as shown in the above section 'Configuration'.

Tests

After enabling the plugin you could test it simply by using the smtp transaction tester light-tool swaks using the following command line :

swaks -f [email protected] -t [email protected] -add-header "x-vmta: your_vmta_name"
-s localhost -p 587 -au testuser -ap testpassword

NOTE

The passed parameter x-vmta will be automatically removed from the header so the delivered email's header will not contain the parameter.