From ffaa3ab68ea631b0a7b3c3767883141a74daa8fe Mon Sep 17 00:00:00 2001 From: minima Date: Thu, 4 Oct 2001 12:46:22 +0000 Subject: [PATCH] dup check PC49 --- Changes | 1 + perl/DXProt.pm | 1 + 2 files changed, 2 insertions(+) diff --git a/Changes b/Changes index 72f2d472..0890d5ed 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,7 @@ last port of call). 3. ignore deleted messages for queuing purposes 4. store deleted status across restarts! 5. make callsign checking more rigorous +6. dup check PC49 (kill full) 03Oct01======================================================================= 1. don't allow @WWW to become a 'TO' field... 2. handle @gb7tlh.#35.eu type addresses as well diff --git a/perl/DXProt.pm b/perl/DXProt.pm index d6a81ec4..d3b39cb3 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -957,6 +957,7 @@ sub normal } if (($pcno >= 28 && $pcno <= 33) || $pcno == 40 || $pcno == 42 || $pcno == 49) { # mail/file handling + return if $pcno == 49 && eph_dup($line); if ($pcno == 49 || $field[1] eq $main::mycall) { DXMsg::process($self, $line); } else { -- 2.34.1