Skip to content

Commit

Permalink
Slight fixes with defaults etc
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Nov 16, 2002
1 parent df3988e commit 98bc913
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions auth/nntp/lib.php
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion auth/pop3/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 98bc913

Please sign in to comment.