Validation to make sure netmails have an INTL kludge, needed to determine address details. Update Packet View to not trigger validation netmails
This commit is contained in:
@@ -89,10 +89,11 @@ abstract class Packet extends FTNBase implements \Iterator, \Countable
|
||||
* @param string $name
|
||||
* @param int $size
|
||||
* @param System|null $so - The system that sent us the packet, used to figure out domains if the packet is for a different zone
|
||||
* @param bool $process
|
||||
* @return Packet
|
||||
* @throws InvalidPacketException
|
||||
*/
|
||||
public static function process(mixed $f,string $name,int $size,System $so=NULL): self
|
||||
public static function process(mixed $f,string $name,int $size,System $so=NULL,bool $process=TRUE): self
|
||||
{
|
||||
Log::debug(sprintf('%s:+ Opening Packet [%s] with size [%d]',self::LOGKEY,$name,$size));
|
||||
|
||||
@@ -183,7 +184,7 @@ abstract class Packet extends FTNBase implements \Iterator, \Countable
|
||||
{
|
||||
// Parse our message
|
||||
Log::debug(sprintf('%s:- Message at offset [%d] in [%s]',self::LOGKEY,$read_ptr-strlen($readbuf),$name));
|
||||
$o->parseMessage(substr($msgbuf,0,$end));
|
||||
$o->parseMessage(substr($msgbuf,0,$end),$process);
|
||||
|
||||
$msgbuf = substr($msgbuf,$end+3);
|
||||
continue;
|
||||
@@ -380,16 +381,17 @@ abstract class Packet extends FTNBase implements \Iterator, \Countable
|
||||
* Parse a message in a mail packet
|
||||
*
|
||||
* @param string $message
|
||||
* @throws InvalidPacketException|\Exception
|
||||
* @param bool $process
|
||||
* @throws \Exception
|
||||
*/
|
||||
private function parseMessage(string $message): void
|
||||
private function parseMessage(string $message,bool $process): void
|
||||
{
|
||||
Log::info(sprintf('%s:+ Processing packet message [%d] bytes',self::LOGKEY,strlen($message)));
|
||||
|
||||
$msg = Message::parseMessage($message,$this->zone);
|
||||
|
||||
// If the message is invalid, we'll ignore it
|
||||
if ($msg->errors->count()) {
|
||||
if ($process && $msg->errors->count()) {
|
||||
Log::info(sprintf('%s:- Message [%s] has [%d] errors',self::LOGKEY,$msg->msgid ?: 'No ID',$msg->errors->count()));
|
||||
|
||||
// If the messages is not for the right zone, we'll ignore it
|
||||
|
Reference in New Issue
Block a user