Qore Pop3Client Module Reference
1.8
|
class for POP3 connections; returns an object of class Pop3Client for receiving or polling for emails More...
Public Member Methods | |
deprecated | constructor (string name, string desc, string url, bool monitor, *hash opts, hash urlh) |
DEPRECATED: creates the Pop3Connection object. More... | |
constructor (string name, string description, string url, hash attributes={}, hash options={}) | |
creates the RestConnection connection object More... | |
*hash | getRuntimeOptions () |
returns runtime options More... | |
string | getType () |
returns "pop3" | |
Static Public Member Methods | |
static deprecated Pop3Connection | make (string name, string desc, string url, bool monitor, *hash opts, hash urlh) |
DEPRECATED: static constructor. More... | |
Private Member Methods | |
Pop3Client | getImpl (bool connect=True, *hash rtopts) |
returns a Pop3Client object More... | |
class for POP3 connections; returns an object of class Pop3Client for receiving or polling for emails
supports the following runtime options in getImpl() for connection logging:
"log"
: a closure accepting a single string for logging"dbglog"
: a closure taking a single string for detailed technical connection loggingdeprecated Pop3Client::Pop3Connection::constructor | ( | string | name, |
string | desc, | ||
string | url, | ||
bool | monitor, | ||
*hash | opts, | ||
hash | urlh | ||
) |
DEPRECATED: creates the Pop3Connection object.
name | the name of the connection |
desc | connection description |
url | connection URL |
monitor | monitoring flag |
opts | connection options |
urlh | broken down URL hash (as returned by Qore::parse_url()) |
Pop3Client::Pop3Connection::constructor | ( | string | name, |
string | description, | ||
string | url, | ||
hash | attributes = {} , |
||
hash | options = {} |
||
) |
creates the RestConnection connection object
name | the name of the connection |
description | connection description |
url | connection URL (potentially with password info) |
attributes | various attributes. See below |
options | connection options |
See AbstractConnection::constructor() for attributes
and options
reference.
|
private |
returns a Pop3Client object
connect | if True, then Pop3Client::Pop3Client::connect() is called |
rtopts | supports the following runtime options in getImpl() for connection logging:
|
*hash Pop3Client::Pop3Connection::getRuntimeOptions | ( | ) |
returns runtime options
"log"
: a closure accepting a single string for logging"dbglog"
: a closure taking a single string for detailed technical connection logging
|
static |
DEPRECATED: static constructor.