You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by sh...@apache.org on 2021/09/27 12:37:11 UTC

[unomi] branch unomi-1.6.x updated: [UNOMI-388] Fixing typo on custom e-mail plugin (#334)

This is an automated email from the ASF dual-hosted git repository.

shuber pushed a commit to branch unomi-1.6.x
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/unomi-1.6.x by this push:
     new 7d6a966  [UNOMI-388] Fixing typo on custom e-mail plugin (#334)
7d6a966 is described below

commit 7d6a966e4680982b7335a632da421233457d8eec
Author: Leonardo Zamariola <le...@gmail.com>
AuthorDate: Mon Sep 27 08:49:57 2021 -0300

    [UNOMI-388] Fixing typo on custom e-mail plugin (#334)
    
    Fixing value from .post to .port. This fix solves an env var config problem
    
    (cherry picked from commit 8158e0efb391abf9d2e02e66437c8124bdf7ae5c)
---
 plugins/mail/src/main/resources/org.apache.unomi.plugins.mail.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/mail/src/main/resources/org.apache.unomi.plugins.mail.cfg b/plugins/mail/src/main/resources/org.apache.unomi.plugins.mail.cfg
index 9fc4727..1f40490 100644
--- a/plugins/mail/src/main/resources/org.apache.unomi.plugins.mail.cfg
+++ b/plugins/mail/src/main/resources/org.apache.unomi.plugins.mail.cfg
@@ -16,7 +16,7 @@
 #
 
 mail.server.hostname=${org.apache.unomi.mail.server.hostname:-smtp.gmail.com}
-mail.server.port=${org.apache.unomi.mail.server.post:-465}
+mail.server.port=${org.apache.unomi.mail.server.port:-465}
 mail.server.username=${org.apache.unomi.mail.server.username:-}
 mail.server.password=${org.apache.unomi.mail.server.password:-}
 mail.server.sslOnConnect=${org.apache.unomi.mail.server.sslOnConnect:-true}