haraka / Haraka

A fast, highly extensible, and event driven SMTP server

Home Page:https://haraka.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Delivery queue Transcript: 550 I cannot deliver mail for <example@example.com> [215 ms]

eldiyar312 opened this issue · comments

the all messages in queue and don't deliver anywhere. WHY ? cliked to push button but nothing (

i open all port for foreign and configure all ssl tls configs. I can get messages but not delivery/

I think problem with smtp haraka
i config haraks/config/host_list, tls pem all configs

i have https conntect with web admin and webmail

my dockercompose file:
`version: '3'
services:
nginx-proxy:
image: jwilder/nginx-proxy
labels:
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
container_name: nginx-proxy
restart: unless-stopped
ports:
- "3000:80"
- "4433:443"
volumes:
- /data/nginx/conf.d:/etc/nginx/conf.d
- /data/nginx/vhost.d:/etc/nginx/vhost.d
- /data/nginx/html:/usr/share/nginx/html
- /data/nginx/certs:/etc/nginx/certs
- /var/run/docker.sock:/tmp/docker.sock
networks:
- webnet

nginx-letsencrypt:
image: jrcs/letsencrypt-nginx-proxy-companion
container_name: nginx-letsencrypt
restart: unless-stopped
depends_on:
- nginx-proxy
volumes:
- /data/nginx/conf.d:/etc/nginx/conf.d
- /data/nginx/vhost.d:/etc/nginx/vhost.d
- /data/nginx/html:/usr/share/nginx/html
- /data/nginx/certs:/etc/nginx/certs:rw
- /var/run/docker.sock:/var/run/docker.sock
environment:
- NGINX_DOCKER_GEN_CONTAINER=nginx-proxy
- NGINX_PROXY_CONTAINER=nginx-proxy
networks:
- webnet

mailserver:
image: analogic/poste.io
container_name: mailserver
depends_on:
- nginx-proxy
- nginx-letsencrypt
restart: unless-stopped
ports:
- "25:25"
- "110:110"
- "143:143"
- "465:465"
- "587:587"
- "993:993"
- "995:995"
- "4190:4190"
environment:
- LETSENCRYPT_EMAIL=admin@kgc.kg
- LETSENCRYPT_HOST=mail.example.com
- VIRTUAL_HOST=mail.example.com
- HTTPS=OFF
- TZ=Europe/Moscow
volumes:
- /etc/localtime:/etc/localtime
- /data/nginx/html/.well-known:/opt/www/.well-known
- /data/mailserver:/data
networks:
- webnet

networks:
webnet:
driver: bridge`

image

check all dns config with emailhealth it's ok, no problems.
image

The "correct remote connection IPv4" line from screenshot is required to be green.

Most likely you have outbound port 25 blocked by your ISP.