Address list log is the config, not the actual node time since seen
This commit is contained in:
parent
b8f0b11c05
commit
43c573f641
@ -62,7 +62,7 @@ class AddressIdle implements ShouldQueue
|
||||
if ($ao->system->last_seen && $ao->system->last_seen->greaterThan($age))
|
||||
continue;
|
||||
|
||||
Log::info(sprintf('%s:- Delisting [%s], not seen for [%d] days',self::LOGKEY,$ao->ftn,config('fido.idle.delist')));
|
||||
Log::info(sprintf('%s:- Delisting [%s], not seen for at least [%d] days',self::LOGKEY,$ao->ftn,config('fido.idle.delist')));
|
||||
$contact = FALSE;
|
||||
|
||||
// Remove echomail not collected from echomail_seenby
|
||||
@ -126,7 +126,7 @@ class AddressIdle implements ShouldQueue
|
||||
if ($ao->system->last_seen && $ao->system->last_seen->greaterThan($age))
|
||||
continue;
|
||||
|
||||
Log::info(sprintf('%s:- Marking [%s] as DOWN, not seen for [%d] days',self::LOGKEY,$ao->ftn,config('fido.idle.down')));
|
||||
Log::info(sprintf('%s:- Marking [%s] as DOWN, not seen for at least [%d] days',self::LOGKEY,$ao->ftn,config('fido.idle.down')));
|
||||
$contact = FALSE;
|
||||
|
||||
// Email Alert
|
||||
@ -173,7 +173,7 @@ class AddressIdle implements ShouldQueue
|
||||
|
||||
$contact = FALSE;
|
||||
|
||||
Log::info(sprintf('%s:- Marking [%s] as HOLD, not seen for [%d] days',self::LOGKEY,$ao->ftn,config('fido.idle.hold')));
|
||||
Log::info(sprintf('%s:- Marking [%s] as HOLD, not seen for at least [%d] days',self::LOGKEY,$ao->ftn,config('fido.idle.hold')));
|
||||
|
||||
// Email Alert
|
||||
if ($ao->system->users->count()) {
|
||||
|
Loading…
Reference in New Issue
Block a user