summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-06 19:15:38 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-06 19:15:38 -0500
commit515e29461fcf3060b940cc9304dda254adba2d17 (patch)
tree88d683d856673314dfe9ae9b5e412da803d8514e
parent5933a829b7e0201fefe4198672612c0ae77000d6 (diff)
Change default mail from
-rw-r--r--app/constants.php2
-rw-r--r--config.default.php2
-rw-r--r--docs/email-configuration.markdown2
3 files changed, 3 insertions, 3 deletions
diff --git a/app/constants.php b/app/constants.php
index d6a9fd46..08e10d68 100644
--- a/app/constants.php
+++ b/app/constants.php
@@ -49,7 +49,7 @@ defined('REVERSE_PROXY_DEFAULT_ADMIN') or define('REVERSE_PROXY_DEFAULT_ADMIN',
defined('REVERSE_PROXY_DEFAULT_DOMAIN') or define('REVERSE_PROXY_DEFAULT_DOMAIN', '');
// Mail configuration
-defined('MAIL_FROM') or define('MAIL_FROM', 'notifications@kanboard.net');
+defined('MAIL_FROM') or define('MAIL_FROM', 'notifications@kanboard.local');
defined('MAIL_TRANSPORT') or define('MAIL_TRANSPORT', 'mail');
defined('MAIL_SMTP_HOSTNAME') or define('MAIL_SMTP_HOSTNAME', '');
defined('MAIL_SMTP_PORT') or define('MAIL_SMTP_PORT', 25);
diff --git a/config.default.php b/config.default.php
index c9bea70a..b9cbdf98 100644
--- a/config.default.php
+++ b/config.default.php
@@ -1,7 +1,7 @@
<?php
// E-mail address for the "From" header (notifications)
-define('MAIL_FROM', 'notifications@kanboard.net');
+define('MAIL_FROM', 'notifications@kanboard.local');
// Mail transport to use: "smtp", "sendmail" or "mail" (PHP mail function)
define('MAIL_TRANSPORT', 'mail');
diff --git a/docs/email-configuration.markdown b/docs/email-configuration.markdown
index 8b2727b0..8e0a0a92 100644
--- a/docs/email-configuration.markdown
+++ b/docs/email-configuration.markdown
@@ -68,7 +68,7 @@ define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs');
### The sender email address
-By default, emails will use the sender address `notifications@kanboard.net`.
+By default, emails will use the sender address `notifications@kanboard.local`.
It's not possible to reply to this address.
You can customize this address by changing the value of the constant `MAIL_FROM` in your config file.