Re: Apache James : Purely MX record based smtp.

2021-06-30 Thread btell...@apache.org
Hello, If ou are using a gateway you should configure it directly mailetcontainer.xml RemoteDelivery mailet. Otherwize James would attempt to deliver all mails itself to remote domains. Eg:         outgoing     5000, 10, 23*50     25

Re: User Docker image apache/james:demo-3.6.0: SMTP problem

2021-08-17 Thread btell...@apache.org
Hello, Please refer to https://issues.apache.org/jira/browse/JAMES-3525 TL;DR Your MAIL FROM is the one of a local user. If we accept the email without authentication, anybody could trivially still your identity, which would be a major security flow. Regards, Benoit On 17/08/2021 20:09,

Re: [ext] Re: User Docker image apache/james:demo-3.6.0: SMTP problem

2021-08-18 Thread btell...@apache.org
ix > > -Original Message- > From: btell...@apache.org > Sent: Wednesday, August 18, 2021 3:19 AM > To: server-user@james.apache.org > Subject: [ext] Re: User Docker image apache/james:demo-3.6.0: SMTP problem > > Hello, > > Please refer to https://issues

Re: [ext] Re: User Docker image apache/james:demo-3.6.0: SMTP problem

2021-08-18 Thread btell...@apache.org
Hi Felix, I did open https://github.com/apache/james-project/pull/605 If there is anything unclear, feel free to ask there, let's get that tutorial better together! Regards, Benoit On 18/08/2021 16:05, btell...@apache.org wrote: > Hi Felix, > > I did just succeed to self se

Re: Apache James MTA 3.6.0 spawning additional connections.

2021-07-13 Thread btell...@apache.org
Hello Amlan, Could you please share your remote delivery configuration in mailetcontainer.xml? Have you been configuring it as a SMTP gateway? I noticed this too in a performance enhancement session with flame graphs. To be fairly honest the code paths handling direct resolution and gateway

Re: Apache James MTA 3.6.0 spawning additional connections.

2021-07-13 Thread btell...@apache.org
P_GATEWAY_3},${env:SMTP_GATEWAY_4} > > > ${env:SMTP_WEBSSO_USERNAME} > ${env:SMTP_WEBSSO_PASSWORD} > > > > ${env:SMTP_LOCALHOST_NAME} > > > > On 13/07/2021, 11:21, "btell...@apache.org" wrote: > > He

[ANNOUNCE] James MIME4J 0.8.5 released

2021-07-14 Thread btell...@apache.org
The Apache James team is pleased to announce the release of version 0.8.5 of the MIME4J library. MIME4J is a library allowing parsing and composing MIME messages. It comes with a SAX style parser, and also have an easy to use DOM component. See https://james.apache.org/mime4j/ You can download

Re: Move spam to spam folder

2021-07-14 Thread btell...@apache.org
Hello, This links demonstrate ho this could be done: https://james.staged.apache.org/james-project/3.7.0/servers/distributed/configure/spam.html#_antispam_mailets Cheers, Benoit On 14/07/2021 12:51, Pang, Overcasts.net wrote: > Hello all, > >   I have recently set up a James mail server. I

Re: Mail list support?

2021-08-08 Thread btell...@apache.org
Hello Marc, There is a lot to say, but we would, I guess, gladly accept mailing list lie contributions on the master development branch in a separated module. I personally would enjoy providing professional support implementing such a feature if needed. Mailing list support is however out of

Re: Mail list support?

2021-08-12 Thread btell...@apache.org
ig files needed to work in either of these environments? > >Thanks, Marc > > > On 8/7/21 11:50 PM, btell...@apache.org wrote: >> Hello Marc, >> >> There is a lot to say, but we would, I guess, gladly accept mailing list >> lie contributions on the master developmen

Re: Apache James MTA 3.6.0 spawning additional connections.

2021-07-30 Thread btell...@apache.org
/3/config-domainlist.html but the config is > not very obvious from this. > > Amlan > > > > > On 13/07/2021, 11:21, "btell...@apache.org" wrote: > > Hello Amlan, > > Could you please share your remote delivery configuration in > mailetco

[ANNOUNCE] Apache James 3.6.1 released

