Socket
Socket
Sign inDemoInstall

haraka-plugin-qmail-deliverable

Package Overview
Dependencies
0
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    haraka-plugin-qmail-deliverable

Haraka plugin that validates recipients against Qmail::Deliverable


Version published
Weekly downloads
1.8K
decreased by-4.31%
Maintainers
2
Install size
13.7 kB
Created
Weekly downloads
 

Changelog

Source

[1.2.3] - 2024-04-22

  • fix: use outbound.send_trans_email (was o.send_email)
  • populate [files] in package.json.
  • dep: eslint-plugin-haraka -> @haraka/eslint-config
  • lint: remove duplicate / stale rules from .eslintrc
  • prettier
  • ci: use more shared GHA workflows
  • doc(CONTRIBUTORS): added
  • doc(CHANGELOG): fixed version release URLs

Readme

Source

Build Status Code Climate NPM

haraka-plugin-qmail-deliverable

A client for checking the deliverability of an email address against the qmail-deliverabled daemon.

On incoming messages (relaying=false), validate the RCPT TO address.

Configuration

The host and port that qmail-deliverabled is listening on can be set in config/qmail-deliverable.ini

  • host (Default: localhost)
  • port (Default: 8998)
  • check_mail_from= (Default: true)

When check_mail_from is enabled, the MAIL FROM address is checked for deliverability. The deliverable status can be inspected by checking transaction.notes.local_sender. This information can be used later to influence mail routing.

Fine control of MX routing

MX routing for individual domains can be set by defining queue and next_hop.

  • queue: a queue plugin (smtp_forward, qmail-queue, lmtp), or lmtp. When queue=lmtp, if qmail-deliverable reports that the destination address is a mailbox (ie, not email list, forward, alias, etc.), then this plugin will configure the next_hop to be lmtp://$host/ and will set up that route (via get_mx()) so that outbound delivers the message to the mailbox via LMTP.

  • next_hop: a URL. Examples: smtp://mx.example.com and lmtp://int.mx.example.com:24. This plugin uses next_hop to direct messages to local mailboxes via LMTP. If the LMTP server (dovecot, in my case) is not the same host that is running qmail-deliverabled, set next_hop accordingly.

Per-domain Configuration

Domains can have their own configuration. The defaults are the same, so only the differences needs to be declared. Example:

```ini
[example.com]
host=192.168.0.1

[example2.com]
host=192.168.0.2
```

Keywords

FAQs

Last updated on 23 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc