argument('file')); $a = NULL; $f = new File($fs->path($rel_name)); $m = NULL; if ($this->argument('ftn')) { $a = Address::findFTN($this->argument('ftn')); } elseif (preg_match('/^(([0-9]+)-)+/',$this->argument('file'),$m)) { $a = Address::findOrFail(hexdec($m[2])); } else { $this->error('Unable to determine sender FTN address'); exit(1); } foreach ($f as $packet) { foreach ($pkt = Packet::process($packet,$f->itemName(),$f->itemSize(),$a?->zone->domain) as $msg) { // @todo Quick check that the packet should be processed by us. $this->info(sprintf('Processing message from [%s] with msgid [%s] in (%s)',$msg->fboss,$msg->msgid,$f->pktName())); // Dispatch job. Job::dispatch($msg,$f->pktName(),$a,$pkt->fftn_o,Carbon::now(),$this->option('nobot')); } } } }