Skip Menu |

This queue is for tickets about the Mail-SRS CPAN distribution.

Report information
The Basics
Id: 125001
Status: new
Priority: 0/
Queue: Mail-SRS

People
Owner: Nobody in particular
Requestors: tests [...] pialasse.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: wrong regex
Date: Mon, 2 Apr 2018 23:12:06 -0400
To: bug-Mail-SRS [...] rt.cpan.org
From: Jean-Philippe PIALASSE <tests [...] pialasse.com>
in Mail/SRS.pm line 237 sub reverse {         my ($self, $address) = @_;         $address =~ m/^(.*)\@([^@])+$/ or croak 'Address contains no @'; should be         $address =~ m/^(.*)\@([^@]+)$/ or croak 'Address contains no @'; the current regex capture only the last digit of the host.