branch 1.1.1-7532 created (now 7f48b93)
This is an automated email from the git hooks/post-receive script. New change to branch 1.1.1-7532 in repository faxtomail. See http://git.codelutin.com/faxtomail.git at 7f48b93 fixes #7532 Ne plus prendre en compte les noms de domaine dans les adresses expéditeur dans les réponses This branch includes the following new commits: new 7f48b93 fixes #7532 Ne plus prendre en compte les noms de domaine dans les adresses expéditeur dans les réponses The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 7f48b93db7ab3a7f0ced7dbd717e06e2f9c9ebf3 Author: Kevin Morin <morin@codelutin.com> Date: Thu Sep 17 10:29:45 2015 +0200 fixes #7532 Ne plus prendre en compte les noms de domaine dans les adresses expéditeur dans les réponses -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch 1.1.1-7532 in repository faxtomail. See http://git.codelutin.com/faxtomail.git commit 7f48b93db7ab3a7f0ced7dbd717e06e2f9c9ebf3 Author: Kevin Morin <morin@codelutin.com> Date: Thu Sep 17 10:29:45 2015 +0200 fixes #7532 Ne plus prendre en compte les noms de domaine dans les adresses expéditeur dans les réponses --- .../faxtomail/ui/swing/content/reply/ReplyFormUIModel.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/reply/ReplyFormUIModel.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/reply/ReplyFormUIModel.java index 7576737..d3af493 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/reply/ReplyFormUIModel.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/reply/ReplyFormUIModel.java @@ -295,7 +295,9 @@ public class ReplyFormUIModel extends AbstractSerializableBean { if (PROPERTY_FROM.equals(field)) { // valid if the email address is in the list of the authorized addresses // or if the domain is in the authorized domains, or if the domain list is empty - result = isEmailAllowed(getFrom()) || isDomainAllowed(getFrom()); + // 20150917 kmorin #7532 Ne plus prendre en compte les noms de domaine dans les adresses expéditeur dans les réponses + + result = isEmailAllowed(getFrom());// || isDomainAllowed(getFrom()); } return result; } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm