adding constants
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 26 Aug 2006 17:34:38 +0000 (17:34 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 26 Aug 2006 17:34:38 +0000 (17:34 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11647 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/mail_fetch/constants.php [new file with mode: 0644]

diff --git a/plugins/mail_fetch/constants.php b/plugins/mail_fetch/constants.php
new file mode 100644 (file)
index 0000000..eb7924e
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+/**
+ *
+ */
+
+/** RFC 1939 USER authentication */
+define('MAIL_FETCH_AUTH_USER',1);
+/** RFC 1939 APOP authentication */
+define('MAIL_FETCH_AUTH_APOP',2);
+/** All authentication methods described in RFC 1939 */
+define('MAIL_FETCH_AUTH_RFC1939',3);
+
+/** Connection types */
+define('MAIL_FETCH_USE_PLAIN',0);
+define('MAIL_FETCH_USE_TLS',1);
+define('MAIL_FETCH_USE_STLS',2);