smoke.conf.php.default 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /*
  3. Swift Mailer V4 smoke test configuration.
  4. YOU ONLY NEED TO EDIT THIS FILE IF YOU WISH TO RUN THE SMOKE TESTS.
  5. The smoke 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 smoke tests will be skipped.
  8. */
  9. /*
  10. Defines: The an address which Swift can send to (it will also send "from" this address).
  11. Recommended: (your own email address?)
  12. */
  13. define('SWIFT_SMOKE_EMAIL_ADDRESS', '');
  14. /*
  15. Defines: The specific transport you want to mail with.
  16. Recommended: Any of 'smtp', 'sendmail' or 'mail'
  17. */
  18. define('SWIFT_SMOKE_TRANSPORT_TYPE', '');
  19. // SMTP-specific settings
  20. /*
  21. Defines: An SMTP server to connect to
  22. Recommended: smtp.your-isp.com (varies wildly!)
  23. */
  24. define('SWIFT_SMOKE_SMTP_HOST', '');
  25. /*
  26. Defines: The SMTP port to connect to
  27. Recommended: 25
  28. */
  29. define('SWIFT_SMOKE_SMTP_PORT', '');
  30. /*
  31. Defines: A username to authenticate with SMTP (if needed).
  32. Recommended: (none)
  33. */
  34. define('SWIFT_SMOKE_SMTP_USER', '');
  35. /*
  36. Defines: A password to authenticate with SMTP (if needed).
  37. Recommended: (none)
  38. */
  39. define('SWIFT_SMOKE_SMTP_PASS', '');
  40. /*
  41. Defines: The encryption needed on your SMTP server.
  42. Recommended: (none), or 'tls' or 'ssl'
  43. */
  44. define('SWIFT_SMOKE_SMTP_ENCRYPTION', '');
  45. // Sendmail specific settings
  46. /*
  47. Defines: The command to use when sending via sendmail
  48. Recommended: /usr/sbin/sendmail -bs (or "-oi -t")
  49. */
  50. define('SWIFT_SMOKE_SENDMAIL_COMMAND', '');