mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 18:08:02 +01:00
15 lines
908 B
PHP
15 lines
908 B
PHP
<?php
|
|
// POP3 plugin
|
|
$string['auth_pop3description'] = 'This method uses a POP3 server to check whether a given username and password is valid.';
|
|
$string['auth_pop3host'] = 'The POP3 server address. Use the IP number, not DNS name.';
|
|
$string['auth_pop3mailbox'] = 'Name of the mailbox to attempt a connection with. (usually INBOX)';
|
|
$string['auth_pop3port'] = 'Server port (110 is the most common, 995 is common for SSL)';
|
|
$string['auth_pop3title'] = 'POP3 server';
|
|
$string['auth_pop3type'] = 'Server type. If your server uses certificate security, choose pop3cert.';
|
|
$string['auth_pop3notinstalled'] = 'Cannot use POP3 authentication. The PHP IMAP module is not installed.';
|
|
$string['auth_pop3changepasswordurl_key'] = 'Password-change URL';
|
|
$string['auth_pop3mailbox_key'] = 'Mailbox';
|
|
$string['auth_pop3port_key'] = 'Port';
|
|
$string['auth_pop3type_key'] = 'Type';
|
|
$string['auth_pop3host_key'] = 'Host';
|
|
?>
|