mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
Slight fixes with defaults etc
This commit is contained in:
parent
df3988ea8b
commit
98bc913c2c
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user