acceptance.conf.php.default 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /*
  3. Swift Mailer V4 accpetance test configuration.
  4. YOU ONLY NEED TO EDIT THIS FILE IF YOU WISH TO RUN THE ACCEPTANCE TESTS.
  5. The acceptance tests are run by default when "All Tests" are run with the
  6. testing suite, however, without configuration options here only the unit tests
  7. will be run and the acceptance tests will be skipped.
  8. You can fill out only the parts you know and leave the other bits.
  9. */
  10. /*
  11. Defines: The path to a writable directory (a temporary dir).
  12. Recommended: /tmp
  13. */
  14. define('SWIFT_TMP_DIR', '');
  15. /*
  16. Defines: The name and port of a SMTP server you can connect to.
  17. Recommended: smtp.gmail.com:25
  18. */
  19. define('SWIFT_SMTP_HOST', '');
  20. /*
  21. Defines: An SMTP server and port which uses TLS encryption.
  22. Recommended: smtp.gmail.com:465
  23. */
  24. define('SWIFT_TLS_HOST', '');
  25. /*
  26. Defines: An SMTP server and port which uses SSL encryption.
  27. Recommended: smtp.gmail.com:465
  28. */
  29. define('SWIFT_SSL_HOST', '');
  30. /*
  31. Defines: The path to a sendmail binary (one which can run in -bs mode).
  32. Recommended: /usr/sbin/sendmail
  33. */
  34. define('SWIFT_SENDMAIL_PATH', '');