Plugins like listcommands should not close their own pages without displaying errors...
[squirrelmail.git] / plugins / mail_fetch / constants.php
1 <?php
2 /**
3 * Mail fetch plugin constants
4 * @copyright &copy; 2006 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
11 /** RFC 1939 USER authentication */
12 define('MAIL_FETCH_AUTH_USER',1);
13 /** RFC 1939 APOP authentication */
14 define('MAIL_FETCH_AUTH_APOP',2);
15 /** All authentication methods described in RFC 1939 */
16 define('MAIL_FETCH_AUTH_RFC1939',3);
17
18 /** Connection types */
19 define('MAIL_FETCH_USE_PLAIN',0);
20 define('MAIL_FETCH_USE_TLS',1);
21 define('MAIL_FETCH_USE_STLS',2);