Skip to content

Commit fbcdd45

Browse files
authored
feat: add ip addresses of known public chatmail relays from https://chatmail.at/relays to dns cache (#7607)
closes #7597
1 parent 1ea8ed6 commit fbcdd45

File tree

1 file changed

+66
-4
lines changed

1 file changed

+66
-4
lines changed

src/net/dns.rs

Lines changed: 66 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -506,10 +506,6 @@ static DNS_PRELOAD: LazyLock<HashMap<&'static str, Vec<IpAddr>>> = LazyLock::new
506506
"mail.nubo.coop",
507507
vec![IpAddr::V4(Ipv4Addr::new(79, 99, 201, 10))],
508508
),
509-
(
510-
"mehl.cloud",
511-
vec![IpAddr::V4(Ipv4Addr::new(95, 217, 223, 172))],
512-
),
513509
(
514510
"mx.freenet.de",
515511
vec![
@@ -680,6 +676,72 @@ static DNS_PRELOAD: LazyLock<HashMap<&'static str, Vec<IpAddr>>> = LazyLock::new
680676
IpAddr::V4(Ipv4Addr::new(185, 230, 214, 164)),
681677
],
682678
),
679+
// Known public chatmail relays from https://chatmail.at/relays
680+
(
681+
"mehl.cloud",
682+
vec![IpAddr::V4(Ipv4Addr::new(95, 217, 223, 172))],
683+
),
684+
(
685+
"mailchat.pl",
686+
vec![IpAddr::V4(Ipv4Addr::new(46, 62, 144, 137))],
687+
),
688+
(
689+
"chatmail.woodpeckersnest.space",
690+
vec![IpAddr::V4(Ipv4Addr::new(85, 215, 162, 146))],
691+
),
692+
(
693+
"chatmail.culturanerd.it",
694+
vec![IpAddr::V4(Ipv4Addr::new(82, 165, 94, 165))],
695+
),
696+
(
697+
"chatmail.hackea.org",
698+
vec![IpAddr::V4(Ipv4Addr::new(82, 165, 11, 85))],
699+
),
700+
(
701+
"chika.aangat.lahat.computer",
702+
vec![IpAddr::V4(Ipv4Addr::new(71, 19, 150, 113))],
703+
),
704+
(
705+
"tarpit.fun",
706+
vec![IpAddr::V4(Ipv4Addr::new(152, 53, 86, 246))],
707+
),
708+
(
709+
"d.gaufr.es",
710+
vec![IpAddr::V4(Ipv4Addr::new(51, 77, 140, 91))],
711+
),
712+
(
713+
"chtml.ca",
714+
vec![IpAddr::V4(Ipv4Addr::new(51, 222, 156, 177))],
715+
),
716+
(
717+
"chatmail.au",
718+
vec![IpAddr::V4(Ipv4Addr::new(45, 124, 54, 79))],
719+
),
720+
(
721+
"sombras.chat",
722+
vec![IpAddr::V4(Ipv4Addr::new(82, 25, 70, 154))],
723+
),
724+
(
725+
"e2ee.wang",
726+
vec![IpAddr::V4(Ipv4Addr::new(139, 84, 233, 161))],
727+
),
728+
(
729+
"chat.privittytech.com",
730+
vec![IpAddr::V4(Ipv4Addr::new(35, 154, 144, 0))],
731+
),
732+
("e2ee.im", vec![IpAddr::V4(Ipv4Addr::new(45, 137, 99, 57))]),
733+
(
734+
"chatmail.email",
735+
vec![IpAddr::V4(Ipv4Addr::new(57, 128, 220, 120))],
736+
),
737+
(
738+
"danneskjold.de",
739+
vec![IpAddr::V4(Ipv4Addr::new(46, 62, 216, 132))],
740+
),
741+
(
742+
"darkrun.dev",
743+
vec![IpAddr::V4(Ipv4Addr::new(72, 11, 149, 146))],
744+
),
683745
])
684746
});
685747

0 commit comments

Comments
 (0)