Compare commits

..

No commits in common. "394144d2638eaf9c5f75f90d6a96dbb410528d33" and "cfb408766f04910466d4479f540c7839cc9424d4" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -436,7 +436,7 @@ final class Binkp extends BaseProtocol
} }
if (static::DEBUG) if (static::DEBUG)
Log::debug(sprintf('%s:- rx_buf size [%d]',self::LOGKEY,strlen($this->rx_buf))); Log::debug(sprintf('%s: - binkp_recv BUFFER [%d]',self::LOGKEY,strlen($this->rx_buf)));
$msg = ord(substr($this->rx_buf,0,1)); $msg = ord(substr($this->rx_buf,0,1));

View File

@ -228,8 +228,8 @@ class MessageProcess implements ShouldQueue
if ($this->mo->msgid) { if ($this->mo->msgid) {
$o = Echomail::where('msgid',$this->mo->msgid) $o = Echomail::where('msgid',$this->mo->msgid)
->where('fftn_id',$this->mo->fftn->id) ->where('fftn_id',$this->mo->fftn->id)
->where('datetime','>=',$this->mo->datetime->subYears(3)) ->where('datetime','>=',$this->mo->date->subYears(3))
->where('datetime','<=',$this->mo->datetime) ->where('datetime','<=',$this->mo->date)
->single(); ->single();
Log::debug(sprintf('%s:- Checking for duplicate from host id [%d].',self::LOGKEY,$this->mo->fftn->id)); Log::debug(sprintf('%s:- Checking for duplicate from host id [%d].',self::LOGKEY,$this->mo->fftn->id));