Fix session autostart code - session_name() return value does not indicate session...
[squirrelmail.git] / plugins / mail_fetch / constants.php
CommitLineData
e5eac8e3 1<?php
2/**
f1f33874 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
e5eac8e3 9 */
10
11/** RFC 1939 USER authentication */
12define('MAIL_FETCH_AUTH_USER',1);
13/** RFC 1939 APOP authentication */
14define('MAIL_FETCH_AUTH_APOP',2);
15/** All authentication methods described in RFC 1939 */
16define('MAIL_FETCH_AUTH_RFC1939',3);
17
18/** Connection types */
19define('MAIL_FETCH_USE_PLAIN',0);
20define('MAIL_FETCH_USE_TLS',1);
21define('MAIL_FETCH_USE_STLS',2);