From: Stoiko Ivanov <s.ivanov@proxmox.com>
To: pmg-devel@lists.proxmox.com
Subject: [pmg-devel] [PATCH pmg-api v2 1/2] fix #5972: ruledb: default ruleset: use .example as TLD
Date: Mon, 17 Feb 2025 18:16:14 +0100 [thread overview]
Message-ID: <20250217171615.21255-2-s.ivanov@proxmox.com> (raw)
In-Reply-To: <20250217171615.21255-1-s.ivanov@proxmox.com>
following RFC 2606
https://www.rfc-editor.org/rfc/rfc2606.html
reported in our community forum:
https://forum.proxmox.com/threads/.158455/
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
src/PMG/DBTools.pm | 4 ++--
src/tests/testdb.txt | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/PMG/DBTools.pm b/src/PMG/DBTools.pm
index 8770d06..1acc0cb 100644
--- a/src/PMG/DBTools.pm
+++ b/src/PMG/DBTools.pm
@@ -644,12 +644,12 @@ sub init_ruledb {
# WHO Objects
# Blacklist
- my $obj = PMG::RuleDB::EMail->new ('nomail@fromthisdomain.com');
+ my $obj = PMG::RuleDB::EMail->new ('nomail@fromthisdomain.example');
my $blacklist = $ruledb->create_group_with_obj(
$obj, 'Blacklist', 'Global blacklist');
# Whitelist
- $obj = PMG::RuleDB::EMail->new('mail@fromthisdomain.com');
+ $obj = PMG::RuleDB::EMail->new('mail@fromthisdomain.example');
my $whitelist = $ruledb->create_group_with_obj($obj, 'Whitelist', 'Global whitelist');
# WHEN Objects
diff --git a/src/tests/testdb.txt b/src/tests/testdb.txt
index 794aa15..2c4f062 100644
--- a/src/tests/testdb.txt
+++ b/src/tests/testdb.txt
@@ -1,6 +1,6 @@
Found RULE 4: Blacklist
FOUND FROM GROUP 1: Blacklist
- OBJECT 1: nomail@fromthisdomain.com
+ OBJECT 1: nomail@fromthisdomain.example
FOUND ACTION GROUP 17: Block
OBJECT 30: block message
Found RULE 2: Block Viruses
@@ -49,7 +49,7 @@ Found RULE 11: Block Multimedia Files
OBJECT 27: remove matching attachments
Found RULE 5: Whitelist
FOUND FROM GROUP 2: Whitelist
- OBJECT 2: mail@fromthisdomain.com
+ OBJECT 2: mail@fromthisdomain.example
FOUND ACTION GROUP 16: Accept
OBJECT 29: accept message
Found RULE 8: Block Spam (Level 10)
--
2.39.5
_______________________________________________
pmg-devel mailing list
pmg-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel
next prev parent reply other threads:[~2025-02-17 17:17 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-17 17:16 [pmg-devel] [PATCH pmg-api v2 0/2] change sample-entries in default Who-Objects and check in pmg7to8 Stoiko Ivanov
2025-02-17 17:16 ` Stoiko Ivanov [this message]
2025-02-17 17:16 ` [pmg-devel] [PATCH pmg-api v2 2/2] pmg7to8: add check for deprecated default entries in ruledb Stoiko Ivanov
2025-02-21 8:46 ` [pmg-devel] [PATCH pmg-api v2 0/2] change sample-entries in default Who-Objects and check in pmg7to8 Dominik Csapak
2025-02-21 8:51 ` Stoiko Ivanov
2025-02-21 15:56 ` [pmg-devel] applied-series: " Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250217171615.21255-2-s.ivanov@proxmox.com \
--to=s.ivanov@proxmox.com \
--cc=pmg-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.