When MSGID has domain but no point
This commit is contained in:
parent
071b817194
commit
1ae73e80c2
@ -742,7 +742,7 @@ class Message extends FTNBase
|
||||
// MSGID should be the basis of the source, we'll overrite our src from origin if we have it
|
||||
$m = [];
|
||||
if ($this->msgid && preg_match('#([0-9]+:[0-9]+/[0-9]+)?\.?([0-9]+)?@?([A-Za-z-_~]+)?\ +#',$this->msgid,$m)) {
|
||||
$this->src = Address::parseFTN($m[1].(isset($m[2]) ? '.'.$m[2] : '').(isset($m[3]) ? '@'.$m[3] : ''));
|
||||
$this->src = Address::parseFTN($m[1].((isset($m[2]) && $m[2] != '') ? '.'.$m[2] : '').(isset($m[3]) ? '@'.$m[3] : ''));
|
||||
}
|
||||
|
||||
// Parse SEEN-BY
|
||||
|
@ -28,13 +28,6 @@ class StartServer extends Command
|
||||
*/
|
||||
protected $description = 'Start Server';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
Log::info(sprintf('%s:+ Server Starting (%d)',self::LOGKEY,getmypid()));
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
@ -43,6 +36,7 @@ class StartServer extends Command
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
Log::info(sprintf('%s:+ Server Starting (%d)',self::LOGKEY,getmypid()));
|
||||
$o = Setup::findOrFail(config('app.id'));
|
||||
|
||||
$start = collect();
|
||||
|
Loading…
Reference in New Issue
Block a user