-
-
Notifications
You must be signed in to change notification settings - Fork 660
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- prefix node builtin deps with
node:
- conn: replace a fn with arrow function - contrib/plugin2npm.sh: fix path to package.json - config/plugins: consistent formatting
- Loading branch information
Showing
41 changed files
with
148 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,72 @@ | ||
# This file lists plugins that Haraka will run | ||
# | ||
# Plugin ordering often matters, run 'haraka -o -c /path/to/haraka/config' | ||
# to see the order plugins (and their hooks) will run in. | ||
# to see the order plugins (and their hooks) will run. | ||
# | ||
# To see a list of all plugins, run 'haraka -l' | ||
# To see a list of installed plugins, run 'haraka -l' | ||
# | ||
# To see the help docs for a particular plugin, run 'haraka -h plugin.name' | ||
# The plugin registry: https://github.com/haraka/Haraka/blob/master/Plugins.md | ||
# | ||
# To see the docs for a plugin, run 'haraka -h plugin.name' | ||
|
||
#status | ||
#process_title | ||
# Log to syslog (see 'haraka -h syslog') | ||
# status | ||
# process_title | ||
# syslog | ||
# watch | ||
|
||
# CONNECT | ||
#toobusy | ||
#karma | ||
#relay | ||
# control which IPs, rDNS hostnames, HELO hostnames, MAIL FROM addresses, and | ||
# RCPT TO address you accept mail from. See 'haraka -h access'. | ||
# ---------- | ||
# toobusy | ||
# karma | ||
# relay | ||
# access | ||
# p0f | ||
# geoip | ||
# asn | ||
# fcrdns | ||
# block & allow lists (see config/dns-list.ini) | ||
dns-list | ||
# dns-list | ||
|
||
# HELO | ||
#early_talker | ||
# see config/helo.checks.ini for configuration | ||
helo.checks | ||
# see 'haraka -h tls' for config instructions before enabling! | ||
# ---------- | ||
# early_talker | ||
# helo.checks | ||
# see 'haraka -h tls' before enabling! | ||
# tls | ||
# | ||
# AUTH plugins require TLS before AUTH is advertised, see | ||
# https://github.com/haraka/Haraka/wiki/Require-SSL-TLS | ||
# ---------- | ||
# auth/flat_file | ||
# auth/auth_proxy | ||
# auth/auth_ldap | ||
|
||
# MAIL FROM | ||
# Only accept mail where the MAIL FROM domain is resolvable to an MX record | ||
# ---------- | ||
mail_from.is_resolvable | ||
#spf | ||
# spf | ||
|
||
# RCPT TO | ||
# At least one rcpt_to plugin is REQUIRED for inbound email. The simplest | ||
# plugin is in_host_list, see 'haraka -h rcpt_to.in_host_list' to configure. | ||
# ---------- | ||
# At least one rcpt_to plugin is REQUIRED for inbound email. | ||
rcpt_to.in_host_list | ||
#qmail-deliverable | ||
#rcpt_to.ldap | ||
#rcpt_to.routes | ||
# qmail-deliverable | ||
# rcpt_to.ldap | ||
# rcpt_to.routes | ||
|
||
# DATA | ||
#bounce | ||
# Check mail headers are valid | ||
headers | ||
#uribl | ||
#attachment | ||
#clamd | ||
#spamassassin | ||
#dkim | ||
#limit | ||
# ---------- | ||
# attachment | ||
# bounce | ||
# clamd | ||
# dkim | ||
# headers | ||
# limit | ||
# rspamd | ||
# spamassassin | ||
# uribl | ||
|
||
# QUEUE | ||
# ---------- | ||
# queues: discard qmail-queue quarantine smtp_forward smtp_proxy | ||
# Queue mail via smtp - see config/smtp_forward.ini for where your mail goes | ||
queue/smtp_forward | ||
|
||
#watch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.