From da34a0a076ce2d78fa695eb108bf98603a580e94 Mon Sep 17 00:00:00 2001 From: Marc Bradshaw Date: Wed, 13 Mar 2024 00:34:30 +0000 Subject: [PATCH 1/4] Updated changelog --- Changes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Changes.md b/Changes.md index 5b628f94..3fac9d49 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,8 @@ +### 1.20240313 + +- Fix error email sent when reports are too large +- Delete reports after sending error emails +- Make sending of error emails optional ### 1.20240214 From adef7cedfd1b5ee4d26978adfc59c1ea00eae1a3 Mon Sep 17 00:00:00 2001 From: Marc Bradshaw Date: Wed, 13 Mar 2024 00:36:59 +0000 Subject: [PATCH 2/4] increment version to 1.20240313 --- lib/Mail/DMARC.pm | 4 ++-- lib/Mail/DMARC/Base.pm | 4 ++-- lib/Mail/DMARC/HTTP.pm | 4 ++-- lib/Mail/DMARC/Policy.pm | 4 ++-- lib/Mail/DMARC/PurePerl.pm | 4 ++-- lib/Mail/DMARC/Report.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Metadata.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Record.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm | 4 ++-- lib/Mail/DMARC/Report/Aggregate/Record/Row.pm | 4 ++-- .../DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm | 4 ++-- lib/Mail/DMARC/Report/Receive.pm | 4 ++-- lib/Mail/DMARC/Report/Send.pm | 4 ++-- lib/Mail/DMARC/Report/Send/HTTP.pm | 4 ++-- lib/Mail/DMARC/Report/Send/SMTP.pm | 4 ++-- lib/Mail/DMARC/Report/Store.pm | 4 ++-- lib/Mail/DMARC/Report/Store/SQL.pm | 4 ++-- lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm | 4 ++-- lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm | 4 ++-- lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm | 4 ++-- lib/Mail/DMARC/Report/URI.pm | 4 ++-- lib/Mail/DMARC/Result.pm | 4 ++-- lib/Mail/DMARC/Result/Reason.pm | 4 ++-- 27 files changed, 54 insertions(+), 54 deletions(-) diff --git a/lib/Mail/DMARC.pm b/lib/Mail/DMARC.pm index eacb3b35..77b46c0c 100644 --- a/lib/Mail/DMARC.pm +++ b/lib/Mail/DMARC.pm @@ -2,7 +2,7 @@ package Mail::DMARC; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; our $psl_loads = 0; @@ -309,7 +309,7 @@ Mail::DMARC - Perl implementation of DMARC =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Base.pm b/lib/Mail/DMARC/Base.pm index 8c57e4ec..c3a33107 100644 --- a/lib/Mail/DMARC/Base.pm +++ b/lib/Mail/DMARC/Base.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Base; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; use 5.10.0; @@ -329,7 +329,7 @@ Mail::DMARC::Base - DMARC utility functions =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 METHODS diff --git a/lib/Mail/DMARC/HTTP.pm b/lib/Mail/DMARC/HTTP.pm index b43f0cdc..b993d2ad 100644 --- a/lib/Mail/DMARC/HTTP.pm +++ b/lib/Mail/DMARC/HTTP.pm @@ -1,5 +1,5 @@ package Mail::DMARC::HTTP; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -213,7 +213,7 @@ Mail::DMARC::HTTP - view stored reports via HTTP =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Policy.pm b/lib/Mail/DMARC/Policy.pm index 74d8873d..f5c9754a 100644 --- a/lib/Mail/DMARC/Policy.pm +++ b/lib/Mail/DMARC/Policy.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Policy; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; @@ -195,7 +195,7 @@ Mail::DMARC::Policy - a DMARC policy in object format =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/PurePerl.pm b/lib/Mail/DMARC/PurePerl.pm index 2dfd4c08..24627364 100644 --- a/lib/Mail/DMARC/PurePerl.pm +++ b/lib/Mail/DMARC/PurePerl.pm @@ -1,5 +1,5 @@ package Mail::DMARC::PurePerl; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -589,7 +589,7 @@ Mail::DMARC::PurePerl - Pure Perl implementation of DMARC =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 METHODS diff --git a/lib/Mail/DMARC/Report.pm b/lib/Mail/DMARC/Report.pm index 21fd87a8..080cc300 100644 --- a/lib/Mail/DMARC/Report.pm +++ b/lib/Mail/DMARC/Report.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; use IO::Compress::Gzip; @@ -90,7 +90,7 @@ Mail::DMARC::Report - A DMARC report interface =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Aggregate.pm b/lib/Mail/DMARC/Report/Aggregate.pm index 17c7261e..c0fb37dc 100644 --- a/lib/Mail/DMARC/Report/Aggregate.pm +++ b/lib/Mail/DMARC/Report/Aggregate.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Aggregate; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; use Data::Dumper; @@ -199,7 +199,7 @@ Mail::DMARC::Report::Aggregate - aggregate report object =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Aggregate/Metadata.pm b/lib/Mail/DMARC/Report/Aggregate/Metadata.pm index 249862b2..8736338c 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Metadata.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Metadata.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Aggregate::Metadata; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use XML::LibXML; @@ -92,7 +92,7 @@ Mail::DMARC::Report::Aggregate::Metadata - metadata section of aggregate report =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record.pm b/lib/Mail/DMARC/Report/Aggregate/Record.pm index 8344e34b..0714623d 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -82,7 +82,7 @@ Mail::DMARC::Report::Aggregate::Record - record section of aggregate report =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm index 93c9396a..ede1abcd 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Auth_Results; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -79,7 +79,7 @@ Mail::DMARC::Report::Aggregate::Record::Auth_Results - auth_results section of a =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm index 3a983ab9..7cd60088 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/DKIM.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Auth_Results::DKIM; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use Carp; @@ -84,7 +84,7 @@ Mail::DMARC::Report::Aggregate::Record::Auth_Results::DKIM - auth_results/dkim s =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm index d3e83d22..a10e1ee4 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Auth_Results/SPF.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Auth_Results::SPF; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use Carp; @@ -91,7 +91,7 @@ Mail::DMARC::Report::Aggregate::Record::Auth_Results::SPF - auth_results/spf sec =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm index d37a13cb..0e92dd32 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Identifiers.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Identifiers; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -43,7 +43,7 @@ Mail::DMARC::Report::Aggregate::Record::Identifiers - identifiers section of a D =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm index 4b1460af..f8f2188b 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Row.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Row; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -56,7 +56,7 @@ Mail::DMARC::Report::Aggregate::Record::Row - row section of a DMARC aggregate r =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm b/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm index 38acda4a..6533530b 100644 --- a/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm +++ b/lib/Mail/DMARC/Report/Aggregate/Record/Row/Policy_Evaluated.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Aggregate::Record::Row::Policy_Evaluated; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -56,7 +56,7 @@ Mail::DMARC::Report::Aggregate::Record::Row::Policy_Evaluated - row/policy_evalu =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 AUTHORS diff --git a/lib/Mail/DMARC/Report/Receive.pm b/lib/Mail/DMARC/Report/Receive.pm index dc013c74..c60e54ee 100644 --- a/lib/Mail/DMARC/Report/Receive.pm +++ b/lib/Mail/DMARC/Report/Receive.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Receive; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; use Data::Dumper; @@ -421,7 +421,7 @@ Mail::DMARC::Report::Receive - process incoming DMARC reports =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Send.pm b/lib/Mail/DMARC/Report/Send.pm index 2ae21dd2..e9544dcb 100644 --- a/lib/Mail/DMARC/Report/Send.pm +++ b/lib/Mail/DMARC/Report/Send.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Send; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use parent 'Mail::DMARC::Base'; use Mail::DMARC::Report::Send::SMTP; @@ -62,7 +62,7 @@ Mail::DMARC::Report::Send - report sending dispatch class =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Send/HTTP.pm b/lib/Mail/DMARC/Report/Send/HTTP.pm index e28fc666..98e20281 100644 --- a/lib/Mail/DMARC/Report/Send/HTTP.pm +++ b/lib/Mail/DMARC/Report/Send/HTTP.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Send::HTTP; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; @@ -53,7 +53,7 @@ Mail::DMARC::Report::Send::HTTP - utility methods to send reports by HTTP =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 12.2.2. HTTP diff --git a/lib/Mail/DMARC/Report/Send/SMTP.pm b/lib/Mail/DMARC/Report/Send/SMTP.pm index e59a7717..584de7b1 100644 --- a/lib/Mail/DMARC/Report/Send/SMTP.pm +++ b/lib/Mail/DMARC/Report/Send/SMTP.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::Send::SMTP; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; use English '-no_match_vars'; @@ -208,7 +208,7 @@ Mail::DMARC::Report::Send::SMTP - utility methods for sending reports via SMTP =head1 VERSION -version 1.20240214 +version 1.20240313 =head2 SUBJECT FIELD diff --git a/lib/Mail/DMARC/Report/Store.pm b/lib/Mail/DMARC/Report/Store.pm index d081661d..5498ea8d 100644 --- a/lib/Mail/DMARC/Report/Store.pm +++ b/lib/Mail/DMARC/Report/Store.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -60,7 +60,7 @@ Mail::DMARC::Report::Store - persistent storage broker for reports =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Report/Store/SQL.pm b/lib/Mail/DMARC/Report/Store/SQL.pm index d215165a..670f5b0a 100644 --- a/lib/Mail/DMARC/Report/Store/SQL.pm +++ b/lib/Mail/DMARC/Report/Store/SQL.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -682,7 +682,7 @@ Mail::DMARC::Report::Store::SQL - store and retrieve reports from a SQL RDBMS =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 DESCRIPTION diff --git a/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm b/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm index b3d4d0e8..94bde2b0 100644 --- a/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm +++ b/lib/Mail/DMARC/Report/Store/SQL/Grammars/MySQL.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL::Grammars::MySQL; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -290,7 +290,7 @@ Mail::DMARC::Report::Store::SQL::Grammars::MySQL - Grammar for working with mysq =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYPNOSIS diff --git a/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm b/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm index d0fbc30c..4e38a6a5 100644 --- a/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm +++ b/lib/Mail/DMARC/Report/Store/SQL/Grammars/PostgreSQL.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL::Grammars::PostgreSQL; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -309,7 +309,7 @@ Mail::DMARC::Report::Store::SQL::Grammars::PostgreSQL - Grammar for working with =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYPNOSIS diff --git a/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm b/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm index abff8de2..af17b49d 100644 --- a/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm +++ b/lib/Mail/DMARC/Report/Store/SQL/Grammars/SQLite.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Report::Store::SQL::Grammars::SQLite; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -290,7 +290,7 @@ Mail::DMARC::Report::Store::SQL::Grammars::SQLite - Grammar for working with sql =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYPNOSIS diff --git a/lib/Mail/DMARC/Report/URI.pm b/lib/Mail/DMARC/Report/URI.pm index f03be1c9..adee3f16 100644 --- a/lib/Mail/DMARC/Report/URI.pm +++ b/lib/Mail/DMARC/Report/URI.pm @@ -2,7 +2,7 @@ package Mail::DMARC::Report::URI; use strict; use warnings; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use Carp; use URI; @@ -69,7 +69,7 @@ Mail::DMARC::Report::URI - a DMARC report URI =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 SYNOPSIS diff --git a/lib/Mail/DMARC/Result.pm b/lib/Mail/DMARC/Result.pm index 3e8651ea..d0100c27 100644 --- a/lib/Mail/DMARC/Result.pm +++ b/lib/Mail/DMARC/Result.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Result; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -95,7 +95,7 @@ Mail::DMARC::Result - an aggregate report result object =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 OVERVIEW diff --git a/lib/Mail/DMARC/Result/Reason.pm b/lib/Mail/DMARC/Result/Reason.pm index 2cd204b9..ea0a6b01 100644 --- a/lib/Mail/DMARC/Result/Reason.pm +++ b/lib/Mail/DMARC/Result/Reason.pm @@ -1,5 +1,5 @@ package Mail::DMARC::Result::Reason; -our $VERSION = '1.20240214'; +our $VERSION = '1.20240313'; use strict; use warnings; @@ -44,7 +44,7 @@ Mail::DMARC::Result::Reason - policy override reason =head1 VERSION -version 1.20240214 +version 1.20240313 =head1 METHODS From 88d3ebdf3ebb094beb4db769f715fc9eab5b05b1 Mon Sep 17 00:00:00 2001 From: Marc Bradshaw Date: Wed, 13 Mar 2024 00:36:59 +0000 Subject: [PATCH 3/4] README: updated --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18b8fbd4..44d45ac6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Mail::DMARC - Perl implementation of DMARC # VERSION -version 1.20240214 +version 1.20240313 # SYNOPSIS From 714b8fc491e501e5fb4ed43e2a1af517eb5f1f8c Mon Sep 17 00:00:00 2001 From: Marc Bradshaw Date: Wed, 13 Mar 2024 00:36:59 +0000 Subject: [PATCH 4/4] PSL: updated --- share/public_suffix_list | 99 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 93 insertions(+), 6 deletions(-) diff --git a/share/public_suffix_list b/share/public_suffix_list index 2edd8f41..c2b813fa 100644 --- a/share/public_suffix_list +++ b/share/public_suffix_list @@ -6710,7 +6710,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-02-08T15:13:14Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-03-06T15:14:58Z // This list is auto-generated, don't edit it manually. // aaa : American Automobile Association, Inc. // https://www.iana.org/domains/root/db/aaa.html @@ -8356,10 +8356,6 @@ grocery // https://www.iana.org/domains/root/db/group.html group -// guardian : The Guardian Life Insurance Company of America -// https://www.iana.org/domains/root/db/guardian.html -guardian - // gucci : Guccio Gucci S.p.a. // https://www.iana.org/domains/root/db/gucci.html gucci @@ -11229,6 +11225,10 @@ graphox.us // Submitted by Ofer Kalaora activetrail.biz +// Adaptable.io : https://adaptable.io +// Submitted by Mark Terrel +adaptable.app + // Adobe : https://www.adobe.com/ // Submitted by Ian Boston and Lars Trieloff adobeaemcloud.com @@ -12041,6 +12041,10 @@ appudo.net // Submitted by Thomas Orozco on-aptible.com +// Aquapal : https://aquapal.net/ +// Submitted by Aki Ueno +f5.si + // ASEINet : https://www.aseinet.com/ // Submitted by Asei SEKIGUCHI user.aseinet.ne.jp @@ -12213,7 +12217,9 @@ mycd.eu // Canva Pty Ltd : https://canva.com/ // Submitted by Joel Aquilina canva-apps.cn +*.my.canvasite.cn canva-apps.com +*.my.canva.site // Carrd : https://carrd.co // Submitted by AJ @@ -12405,6 +12411,10 @@ co.no webhosting.be hosting-cluster.nl +// Convex : https://convex.dev/ +// Submitted by James Cowling +convex.site + // Coordination Center for TLD RU and XN--P1AI : https://cctld.ru/en/domains/domens_ru/reserved/ // Submitted by George Georgievsky ac.ru @@ -12434,6 +12444,10 @@ static-access.net // Submitted by Ales Krajnik realm.cz +// Crisp IM SAS : https://crisp.chat/ +// Submitted by Baptiste Jamin +on.crisp.email + // Cryptonomic : https://cryptonomic.net/ // Submitted by Andrew Cady *.cryptonomic.net @@ -12941,6 +12955,10 @@ e4.cz easypanel.app easypanel.host +// EasyWP : https://www.easywp.com +// Submitted by +*.ewp.live + // Elementor : Elementor Ltd. // Submitted by Anton Barkan elementor.cloud @@ -14159,6 +14177,10 @@ mintere.site // Submitted by Grayson Martin forte.id +// MODX Systems LLC : https://modx.com +// Submitted by Elizabeth Southwell +modx.dev + // Mozilla Corporation : https://mozilla.com // Submitted by Ben Francis mozilla-iot.org @@ -14220,6 +14242,7 @@ jp.ngrok.io sa.ngrok.io us.ngrok.io ngrok.pizza +ngrok.pro // Nicolaus Copernicus University in Torun - MSK TORMAN (https://www.man.torun.pl) torun.pl @@ -14635,6 +14658,8 @@ qbuser.com // Rad Web Hosting: https://radwebhosting.com // Submitted by Scott Claeys cloudsite.builders +myradweb.net +servername.us // Redgate Software: https://red-gate.com // Submitted by Andrew Farries @@ -14701,11 +14726,40 @@ app.render.com onrender.com // Repl.it : https://repl.it -// Submitted by Lincoln Bergeson +// Submitted by Lincoln Bergeson +replit.app +id.replit.app firewalledreplit.co id.firewalledreplit.co repl.co id.repl.co +replit.dev +archer.replit.dev +bones.replit.dev +canary.replit.dev +global.replit.dev +hacker.replit.dev +id.replit.dev +janeway.replit.dev +kim.replit.dev +kira.replit.dev +kirk.replit.dev +odo.replit.dev +paris.replit.dev +picard.replit.dev +pike.replit.dev +prerelease.replit.dev +reed.replit.dev +riker.replit.dev +sisko.replit.dev +spock.replit.dev +staging.replit.dev +sulu.replit.dev +tarpit.replit.dev +teams.replit.dev +tucker.replit.dev +wesley.replit.dev +worf.replit.dev repl.run // Resin.io : https://resin.io @@ -14988,6 +15042,14 @@ srht.site // Submitted by Adrien Gillon stackhero-network.com +// STACKIT : https://www.stackit.de/en/ +// Submitted by STACKIT-DNS Team (Simon Stier) +runs.onstackit.cloud +stackit.gg +stackit.rocks +stackit.run +stackit.zone + // Staclar : https://staclar.com // Submitted by Q Misell musician.io @@ -15054,6 +15116,19 @@ myspreadshop.co.uk // Submitted by Jacob Lee api.stdlib.com +// stereosense GmbH : https://www.involve.me +// Submitted by Florian Burmann +feedback.ac +forms.ac +assessments.cx +calculators.cx +funnels.cx +paynow.cx +quizzes.cx +researched.cx +tests.cx +surveys.so + // Storipress : https://storipress.com // Submitted by Benno Liu storipress.app @@ -15062,6 +15137,12 @@ storipress.app // Submitted by Philip Hutchins storj.farm +// Streak : https://streak.com +// Submitted by Blake Kadatz +streak-link.com +streaklinks.com +streakusercontent.com + // Studenten Net Twente : http://www.snt.utwente.nl/ // Submitted by Silke Hofstra utwente.io @@ -15124,6 +15205,7 @@ taifun-dns.de // Submitted by David Anderson beta.tailscale.net ts.net +*.c.ts.net // TASK geographical domains (www.task.gda.pl/uslugi/dns) gda.pl @@ -15359,6 +15441,11 @@ v.ua // Submitted by Masayuki Note wafflecell.com +// Webflow, Inc. : https://www.webflow.com +// Submitted by Webflow Security Team +webflow.io +webflowtest.io + // WebHare bv: https://www.webhare.com/ // Submitted by Arnold Hendriks *.webhare.dev