constants.php 375 B

12345678910111213141516
  1. <?php
  2. /**
  3. *
  4. */
  5. /** RFC 1939 USER authentication */
  6. define('MAIL_FETCH_AUTH_USER',1);
  7. /** RFC 1939 APOP authentication */
  8. define('MAIL_FETCH_AUTH_APOP',2);
  9. /** All authentication methods described in RFC 1939 */
  10. define('MAIL_FETCH_AUTH_RFC1939',3);
  11. /** Connection types */
  12. define('MAIL_FETCH_USE_PLAIN',0);
  13. define('MAIL_FETCH_USE_TLS',1);
  14. define('MAIL_FETCH_USE_STLS',2);