modified files

Este commit está contenido en:
Your Name
2020-08-02 23:08:26 +00:00
padre abd18a4a22
commit 5a526d0f89
Se han modificado 66 ficheros con 277 adiciones y 4090 borrados

Ver fichero

@@ -10,5 +10,8 @@
},
"root@hatthieves.es": {
"action": "alias", "to": ["webmaster@hatthieves.es"]
},
"@social.hatthieves.es": {
"action": "alias", "to": ["webmaster@hatthieves.es"]
}
}

Ver fichero

@@ -47,6 +47,8 @@ sender:
# by default the main wildduck database is used
collection: 'zone-queue'
loopSecret: 'hat secrets values'
srs:
# must be shared with ZoneMTA SRS config, otherwise messages sent from ZoneMTA are not recognized by Haraka
secret: 'a secret hat'
@@ -87,6 +89,5 @@ rspamd:
# define special responses
responses:
DMARC_POLICY_REJECT: 'Unauthenticated email from {host} is not accepted due to domain''s DMARC policy'
DMARC_POLICY_REJECT: "Unauthenticated email from {host} is not accepted due to domain's DMARC policy"
RBL_ZONE: '[{host}] was found from Zone RBL'

Ver fichero

@@ -1,7 +1,8 @@
FROM node:8-slim
RUN apt update && apt -y install git python make sudo
FROM node:10-slim
RUN apt update && apt -y install git python build-essential
RUN git clone https://github.com/nodemailer/wildduck-webmail /webmail
RUN chown node.node -R /webmail
WORKDIR /webmail
RUN sudo -u node npm i
RUN sudo -u node npm run bowerdeps
USER node
RUN npm i
RUN npm run bowerdeps

Ver fichero

@@ -1,10 +1,10 @@
# plugins/zonemta-limiter.toml
["modules/zonemta-limiter"]
enabled = ["sender"]
prefix = "zl:"
debug = false # if true, then errors are only logged but messages are not dropped
# max 250 messages in half an hour
limit = 250
windowSize = 1800
## plugins/zonemta-limiter.toml
#["modules/zonemta-limiter"]
#enabled = ["sender"]
#prefix = "zl:"
#
#debug = false # if true, then errors are only logged but messages are not dropped
#
## max 250 messages in half an hour
#limit = 500
#windowSize = 3600

Ver fichero

@@ -8,7 +8,7 @@
ident="wildduck"
# how many processes to start
processes=2
processes=4
# default quota storage in MB (can be overriden per user)
maxStorage=1024

Ver fichero

@@ -8,3 +8,8 @@ gfs="mail"
# see [dbs].sender option for choosing correct database to use for ZoneMTA queues
# by default the main wildduck database is used
collection="zone-queue"
# Hashing secret for loop detection
# Must be shared with haraka-plugin-wildduck
# If not set then looping is not tracked
loopSecret="hat secrets values"