Open
Description
the proxy option is not working. It total ignores the proxy and makes a direct request anyway:
$client = $cm->make([
'host' => 'imap.somehost.com',
'port' => 993,
'encryption' => 'ssl',
'validate_cert' => true,
'username' => '[email protected]',
'password' => 'Password',
'protocol' => 'imap',
'proxy' => [
'socket' => "tcp://proxy.com:3444",
'request_fulluri' => false,
'username' => "my_username",
'password' => "secret_password",
]
]);