2021-12-18 Thread btell...@apache.org
The Apache James (https://james.apache.org) community is pleased to announce the availability of Apache James 3.6.1. Apache James is a modular email server written in Java. This release focuses mostly on bug fixes. We recommend 3.6.0 user to upgrade to it. The release is available now from our

Re: Kopano WebApp as Mail Client

2021-12-17 Thread btell...@apache.org
On 17/12/2021 22:14, Bs Serge wrote: > Hi all, > > Is there anybody here who successfully used Kopano WebApp [1] as the mail > client for Apache James? I have not heard yet about such a usage but we are definitly interested to here about such trials here! Looks like Kopano groupware relies on

Re: Sending Unencrypted E-mails

2021-12-17 Thread btell...@apache.org
Hello. Incoming SMTP (receiving emails) is intrinsequely different from sending emails. Sending emails is govern by RemoteDelivery mailet within mailetcontainer.xml. To get RemoteDelivery trusted by third parties you can:  - Enable optimistic STARTTLS upgrades - email relaying happens on port

Re: How to get TLS working

2021-12-20 Thread btell...@apache.org
On 21/12/2021 07:22, Sir Dotcom wrote: > I've spent the last several days trying to enable TLS on the James > server app and the imap and smtp servers.  Being a java noob, I'm > taking the conf file text as absolute and getting nowhere.  It says in > 5 of those server conf's I believe: > > >    

Re: Web Administration for James

2021-12-21 Thread btell...@apache.org
On 21/12/2021 23:04, Bs Serge wrote: > Hi all, > > I want to have an administrator able to manage users without using the > command line and I'm curious about a couple of things : > > On the web administration page [1] it says that *webadmin* is only enabled > with *Guice* that you can not use

Re: How to get TLS working

2021-12-21 Thread btell...@apache.org
Are you sure the SMTP user is authenticated? Can you share your smtpserver.xml and mailetcontainer.xml files? Be careful of not sharing possibly sensible information. Benoit On 21/12/2021 23:38, Sir Dotcom wrote: > I finally got it straightened out ... I was being routed away by the >

Re: Sending Unencrypted E-mails

2021-12-22 Thread btell...@apache.org
outgoing 5000, 10, 23*50 25 0 10 true bounces true true false ${env:OP_JAMES_REMOTE_DELIVERY_HELO} (sample taken from mailetcontainer.xml of one of my environments.) The important thing here is startTLS true as it enable opportunistic connection upgrades. Your very next problem is

Re: Web Administration for James

2021-12-22 Thread btell...@apache.org
it? That's the point! Everything is in place to easily do this but we just need to integrate it within the release process. Will do. Also ZIP artifacts can be generated with a simple maven build. No docker involved whatsoever.   Best regards > > Best Regards, > > > > On Wed, Dec

Re: apache/james:demo-3.6.0

2021-12-09 Thread btell...@apache.org
Hello Sean, Email trust is definitely a complicated thing. Getting third party accepting your emails is a complex task [1]. To send emails to (say) Gmail, you would need to buy a domain, register you MXs, set up scertificates, battle with DKIM and SPF, etc... [1]

Re: apache/james:demo-3.6.0

2021-12-10 Thread btell...@apache.org
Hello David! Thanks for pointing DMarc out! That would be great if someone find a bit of time to have a quick write up on how to setup DMarc with James. Also it could be great to have integrations for James retrieving, understanding, and complying with DMarc policies. Best regards, Benoit

Re: Custom assembly issues

2021-12-12 Thread btell...@apache.org
Hello Felix, On 12/12/2021 04:47, Felix Ingram wrote: > Hello all, > > I'm trying to create a custom server assembly. I've started by trying to > recreate the distributed app from here: > james-project/CassandraRabbitMQJamesServerMain.java > at master · apache/james-project (github.com) >

Re: James 3.0-b4 on CentOS7

2021-07-24 Thread btell...@apache.org
Hello Adam, As implied in the release name, 3.0-beta4 is a beta... It dates from 2013 (8 years), is no longer supported by the community, is not on the download page. Given the numerous dependencies to be updated, as security seems to be a concern to you (otherwize why upgrade java and centos?),