adding constants
[squirrelmail.git] / plugins / mail_fetch / constants.php
CommitLineData
e5eac8e3 1<?php
2/**
3 *
4 */
5
6/** RFC 1939 USER authentication */
7define('MAIL_FETCH_AUTH_USER',1);
8/** RFC 1939 APOP authentication */
9define('MAIL_FETCH_AUTH_APOP',2);
10/** All authentication methods described in RFC 1939 */
11define('MAIL_FETCH_AUTH_RFC1939',3);
12
13/** Connection types */
14define('MAIL_FETCH_USE_PLAIN',0);
15define('MAIL_FETCH_USE_TLS',1);
16define('MAIL_FETCH_USE_STLS',2);