Skip to content

Commit 0824b30

Browse files
committed
Nits
1 parent a90eaef commit 0824b30

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

azure/configure.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ steps:
5858
--enable-dba \
5959
--with-snmp \
6060
--with-unixODBC \
61+
--with-imap \
62+
--with-kerberos \
63+
--with-imap-ssl \
6164
--enable-werror \
6265
--with-config-file-path=/etc \
63-
--with-config-file-scan-dir=/etc/php.d \
64-
--with-imap --with-kerberos --with-imap-ssl
66+
--with-config-file-scan-dir=/etc/php.d
6567
displayName: 'Configure Build'

ext/imap/tests/skipif.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $password = 'p4ssw0rd';
88
$options = OP_HALFOPEN; // this should be enough to verify server present
99
$retries = 0; // don't retry connect on failure
1010

11-
$mbox = imap_open($mailbox, $username, $password, $options, $retries);
11+
$mbox = @imap_open($mailbox, $username, $password, $options, $retries);
1212
if (!$mbox) {
1313
die("skip could not connect to mailbox $mailbox");
1414
}

0 commit comments

Comments
 (0)