Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ASonno

    (@asonno)

    workaround …
    function parse_banner ( $server_text ) {
    preg_match(‘@^(?:OK)?([^/]+)@i’,$server_text, $matches);
    $banner = $matches[1];
    preg_match(‘/[^<]+\.[^.]+$/’, $server_text, $matches);
    $banner = “<{$matches[0]}”;
    $banner = $this->strip_clf($banner);
    return “$banner”;
    }

    does it for me.

    Cheers,
    Arnold

    Thread Starter ASonno

    (@asonno)

    https://www.babsi.de/silentapop/ solve the Problem for me. Now I can blog by Email.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wp-includes/class-pop3.php pop->parse_banner eliminate Zeros’ is closed to new replies.