mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
13 lines
782 B
PHP
13 lines
782 B
PHP
<?php
|
|
// IMAP plugin
|
|
$string['auth_imapnotinstalled'] = 'Cannot use IMAP authentication. The PHP IMAP module is not installed.';
|
|
$string['auth_imapdescription'] = 'This method uses an IMAP server to check whether a given username and password is valid.';
|
|
$string['auth_imaphost'] = 'The IMAP server address. Use the IP number, not DNS name.';
|
|
$string['auth_imapport'] = 'IMAP server port number. Usually this is 143 or 993.';
|
|
$string['auth_imaptitle'] = 'IMAP server';
|
|
$string['auth_imaptype'] = 'The IMAP server type. IMAP servers can have different types of authentication and negotiation.';
|
|
$string['auth_imaptype_key'] = 'Type';
|
|
$string['auth_imaphost_key'] = 'Host';
|
|
$string['auth_imapport_key'] = 'Port';
|
|
$string['auth_imapchangepasswordurl_key'] = 'Password-change URL';
|
|
?>
|