| $servername
How do I format the variables for the mobile phone mod?
//$ServerName = "{localhost/imap:143}INBOX"; // For a IMAP connection (PORT 143)
//$ServerName = "{localhost/pop3:110}INBOX"; // For a POP3 connection (PORT 110)
$ServerName = "{localhost:143/notls}INBOX";
should it be:
$ServerName = "{localhost:mail.mydomain.com}INBOX";
or
$ServerName = "{mail.mydomain.com}INBOX";
And does it matter which method I use (IMAP or POP3) I am assuming I need to uncomment one or the other.
Thanks in advance!
|