*/ final class StartTlsCommand implements CommandInterface { public function name(): string { return 'STARTTLS'; } public function allowedStates(): array { return [SessionState::NotAuthenticated]; } public function encode(string $tag, SessionContext $context): RequestFrame { unset($tag, $context); return new RequestFrame('STARTTLS'); } public function handle(ResponseStream $responses, SessionContext $context): CommandStatusResult { foreach ($responses as $response) { if ($response instanceof TaggedResponse) { if (!$response->isOk()) { throw new ImapException('STARTTLS failed: ' . $response->text()); } $context->connection()->upgradeToTls(); $context->replaceCapabilities(); return new CommandStatusResult($response->status(), $response->text()); } } throw new ImapException('STARTTLS did not receive a tagged completion response.'); } }