Slight fixes with defaults etc
authormoodler <moodler>
Sat, 16 Nov 2002 03:56:00 +0000 (03:56 +0000)
committermoodler <moodler>
Sat, 16 Nov 2002 03:56:00 +0000 (03:56 +0000)
auth/nntp/lib.php
auth/pop3/lib.php

index 4223df29177b808b10a026793a752db1805d7aad..ee148dd543346f9ea8f01b332ab324eb86614a71 100644 (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) {
index 179316e1b708dbac25c8f723ce409c3a66be368c..6582c979c364f3946c93a33aea60ee50101ba198 100644 (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) {