constants.php 598 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Mail fetch plugin constants
  4. * @copyright 2006-2025 The SquirrelMail Project Team
  5. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  6. * @version $Id$
  7. * @package plugins
  8. * @subpackage mail_fetch
  9. */
  10. /** RFC 1939 USER authentication */
  11. define('MAIL_FETCH_AUTH_USER',1);
  12. /** RFC 1939 APOP authentication */
  13. define('MAIL_FETCH_AUTH_APOP',2);
  14. /** All authentication methods described in RFC 1939 */
  15. define('MAIL_FETCH_AUTH_RFC1939',3);
  16. /** Connection types */
  17. define('MAIL_FETCH_USE_PLAIN',0);
  18. define('MAIL_FETCH_USE_TLS',1);
  19. define('MAIL_FETCH_USE_STLS',2);