-
Notifications
You must be signed in to change notification settings - Fork 0
tiefpunkt edited this page Mar 2, 2013
·
1 revision
The eMail tracker gathers information about your electronic mailbox. It supports IMAP and POP3 mailboxes.
Needs the PHP IMAP extension. Can be installed under Debian with apt-get install php5-imap
-
$mail["active"] = false;
Set totrue
to activate this data provider. -
$mail["mailbox"] = "{mail.example.com:993/imap/ssl}";
Connection string to your mailbox. If you use SSL:{<hostname>:<port>/imap/ssl}
. Without SSL:{<hostname>:<port>/imap}
. Replaceimap
withpop3
for a POP3 mailbox. See the official PHP IMAP documentation for details. -
$mail["username"] = "USERNAME";
Your IMAP/POP3 username -
$mail["password"] = "PASSWORD";
Your IMAP/POP3 password
- Currently only supports a single mailbox.