Make return-to-message work for forwards
[squirrelmail.git] / plugins / mail_fetch / constants.php
CommitLineData
e5eac8e3 1<?php
2/**
f1f33874 3 * Mail fetch plugin constants
22387c8d 4 * @copyright 2006-2017 The SquirrelMail Project Team
f1f33874 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);