Home
last modified time | relevance | path

Searched refs:IMAP (Results 1 – 25 of 33) sorted by relevance

12

/PHP-8.1/ext/imap/
H A Dphp_imap.stub.php5 namespace IMAP { namespace
22 function imap_close(IMAP\Connection $imap, int $flags = 0): bool {}
24 function imap_num_msg(IMAP\Connection $imap): int|false {}
26 function imap_num_recent(IMAP\Connection $imap): int {}
28 function imap_headers(IMAP\Connection $imap): array|false {}
56 function imap_gc(IMAP\Connection $imap, int $flags): bool {}
58 function imap_expunge(IMAP\Connection $imap): bool {}
64 function imap_check(IMAP\Connection $imap): \stdClass|false {}
83 function imap_create(IMAP\Connection $imap, string $mailbox): bool {}
98 function imap_ping(IMAP\Connection $imap): bool {}
[all …]
H A Dphp_imap_arginfo.h14 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
21 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
26 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
30 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
34 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
38 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
61 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
69 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
75 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
84 ZEND_ARG_OBJ_INFO(0, imap, IMAP\\Connection, 0)
[all …]
H A Dconfig.w323 ARG_WITH("imap", "IMAP Support", "no");
19 AC_DEFINE('HAVE_IMAP', 1, 'Have IMAP support', true);
H A DCREDITS1 IMAP
H A Dconfig.m421 dnl The UW-IMAP c-client library was not originally designed to be a
66 AC_DEFINE(HAVE_IMAP_KRB, 1, [Whether IMAP extension has Kerberos support])
102 [for IMAP support],
104 [Include IMAP support. DIR is the c-client install prefix])])
107 [for IMAP Kerberos support],
109 [IMAP: Include Kerberos support])],
114 [for IMAP SSL support],
116 [IMAP: Include SSL support])],
297 AC_MSG_CHECKING(whether build with IMAP works)
/PHP-8.1/ext/mbstring/tests/
H A Dgh10192_utf7imap.phpt61 string(9) "UTF7-IMAP"
69 string(9) "UTF7-IMAP"
70 string(9) "UTF7-IMAP"
79 string(9) "UTF7-IMAP"
87 string(9) "UTF7-IMAP"
88 string(9) "UTF7-IMAP"
97 string(9) "UTF7-IMAP"
105 string(9) "UTF7-IMAP"
106 string(9) "UTF7-IMAP"
115 string(9) "UTF7-IMAP"
[all …]
H A Dutf7imap_encoding.phpt2 Exhaustive test of mUTF-7 (IMAP) encoding verification and conversion
19 testValidString($from, $to, 'UTF7-IMAP', 'UTF-8', $bothWays);
22 testInvalidString($from, $to, 'UTF7-IMAP', 'UTF-8');
49 identifyInvalidString("&", 'UTF7-IMAP');
50 identifyInvalidString("abc&", 'UTF7-IMAP');
51 identifyInvalidString("&" . mBase64(utf16BE("ハムサンドイッチ")), 'UTF7-IMAP');
111 identifyInvalidString("&" . mBase64($testString) . "-", 'UTF7-IMAP');
198 testValidString("☺&", "&Jjo-&-", "UTF-8", "UTF7-IMAP", false);
199 testValidString("西瓜&", "&iX903A-&-", "UTF-8", "UTF7-IMAP", false);
209 convertInvalidString("\x10", "%", "UTF7-IMAP", "UTF-8");
[all …]
H A Dbug76958.phpt2 Bug #76958: Broken UTF7-IMAP conversion
9 echo mb_convert_encoding($str, 'UTF-8', 'UTF7-IMAP') . "\n";
11 echo mb_convert_encoding($str, 'UTF7-IMAP', 'UTF-8') . "\n";
H A Dmb_encode_mimeheader_crash.phpt12 var_dump(mb_encode_mimeheader("abc", "UTF7-IMAP", "Q"));
20 mb_encode_mimeheader(): Argument #2 ($charset) "UTF7-IMAP" cannot be used for MIME header encoding
H A Dgh9535.phpt15 'UTF7-IMAP',
94 UTF7-IMAP: 宛如繁星
111 UTF7-IMAP: 星のように月
128 UTF7-IMAP: あa
145 UTF7-IMAP: AAAAAAAAAA
162 UTF7-IMAP: ??
H A Dmb_internal_encoding_variation2.phpt28 'UTF7-IMAP',
149 string(9) "UTF7-IMAP"
152 string(9) "UTF7-IMAP"
H A Dmb_strlen_variation3.phpt28 'UTF7-IMAP',
180 -- Iteration 14: UTF7-IMAP --
182 Encoding UTF7-IMAP recognised
184 Encoding UTF7-IMAP recognised
/PHP-8.1/ext/imap/tests/
H A Dimap_final.phpt2 Check that IMAP\Connection is declared final
8 class T extends IMAP\Connection {}
10 Fatal error: Class T cannot extend final class IMAP\Connection in %s on line %d
H A Dimap_constructor.phpt2 Attempt to instantiate an IMAP\Connection directly
9 new IMAP\Connection();
14 Exception: Cannot directly construct IMAP\Connection, use imap_open() instead
H A Dbug75774.phpt22 imap_append(): Argument #1 ($imap) must be of type IMAP\Connection, resource given
H A Dgh9309.phpt28 IMAP\Connection is already closed
/PHP-8.1/ext/imap/tests/setup/
H A Dimap_include.inc35 * Special handling for 'udate', which will vary run-to-run; assumes an IMAP
67 * @return resource IMAP stream to new mailbox
81 … throw new Exception("Cannot connect to IMAP server " . IMAP_SERVER . ": " . imap_last_error());
/PHP-8.1/ext/standard/tests/mail/
H A Dmail_include.inc18 * @return IMAP stream to new mailbox on success; FALSE on failure
27 echo "Cannot connect to IMAP server $server: " . imap_last_error() . "\n";
H A Dbug72964.phpt21 die("Cannot connect to IMAP server $server: " . imap_last_error() . "\n");
H A Dbug80706.phpt21 die("Cannot connect to IMAP server $server: " . imap_last_error() . "\n");
H A Dmail_basic_alt1-win32.phpt43 echo "Cannot connect to IMAP server $server: " . imap_last_error() . "\n";
H A Dmail_basic_alt2-win32.phpt40 echo "Cannot connect to IMAP server $server: " . imap_last_error() . "\n";
H A Dmail_basic_alt3-win32.phpt40 echo "Cannot connect to IMAP server $server: " . imap_last_error() . "\n";
H A Dmail_basic_alt4-win32.phpt41 echo "Cannot connect to IMAP server $server: " . imap_last_error() . "\n";
H A Dmail_variation_alt3-win32.phpt41 echo "Cannot connect to IMAP server $server: " . imap_last_error() . "\n";

Completed in 28 milliseconds

12