All Pages > howto > E-Mail in dn42
Running email in dn42 is not very complicated. Your SMTP daemon probably already listens on the wildcard address, so you mostly need to:
- open your firewall to allow TCP/25 from dn42
- setup DNS (MX records, or simply relevant A records)
- configure your mail server if needed
Redirect
There are forwarding rules for PERSON @ dn42.org to the mail addresses which have been given in the registry. Please note that the trailing -DN42
is stripped from the local part.
Example
Handle | Alias | Redirection |
---|---|---|
STV0G-DN42 | stv0g@dn42.org | post@steffenvogel.de |
Test email
Send an email to This host will reply using the following sieve filter:test@evenet.dn42
to check if your mail setup is correct.
"regex", "variables", "vacation-seconds"];
if header :contains "To" ["test@evenet.dn42"] {
if header :matches "Subject" "*" {
"subject_was" ": ${1}";
}
addresses ["test@evenet.dn42"] :seconds 60 :subject "Re: ${subject_was}" "Your dn42 email setup works!";
}
[
Exim tips
Sending emails
By default on Debian, Exim refuses to send mail to other mailservers when they resolve to RFC1918 addresses. This will manifest by the following error message when trying to send a mail:
** foo@bar.dn42: all relevant MX records point to non-existent hosts
This is controlled by the ignore_target_hosts
variable in the configuration file.
Receiving emails
Don't forget to add your dn42 domains to the list of local domains, so that you accept incoming emails. On Debian, it is controlled by dc_other_hostnames
in update-exim4.conf.conf
. For instance:
'myself.org;myself.dn42;myserver.myself.dn42'
Postfix
Sending Mails
If your machine sends/receives Mails in "clearnet" with specific bound IP's you need to create an additional transport in master.cf
- - n - - smtp
-o smtp_bind_address=
-o smtp_bind_address6=fd70:96c9:ef25::1
-o smtp_helo_name=ns1.mhm.dn42
-o syslog_name=postfix-dn42
unix
and add this transport to /etc/postfix/transport for dn42 (and dont forget to postmap)
.dn42 out_dn42:
This should to the trick for sending mails via your DN42-IP
If you use smtpd_recipient_restrictions
you can use the following rule to white-list dn42 as sender. This can circumvent certain rdns configuration failure or in case you use rbl lists:
,
,
cidr:/etc/postfix/dn42.cidr,
,
permit
permit_mynetworks
OK
OK
:/7 OK
Receiving emails
The Domain mails should be received for has to be added to mydestination =
in main.cf
New SMTP RFC SMTPUTF8
EAI
Email Address Internationalization (EAI) as defined in RFC 6531 (SMTPUTF8 extension), RFC 6532 (Internationalized email headers) and RFC 6533 (Internationalized delivery status notifications).
Postfix
Introduced with Postfix version 3.0, this fully supports UTF-8 email addresses and UTF-8 message header values. more at the SMTPUTF8_README.
Exim
Watch Exims EAI Tracker Bug 1177