Quote:
Originally Posted by Fibe
lol thats better
I just deleted the entire input line and added
$host = "mail.yoursvere.com"; at the top.
Erwin how would i go about shutting down pop3 /imap selection. I just want them to be able to check the pop3.
and thanks !
|
3) To force users to use only POP3 or IMAP
In email.php, find:
PHP Code:
$HTML .= "<tr><td align=right>Type: </td><td> POP3<INPUT TYPE=radio size=1 NAME=opt group=opt value='POP3' checked>";
$HTML .= "IMAP <INPUT TYPE=radio size=1 NAME=opt group=opt value='IMAP'></td></tr>";
// $HTML .= "<input type='hidden' name='opt' value='POP3'>\n"; // set to IMAP als IMAP
Replace with:
PHP Code:
$HTML .= "<input type='hidden' name='opt' value='POP3'>";
Change POP3 to IMAP if you wish.
I added this to the first post.