You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tiefpunkt edited this page Mar 2, 2013
·
1 revision
The eMail tracker gathers information about your electronic mailbox. It supports IMAP and POP3 mailboxes.
Dependencies
Needs the PHP IMAP extension. Can be installed under Debian with apt-get install php5-imap
Configuration
$mail["active"] = false;
Set to trueto 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}. Replace imap with pop3 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