diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-06 14:10:31 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-06 14:10:31 -0400 |
commit | 9d9e3afba2054bfa23ba6f019b7c8885c2d8415e (patch) | |
tree | 1113e318c3d5e15bed48480f90f5498347343783 /config.default.php | |
parent | c87e1fbc33416e7b2f59b98c2ffed173958b3146 (diff) |
Improve email sending system and add Postmark as mail transport
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index 7f379f5c..99698420 100644 --- a/config.default.php +++ b/config.default.php @@ -14,7 +14,7 @@ define('FILES_DIR', 'data/files/'); // E-mail address for the "From" header (notifications) define('MAIL_FROM', 'notifications@kanboard.local'); -// Mail transport to use: "smtp", "sendmail" or "mail" (PHP mail function) +// Mail transport to use: "smtp", "sendmail", "mail" (PHP mail function), "postmark" define('MAIL_TRANSPORT', 'mail'); // SMTP configuration to use when the "smtp" transport is chosen @@ -27,6 +27,9 @@ define('MAIL_SMTP_ENCRYPTION', null); // Valid values are "null", "ssl" or "tls" // Sendmail command to use when the transport is "sendmail" define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); +// Postmark API token (used to send emails through their API) +define('POSTMARK_API_TOKEN', ''); + // Database driver: sqlite, mysql or postgres (sqlite by default) define('DB_DRIVER', 'sqlite'); |