Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Admin/View/Log/EmailBounce/View.php
<?php

namespace XF\Admin\View\Log\EmailBounce;

class
View extends \XF\Mvc\View
{
    public function
renderRaw()
    {
       
/** @var \XF\Entity\EmailBounceLog $bounce */
       
$bounce = $this->params['bounce'];

       
$this->response->contentType('text/plain', 'utf-8')
            ->
header('X-Content-Type-Options', 'nosniff');

        return
$bounce->raw_message;
    }
}