Slight fixes with defaults etc

This commit is contained in:
moodler 2002-11-16 03:56:00 +00:00
parent df3988ea8b
commit 98bc913c2c
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
<?PHP // $Id$
// Authentication by looking up an IMAP, POP or NNTP server
// Authentication by looking up an NNTP server
// This code is completely untested so far - IT NEEDS TESTERS!
// Looks like it should work though ...
$CFG->auth_nntphost = "127.0.0.1"; // Should be IP number
$CFG->auth_nntpport = "119";
$CFG->auth_nntpport = "119"; // 119 is most common
function auth_user_login ($username, $password) {

View File

@ -6,7 +6,7 @@
$CFG->auth_pop3host = "127.0.0.1"; // Should be IP number
$CFG->auth_pop3type = "pop3"; // pop3, pop3cert
$CFG->auth_pop3port = "100"; // 143, 993, 100, 119
$CFG->auth_pop3port = "110"; // 110 is most common
function auth_user_login ($username, $password) {