Lines Matching refs:request
52 * @param ServerRequestInterface $request
56 public function handle(ServerRequestInterface $request): ResponseInterface argument
58 $user = Validator::attributes($request)->user();
59 $active = Validator::parsedBody($request)->string('SMTP_ACTIVE');
60 $disp_name = Validator::parsedBody($request)->string('SMTP_DISP_NAME');
61 $from_name = Validator::parsedBody($request)->string('SMTP_FROM_NAME');
62 $host = Validator::parsedBody($request)->string('SMTP_HOST');
63 $port = Validator::parsedBody($request)->string('SMTP_PORT');
64 $auth = Validator::parsedBody($request)->string('SMTP_AUTH');
65 $auth_user = Validator::parsedBody($request)->string('SMTP_AUTH_USER');
66 $auth_pass = Validator::parsedBody($request)->string('SMTP_AUTH_PASS');
67 $ssl = Validator::parsedBody($request)->string('SMTP_SSL');
68 $helo = Validator::parsedBody($request)->string('SMTP_HELO');
69 $dkim_domain = Validator::parsedBody($request)->string('DKIM_DOMAIN');
70 $dkim_selector = Validator::parsedBody($request)->string('DKIM_SELECTOR');
71 $dkim_key = Validator::parsedBody($request)->string('DKIM_KEY');
72 $test = Validator::parsedBody($request)->boolean('test', false);