Documentation

Horde_Mail_Autoconfig_Server_Pop3 extends Horde_Mail_Autoconfig_Server
in package

Autoconfigured configuration details for a POP3 server (RFC 1939/STD 53).

Tags
author

Michael Slusarz slusarz@horde.org

category

Horde

copyright

2014-2017 Horde LLC

license

http://www.horde.org/licenses/lgpl21 LGPL 2.1

Table of Contents

$host  : string
The server hostname (IDN encoded).
$label  : int
The server label.
$port  : int
Default POP3 port (RFC 1939 [3]).
$tls  : mixed
TLS connection details.
$username  : string
The username to use.
valid()  : bool
Check to see if server can be connected to.

Properties

$host

The server hostname (IDN encoded).

public string $host = \null

$label

The server label.

public int $label = \null

$port

Default POP3 port (RFC 1939 [3]).

public int $port = 110

$tls

TLS connection details.

public mixed $tls = \null

'tls' = TLS needed for direct connection to server/port. 'starttls' = Switch to TLS via protocol after connection. false = No TLS connection used.

$username

The username to use.

public string $username = \null

Methods

valid()

Check to see if server can be connected to.

public valid([array<string|int, mixed> $opts = array() ]) : bool
Parameters
$opts : array<string|int, mixed> = array()

Additional options:

  • auth: (mixed) The authentication credentials used to test a successful connection.
  • insecure: (boolean) If true, will attempt insecure authentication.
  • users: (array) A list of usernames to attempt if trying auth. If successful, the username will be stored in $username.
Return values
bool

True if server is valid.

Search results