Class: POP3
Source Location: /blogs/inc/_misc/ext/_pop3.class.php
Class POP3
Class Overview
|
An RFC 1939 compliant wrapper class for the POP3 protocol. Located in /blogs/inc/_misc/ext/_pop3.class.php [line 38] |
[ Top ]
Property Summary
Method Summary
| POP3 | POP3() | Constructor |
| void | apop() | |
| true | connect() | Opens a socket to the specified server. Unless overridden, port defaults to 110. |
| void | delete() | |
| void | get() | |
| void | is_ok() | |
| void | last() | |
| void | login() | |
| void | noop() | |
| void | parse_banner() | |
| void | pass() | |
| void | popstat() | |
| void | pop_list() | |
| void | quit() | |
| void | reset() | |
| void | send_cmd() | |
| void | strip_clf() | |
| void | top() | |
| void | uidl() | |
| void | update_timer() | sets/refreshes script timeout |
| true | user() | Sends the USER command |
[ Top ]
Methods
Constructor POP3 [line 73]
|
Constructor
Parameters:| $server: | ||
| $timeout: |
[ Top ]
connect [line 115]
|
Opens a socket to the specified server. Unless overridden, port defaults to 110.
Parameters:| string | $server: | server, overriden by MAILSERVER, if not empty |
| integer | $port: | port, default 110 |
API Tags:
| Return: | on success, false on fail |
[ Top ]
