mail_skipif.inc 1.1 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. extension_loaded('imap') or die('skip imap extension not available in this build');
  3. if( substr(PHP_OS, 0, 3) == 'WIN' && extension_loaded('sockets')) {
  4. // be sure mail server is accessible... on PHP 5.3.13 release build, using test-pack PHP-5.3-r1af8b3f,
  5. // the code below didn't skip test even though there was no mail server
  6. // test then failed (no mail server to test against)
  7. $socket = socket_create(AF_INET, SOCK_RAW, 1);
  8. socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => 10, 'usec' => 10));
  9. // imap uses tcp port 143
  10. socket_connect($socket, "localhost", 143) or die ("skip can't socket to mail server");
  11. }
  12. // Change these to make tests run successfully
  13. $mailbox = '{localhost}';
  14. $username = 'webmaster@example.com';
  15. $password = 'p4ssw0rd';
  16. $options = OP_HALFOPEN; // this should be enough to verify server present
  17. $retries = 0; // don't retry connect on failure
  18. $mbox = @imap_open($mailbox, $username, $password, $options, $retries);
  19. if (!$mbox) {
  20. die("skip could not connect to mailbox $mailbox");
  21. }
  22. imap_close($mbox);
  23. ?>