From f99a3c501fd6ed7b4914b8d6e855489c2ce5b219 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 16 Oct 2015 20:50:12 -0400 Subject: Make mail transports pluggable and move integrations to plugins - Postmark: https://github.com/kanboard/plugin-postmark - Mailgun: https://github.com/kanboard/plugin-mailgun - Sendgrid: https://github.com/kanboard/plugin-sendgrid --- app/constants.php | 5 ----- 1 file changed, 5 deletions(-) (limited to 'app/constants.php') diff --git a/app/constants.php b/app/constants.php index 004f7cf7..5010dacd 100644 --- a/app/constants.php +++ b/app/constants.php @@ -82,11 +82,6 @@ defined('MAIL_SMTP_USERNAME') or define('MAIL_SMTP_USERNAME', ''); defined('MAIL_SMTP_PASSWORD') or define('MAIL_SMTP_PASSWORD', ''); defined('MAIL_SMTP_ENCRYPTION') or define('MAIL_SMTP_ENCRYPTION', null); defined('MAIL_SENDMAIL_COMMAND') or define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); -defined('POSTMARK_API_TOKEN') or define('POSTMARK_API_TOKEN', ''); -defined('MAILGUN_API_TOKEN') or define('MAILGUN_API_TOKEN', ''); -defined('MAILGUN_DOMAIN') or define('MAILGUN_DOMAIN', ''); -defined('SENDGRID_API_USER') or define('SENDGRID_API_USER', ''); -defined('SENDGRID_API_KEY') or define('SENDGRID_API_KEY', ''); // Enable or disable "Strict-Transport-Security" HTTP header defined('ENABLE_HSTS') or define('ENABLE_HSTS', true); -- cgit v1.2.3