¿Cómo hacer que exim4 niegue a otras ips enviar correo usando el servidor?

¿Cómo hacer que exim4 niegue a otras ips enviar correo usando el servidor?

Cómo hacer que exim4 solo permita una conexión smtp para enviar correo desde 127.0.0.1 únicamente. sino también recibir correo al mismo tiempo. Estoy confundido con esto porque si cambio dc_local_interfacesa 127.0.0.1, no puedo recibir correo, pero solo permite 127.0.0.1, que es lo que quiero. Pero también quiero recibir correo de Internet mientras solo permite que 127.0.0.1 envíe correo.

Estoy usando Ubuntu. Pero creo que esto probablemente no esté realmente relacionado con Ubuntu.

actualización-exim4.conf.conf

# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'
#
# Please note that this is _not_ a dpkg-conffile and that automatic changes
# to this file might happen. The code handling this will honor your local
# changes, so this is usually fine, but will break local schemes that mess
# around with multiple versions of the file.
#
# update-exim4.conf uses this file to determine variable values to generate
# exim configuration macros for the configuration file.
#
# Most settings found in here do have corresponding questions in the
# Debconf configuration, but not all of them.
#
# This is a Debian specific file

dc_eximconfig_configtype='internet'
dc_other_hostnames='mydomain.com'
dc_local_interfaces='0.0.0.0 ; ::0'
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname=''
dc_mailname_in_oh='true'
dc_localdelivery='mail_spool'

No puedo publicar exim4.conf.template debido a la limitación de caracteres de StackExchange, lo siento.

Respuesta1

En la configuración predeterminada de exim4, la relay_from_hostslista determina qué hosts pueden enviar correo desde su servidor. Vea los documentos de Exim:

Respuesta2

Acabo de cambiar a postfix por esto.

información relacionada