Re: Config question for James 3.8.0

2023-10-25 Thread Matt Pryor
Answering my own question, although the element is missing in the default smtpserver.xml config file, putting it in there seems to work. Matt On Wed, 25 Oct 2023 at 12:27, Matt Pryor wrote: > Hi, in James 3.01 I set the "hello" name of the server as follows: > > xxxSERVERNA

Config question for James 3.8.0

2023-10-25 Thread Matt Pryor
Hi, in James 3.01 I set the "hello" name of the server as follows: xxxSERVERNAMExxx Does this still work in 3.8.0 as the element is missing from smtpserver.xml, or is there another way to do it? Thanks Matt -- Kind regards Matt Pryor Software Developer The International Presence Group of Co

Re: Custom mailet question

2022-07-01 Thread Matt Pryor
Hi all, just to let you know that both of my mailets worked as hoped. @Garry Hurley, it turns out that the MimeMessage passed into the bounce mailet is actually the original email not the bounce email, which saves a bit of work! Kind regards Matt On Fri, 1 Jul 2022 at 09:33, Matt Pryor wrote:

Re: Custom mailet question

2022-07-01 Thread Matt Pryor
Many thanks Benoit, Garry and Karsten for the helpful responses! Matt On Thu, 30 Jun 2022 at 18:34, Garry Hurley wrote: > Actually, the bounce notification may have its own message ID, so you might > have to dig through it a little bit more than just taking > mail.getMessage().getMessageID().

Re: Custom mailet question

2022-06-30 Thread Garry Hurley
Actually, the bounce notification may have its own message ID, so you might have to dig through it a little bit more than just taking mail.getMessage().getMessageID(). You might have to parse the body of the message or the header to find the id of the original message that bounced. This is especia

Re: Custom mailet question

2022-06-30 Thread Otto, Karsten Andreas
On 30.06.22 3:48 PM, Matt Pryor wrote: > Hi there, we are currently running James 3.4.0. > > I am looking to create two implementations of Mailet to do the following: > > 1) Store message ID and a custom header in a database table after email has > been submitted via smtp > 2) Update table with f

Re: Custom mailet question

2022-06-30 Thread Otto, Karsten Andreas
On 30.06.22 3:48 PM, Matt Pryor wrote: > Hi there, we are currently running James 3.4.0. > > I am looking to create two implementations of Mailet to do the following: > > 1) Store message ID and a custom header in a database table after email has > been submitted via smtp > 2) Update table with f

Re: Custom mailet question

2022-06-30 Thread Benoit TELLIER
Hello Matt On 30/06/2022 20:48, Matt Pryor wrote: Hi there, we are currently running James 3.4.0. Upgrade to 3.7.0 advised. I am looking to create two implementations of Mailet to do the following: 1) Store message ID and a custom header in a database table after email has been submitted via

Custom mailet question

2022-06-30 Thread Matt Pryor
Hi there, we are currently running James 3.4.0. I am looking to create two implementations of Mailet to do the following: 1) Store message ID and a custom header in a database table after email has been submitted via smtp 2) Update table with failed status if the email bounces Please can you let

Re: Question: Actual "stable" james-server-app-3.6.1-app.zip and managesieve with starttls: ClassCastException ChannelManageSieveResponseWriter

2022-01-03 Thread Benoit TELLIER
Hello Gatherer, ManageSieve is known-to-be-buggy for quitte some time. I recently had a look at it [1] [2] and made it work with the Thunderbird plugin. The status of this work is still experimental though... This fix is available on master and on the (hopefully) upcoming 3.7.0 however I must co

Re: Authentication issue and question

2022-01-03 Thread Benoit TELLIER
Hello Felix, 1. I lack knowledge over how the Apple mail application is working, and especially how it works regarding self signed certificates. If they reject your self signed certificates, and do not offer a way to bypass security checks, then yes you might need to disable TLS in your testing en

Authentication issue and question

2021-12-26 Thread Felix Ingram
Hello all, Thanks to some pointers from Benoit, I’ve been able to build a custom version of the example single-node Cassandra app. I’ve implemented a custom domainlist module, as I need to accept wildcard domains, and I’ve written a Mailet that creates users on the fly (which is also required).

Question: Actual "stable" james-server-app-3.6.1-app.zip and managesieve with starttls: ClassCastException ChannelManageSieveResponseWriter

2021-12-23 Thread gatherer
Hi, Given: https://james.apache.org/download.cgi --> Apache James Server --> Apache James 3.6.1 is the stable version --> Binary (ZIP Format) for Spring wiring: james-server-app-3.6.1-app.zip Which points to https://www.apache.org/dyn/closer.lua/james/server/3.6.1/james-server-app-3.6.1-app.zip

Re: Postman scripts to document API + question about JMAP endpoint

2020-12-01 Thread Juhan Aasaru
Hi Raphaël, thanks for quick reply, these two pieces of information were exactly what I was missing. I try to update my Postman scripts soon to cover both Accept headers to illustrate the differences. Thanks! Juhan Kontakt Raphaël Ouazana () kirjutas kuupäeval T, 1. detsember 2020 kell 15:39:

Re: Postman scripts to document API + question about JMAP endpoint

2020-12-01 Thread Raphaël Ouazana
Hi, Le 01/12/2020 à 13:58, Juhan Aasaru a écrit : And tell us how we could switch from jmap-draft towards making jmap requests. Should we change anything in server configuration? Or is there just a different endpoint for non jmap-draft endpoint? Both ways are possible. Here for the server con

Postman scripts to document API + question about JMAP endpoint

2020-12-01 Thread Juhan Aasaru
Hi! We are struggling with distinguishing between jmap and jmap-draft. Since maybe other parties might be struggling with the same thing I created Postman scripts that help newcomers to fire requests towards Management API and towards JMAP API. I wonder there are anyone here who could: Check ou

Apostrophe's converted to Question Marks

2020-04-07 Thread Davis, Peter
m the POP3 service the body of the email reads this way: Here?s an example The apostrophe has been converted to a question mark. I've tried searching for this everywhere I can think of but so far can't get a hit. I've put just about everything in log4j.properties into DEBUG but st

Re: Question

2018-04-12 Thread David Dale
Thanks Ioan, I will take a look at the links. I am not sure if my question is clear though. I need to make sure that when our application sends email via local James server only servers that have TLS 1.2 will be allowed to receive mail. I need James to not deliver if TLS 1.2 is not supported

Re: Question

2018-04-12 Thread Ioan Eugen Stan
Hello David, I think you need to look at the JVM and not James specifically. James uses Netty 3.10 for the smtp (protocols project) and you should check the documentation for that. I suspect all you need to do is setup some JVM system properties like in the other link. I hope this helps, http

Question

2018-04-12 Thread David Dale
Hello, I am using the latest James server and I only need it as an SMTP server. However, I need to enforce TLS 1.2 on all deliveries or fail delivery. Is there a way to do this using James? David signature.asc Description: Message signed with OpenPGP

Re: question: is it possible to have SMTP server respond to both port 25 and port 465?

2017-09-07 Thread Mike Lepore
yes, I think too that the handlers block should be allowed to be global. Maybe allowing that block in both places would be best. thanks, Michael Lepore michael.lepore.w...@gmail.com On 09/06/2017 04:47 PM, cryptearth wrote: Ok, either some was changed from RC2 to final - but the current chain

Re: question: is it possible to have SMTP server respond to both port 25 and port 465?

2017-09-06 Thread cryptearth
Ok, either some was changed from RC2 to final - but the current chain somehow seems not like ONE MTA should configured: - -- IMO only settings like bound address/port and encryption should be configured in this way. The handler-chain should be a global one. So this could be error prone when

Re: question: is it possible to have SMTP server respond to both port 25 and port 465?

2017-09-06 Thread cryptearth
This should be added to http://james.apache.org/server/3/config-smtp-lmtp.html as it shows only a stub titled "Configure multiple SMTP servers" but with no content. Am 06.09.2017 um 21:31 schrieb Rich P: Yes, JAMES does support this. You need to add one section for each port you want to bind

Re: question: is it possible to have SMTP server respond to both port 25 and port 465?

2017-09-06 Thread Rich P
Yes, JAMES does support this. You need to add one section for each port you want to bind to. For example, in smtpserver.xml: 0.0.0.0:25 ... 0.0.0.0:465 ... Rich On 9/6/2017 2:54 PM, Mike Lepore wrote: > Is there a way to configure Ja

Re: question: is it possible to have SMTP server respond to both port 25 and port 465?

2017-09-06 Thread cryptearth
Funny, I've asked the very same question a few months ago. Short and simple awnser: No, you can't! A bit more: afaik James currently opens one port for SMTP, default on TCP/25 w/o any encryption. If you set SMTP port to TCP/465 w/ socketTLS enabled you'll only be able to enq

question: is it possible to have SMTP server respond to both port 25 and port 465?

2017-09-06 Thread Mike Lepore
Is there a way to configure James smtserver to support port 25 for non-SSL and port 465 for socketTLS at the same time? There doesn't seem to be a way to configure the smtpserver for multiple ports, one non-SSL and the other socketTLS in the smtpserver.xml. Can you have more than one tag? -

Re: Question on mail list support in James 3.0

2013-11-17 Thread Marc Chamberlin
. My team and I are looking into alternative solutions now. I do not know for certain if we will continue to use James or not, but dropping the mail list feature certainly will be a blow to us and will require a lot of work to recover from it. Marc... Sorry for the question I never heard

Re: Question on mail list support in James 3.0

2013-11-17 Thread Fernando Cassia
ure of IMAP?. Sorry for the question I never heard of "lists" in the context of a mail server. But then I´m only an IMAP user, never ran my own server. FC -- During times of Universal Deceit, telling the truth becomes a revolutionary act Durante épocas de Engaño Universal, de

Re: Question on mail list support in James 3.0

2013-11-17 Thread Marc Chamberlin
for a LONG time now to upgrade my James mail server to 3.0 as I would like to use an IMAP server instead of a POP3 server. But I cannot upgrade as long as there is no support for mail lists, which I need. According to the Apache James website this is not yet available. My question is will it be supp

Re: Question on mail list support in James 3.0

2013-11-16 Thread Eric Charles
re is no support for mail lists, which I need. According to the Apache James website this is not yet available. My question is will it be supported and if so, when is the ETA? Just curious... Marc... - To unsubscribe, e

Question on mail list support in James 3.0

2013-11-12 Thread Marc Chamberlin
question is will it be supported and if so, when is the ETA? Just curious... Marc... -- "The Truth is out there" - Spooky - To unsubscribe, e-mail: server-user-unsubscr...@james.apache.org For additional comman

Re: STARTTLS configuration question

2013-07-30 Thread invisiblewave
atter what encryption setting I use. Does that plainAuthenticationDisallowed tag go within the block or just at the level? -- View this message in context: http://james.10919.n7.nabble.com/STARTTLS-configuration-question-tp50107p50113.html Sent from the James - Users mailing list archive at

Re: STARTTLS configuration question

2013-07-29 Thread Jan-Philipp Hülshoff
tificate CA names sent > --- > SSL handshake has read 302 bytes and written 251 bytes > --- > New, (NONE), Cipher is (NONE) > Secure Renegotiation IS NOT supported > Compression: NONE > Expansion: NONE > >

STARTTLS configuration question

2013-07-29 Thread invisiblewave
d Compression: NONE Expansion: NONE -- View this message in context: http://james.10919.n7.nabble.com/STARTTLS-configuration-question-tp50107.html Sent from the James - Users mailing list archive at Nabble.com. - To unsubs

Re: Apache James -Question

2013-01-07 Thread Eric Charles
Sent: Saturday, January 05, 2013 9:19 AM To: James Users List Subject: Re: Apache James -Question On 04/01/2013 18:15, Naveen Gopi / Livecom wrote: Hi Eric, Thanks a lot for you reply. Either of the two will work for us. -> We are not using IMAP, but POP3, and in POP3 the mail gets deleted a

RE: Apache James -Question

2013-01-07 Thread Naveen Gopi / Livecom
Charles [e...@apache.org] Sent: Saturday, January 05, 2013 9:19 AM To: James Users List Subject: Re: Apache James -Question On 04/01/2013 18:15, Naveen Gopi / Livecom wrote: > Hi Eric, > > Thanks a lot for you reply. Either of the two will work for us. > > -> We are not using IMAP, but

Re: Apache James -Question

2013-01-05 Thread Eric Charles
:55 PM To: James Users List Subject: Re: Apache James -Question When you setFlag(..DELETED), you only change the state of the persisted mail, but don't says "remove it" You need to call e.g. the IMAP command EXPUNGE From http://www.ietf.org/rfc/rfc3501.txt: The EXPUNGE command p

RE: Apache James -Question

2013-01-04 Thread Naveen Gopi / Livecom
ld the class be changed? Thanks Naveen From: Eric Charles [e...@apache.org] Sent: Friday, January 04, 2013 5:55 PM To: James Users List Subject: Re: Apache James -Question When you setFlag(..DELETED), you only change the state of the persisted mail, but

Re: Apache James -Question

2013-01-04 Thread Eric Charles
eta.casengo.com outgoing .. Thanks Naveen From: Eric Charles [e...@apache.org] Sent: Friday, January 04, 2013 5:18 PM To: James Users List Subject: Re: Apache James -Question Hi, What do you mean by marking the mail as d

RE: Apache James -Question

2013-01-04 Thread Naveen Gopi / Livecom
store in my Derby database? beta.casengo.com outgoing .. Thanks Naveen From: Eric Charles [e...@apache.org] Sent: Friday, January 04, 2013 5:18 PM To: James Users List Subject: Re: Apache James -Question Hi, What do you mean

Re: Apache James -Question

2013-01-04 Thread Eric Charles
Hi, What do you mean by marking the mail as deleted? Are you accessing via POP, IMAP or directy JAVA API? Also, Read https://kb.wisc.edu/cae/page.php?id=16718 for background on "deleted". It all depends on the client you use. Thx, Eric On 04/01/2013 16:40, Naveen Gopi / Livecom wrote: Hi

RE: Apache James -Question

2013-01-04 Thread Naveen Gopi / Livecom
Hi , Unfortunately we are having a small problem. We are using Apache Derby with James and we can see that the database is growing really fast eating up lot of disk space and making James a lot slower. The growing files are inside apache-james/var/store/derby/seg0. We have made sure that after

Re: OSGI app/mailet integration question

2012-11-30 Thread Eric Charles
n Eugen Stan" Sent: Friday, November 30, 2012 1:17pm To: "James Users List" Subject: Re: OSGI app/mailet integration question Hello Nate, There has been some work done on James towards moving it to OSGi. I'm working on making James run inside Karaf[1] but it's very early

Re: OSGI app/mailet integration question

2012-11-30 Thread Ioan Eugen Stan
es/server/trunk/ [2] http://berlinbuzzwords.de/sessions/apache-james-more-emails-cloud > -Original Message- > From: "Ioan Eugen Stan" > Sent: Friday, November 30, 2012 1:17pm > To: "James Users List" > Subject: Re: OSGI app/mailet integration question >

Re: OSGI app/mailet integration question

2012-11-30 Thread nate . morrow
Message- From: "Ioan Eugen Stan" Sent: Friday, November 30, 2012 1:17pm To: "James Users List" Subject: Re: OSGI app/mailet integration question Hello Nate, There has been some work done on James towards moving it to OSGi. I'm working on making James run inside Kar

Re: OSGI app/mailet integration question

2012-11-30 Thread Ioan Eugen Stan
Hello Nate, There has been some work done on James towards moving it to OSGi. I'm working on making James run inside Karaf[1] but it's very early work, not all components/dependencies are OSGi ready yet. It will take some time. I'm not sure I fully understand what you are trying to achieve. Are y

OSGI app/mailet integration question

2012-11-30 Thread nate . morrow
Hey all, I'm developing an OSGI-based application where we'd like to tie in mail sending/receiving for our app users. Ultimately, I'd like to have a mailet that has access to to the OSGI services on our Karaf instance, but I'm not sure how to go about it. Also, we're going to need some way to

Re: IMAP UID uniqueness question

2012-08-21 Thread Joshua Armstrong
On 8/18/2012 5:27 AM, Eric Charles wrote: Hi, We tackle distributed UID generation via https://issues.apache.org/jira/browse/MAILBOX-103 We have a first snapshot implementation (undocumented) with UID generated by a Zookeeper Ensemble in https://svn.apache.org/repos/asf/james/mailbox/trunk/

Re: IMAP UID uniqueness question

2012-08-18 Thread Eric Charles
Hi, We tackle distributed UID generation via https://issues.apache.org/jira/browse/MAILBOX-103 We have a first snapshot implementation (undocumented) with UID generated by a Zookeeper Ensemble in https://svn.apache.org/repos/asf/james/mailbox/trunk/zoo-seq-provider I understand Joshua is u

Re: IMAP UID uniqueness question

2012-08-18 Thread Eric Charles
On 08/17/2012 08:48 PM, tim wrote: ... (i'm not affiliated with Apache James, just thoughts) In fact, replying on this mailing-list, you are part of the community. So, Welcome! :) On Aug 17, 2012, at 10:58 AM, Joshua Armstrong wrote: Hi, James users. My company is using James to handle

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 4:09 PM, tim wrote: interesting. I think replacing that "getId" with either the embedded message-id or hashing something should work then. No? As long as Apache james generating a new uidvalidity number for each instance of james. I'm assuming it is a random number. The client

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
interesting. I think replacing that "getId" with either the embedded message-id or hashing something should work then. No? As long as Apache james generating a new uidvalidity number for each instance of james. I'm assuming it is a random number. The client should see the new uidvalidity and

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 3:57 PM, tim wrote: does it ever change or is it they same always? I wonder if it is a guid random number, if the client's matches it assumes the backing database has not be refreshed. On Aug 17, 2012, at 4:51 PM, Joshua Armstrong wrote: Each mailbox (folder) has a UIDVALIDITY va

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
does it ever change or is it they same always? I wonder if it is a guid random number, if the client's matches it assumes the backing database has not be refreshed. On Aug 17, 2012, at 4:51 PM, Joshua Armstrong wrote: > On 8/17/2012 3:02 PM, tim wrote: >> Do you know if the standard imap client

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 3:02 PM, tim wrote: Do you know if the standard imap client does a get of uids of the message index? http://tools.ietf.org/html/rfc3501 says there is a uid command. if the client does, the hash thing probably should work, even if the messages are in different orders? -tim A

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 3:02 PM, tim wrote: Do you know if the standard imap client does a get of uids of the message index? http://tools.ietf.org/html/rfc3501 says there is a uid command. if the client does, the hash thing probably should work, even if the messages are in different orders? -tim

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 3:02 PM, tim wrote: Do you know if the standard imap client does a get of uids of the message index? http://tools.ietf.org/html/rfc3501 says there is a uid command. if the client does, the hash thing probably should work, even if the messages are in different orders? -tim A

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 3:02 PM, tim wrote: Do you know if the standard imap client does a get of uids of the message index? http://tools.ietf.org/html/rfc3501 says there is a uid command. if the client does, the hash thing probably should work, even if the messages are in different orders? -tim T

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
Do you know if the standard imap client does a get of uids of the message index? http://tools.ietf.org/html/rfc3501 says there is a uid command. if the client does, the hash thing probably should work, even if the messages are in different orders? -tim On Aug 17, 2012, at 3:49 PM, Joshua Arm

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 2:48 PM, tim wrote: are your servers completely separate, or could they share a database? (guid -> imap id) On Aug 17, 2012, at 3:46 PM, tim wrote: It's a possibility. We're exploring options right now and that's one option. I'm not up on the details though of the database

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 2:46 PM, tim wrote: and the imap client probably does a similar: for (int i=messagesIhaveRecieved;i Yes. That's why the first thing an IMAP client when you ask it to "get a folder/mailbox" is download a list of messages from the server. I have tcpdump output confirming that a s

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
are your servers completely separate, or could they share a database? (guid -> imap id) On Aug 17, 2012, at 3:46 PM, tim wrote: > and the imap client probably does a similar: > > for (int i=messagesIhaveRecieved;i { > //blahblahblah > } > > > > > On Aug 17, 2012, at 3:41 PM, tim wrote:

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
and the imap client probably does a similar: for (int i=messagesIhaveRecieved;i ah i see > > On Aug 17, 2012, at 3:34 PM, Joshua Armstrong wrote: > >> On 8/17/2012 2:29 PM, tim wrote: >>> So this: >>> >>>/** >>> * Method createMail creates a new Mail. >>> * >>> * @param message

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
ah i see On Aug 17, 2012, at 3:34 PM, Joshua Armstrong wrote: > On 8/17/2012 2:29 PM, tim wrote: >> So this: >> >> /** >> * Method createMail creates a new Mail. >> * >> * @param message >> * @param recipient >> * @return Mail >> * @throws MessagingException >>

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 2:39 PM, tim wrote: wait, are imap ids integers or uuid strings? -tim integers -- Joshua M. Armstrong Software Engineer Centurion, Inc. - To unsubscribe, e-mail: server-user-unsubscr...@james.apache.org For add

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
wait, are imap ids integers or uuid strings? -tim On Aug 17, 2012, at 3:30 PM, tim wrote: > Or no, that's a static getId, that can't be right. > > On Aug 17, 2012, at 3:29 PM, tim wrote: > >> So this: >> >>/** >> * Method createMail creates a new Mail. >> * >> * @param messag

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 2:29 PM, tim wrote: So this: /** * Method createMail creates a new Mail. * * @param message * @param recipient * @return Mail * @throws MessagingException */ protected Mail createMail(MimeMessage message, MailAddress recipient) th

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
Or no, that's a static getId, that can't be right. On Aug 17, 2012, at 3:29 PM, tim wrote: > So this: > > /** > * Method createMail creates a new Mail. > * > * @param message > * @param recipient > * @return Mail > * @throws MessagingException > */ > p

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
So this: /** * Method createMail creates a new Mail. * * @param message * @param recipient * @return Mail * @throws MessagingException */ protected Mail createMail(MimeMessage message, MailAddress recipient) throws MessagingException, UnknownHostExcepti

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 2:08 PM, tim wrote: have you found where in the code james is doing the imap storage? i might need to do this as well at some later date. I believe I have, yes. Mainly in the org.apache.james.fetchmail.FolderProcessor class. It imports all the mechanics from javax.mail and

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
have you found where in the code james is doing the imap storage? i might need to do this as well at some later date. On Aug 17, 2012, at 2:51 PM, Joshua Armstrong wrote: > On 8/17/2012 1:48 PM, tim wrote: >> do the UIDs need to be sequential for imap? >> >> could you hash on the messages' uni

Re: IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
On 8/17/2012 1:48 PM, tim wrote: do the UIDs need to be sequential for imap? could you hash on the messages' unique id header, or the message itself? -tim (i'm not affiliated with Apache James, just thoughts) On Aug 17, 2012, at 10:58 AM, Joshua Armstrong wrote: That's what we were thinking

Re: IMAP UID uniqueness question

2012-08-17 Thread tim
do the UIDs need to be sequential for imap? could you hash on the messages' unique id header, or the message itself? -tim (i'm not affiliated with Apache James, just thoughts) On Aug 17, 2012, at 10:58 AM, Joshua Armstrong wrote: > Hi, James users. > > My company is using James to handle voic

IMAP UID uniqueness question

2012-08-17 Thread Joshua Armstrong
Hi, James users. My company is using James to handle voicemail storage and retrieval and would like to have a multiple server scenario where users can access their messages from either server. We wanted to use IMAP to keep mail synchronized between the servers but we're running to a problem w

Re: general question spam filters

2012-07-28 Thread timprepscius
be the place to further code > the spam stuff > http://james.apache.org/mailet/ai/ > > We had a gsoc proposal last year for work on spam, but it didn't happen. > > So it's an work in progress where much has still to be done. > > Eric > > On 07/26/2012 0

Re: general question spam filters

2012-07-28 Thread Eric Charles
, but it didn't happen. So it's an work in progress where much has still to be done. Eric On 07/26/2012 09:02 PM, timprepscius wrote: Hey there, This is a general question, not really an implementation detail. But I thought I would ask, might save me many hours researching. Is

general question spam filters

2012-07-26 Thread timprepscius
Hey there, This is a general question, not really an implementation detail. But I thought I would ask, might save me many hours researching. Is there a way for apache james to use some sort of global spam filter? One that doesn't require any interaction from the user? I'm wonderin

RE: Question about empty MAIL FROM

2012-06-26 Thread Aaron Freeman
;ll open the ticket and be more precise. Thanks, Aaron > -Original Message- > From: Eric Charles [mailto:e...@apache.org] > Sent: Tuesday, June 26, 2012 1:34 PM > To: James Users List > Subject: Re: Question about empty MAIL FROM > > Hi Aaron, > Yes, please open the

Re: Question about empty MAIL FROM

2012-06-26 Thread Eric Charles
June 26, 2012 4:04 AM To: James Users List Subject: Re: Question about empty MAIL FROM Hi Aaron, Sorry to return you the question, but what does SMTP RFC (http://www.ietf.org/rfc/rfc2821.txt) tells about empty mails? (is it allowed?) In any case, it would be better to a more specific and throw an ex

RE: Question about empty MAIL FROM

2012-06-26 Thread Aaron Freeman
much beyond his statement that RFC1123 5.2.9 says it's a must and that setting a null MAIL FROM is a common technique for preventing bounce loops. Thanks, Aaron > -Original Message- > From: Eric Charles [mailto:e...@apache.org] > Sent: Tuesday, June 26, 2012 4:04 AM > To:

Re: Question about empty MAIL FROM

2012-06-26 Thread Stefano Bagnara
2012/6/26 Eric Charles : > I was supposing that, but didn't take time to point the exact line in the > RFC. This is all best summed up by section 5.2.9 of RFC1123, which says: The syntax shown in RFC-821 for the MAIL FROM: command omits the case of an empty path: "MAIL FROM:<>" (see RFC-821 P

Re: Question about empty MAIL FROM

2012-06-26 Thread Stefano Bagnara
2012/6/26 Eric Charles : > On 06/26/2012 11:07 AM, Stefano Bagnara wrote: >> "MAIL FORM:<>" is REQUIRED to work. This is the way DSN bounce are >> delivered. >> Mailservers not supporting this "sender" are listed by >> http://www.rfc-ignorant.org/ > > I was supposing that, but didn't take time to p

Re: Question about empty MAIL FROM

2012-06-26 Thread Eric Charles
On 06/26/2012 11:07 AM, Stefano Bagnara wrote: 2012/6/26 Eric Charles: Hi Aaron, Sorry to return you the question, but what does SMTP RFC (http://www.ietf.org/rfc/rfc2821.txt) tells about empty mails? (is it allowed?) I was supposing that, but didn't take time to point the exact li

Re: Question about empty MAIL FROM

2012-06-26 Thread Stefano Bagnara
2012/6/26 Eric Charles : > Hi Aaron, > > Sorry to return you the question, but what does SMTP RFC > (http://www.ietf.org/rfc/rfc2821.txt) tells about empty mails? (is it > allowed?) "MAIL FORM: <>" is REQUIRED to work. This is the way DSN bounce are delivered.

Re: Question about empty MAIL FROM

2012-06-26 Thread Eric Charles
Hi Aaron, Sorry to return you the question, but what does SMTP RFC (http://www.ietf.org/rfc/rfc2821.txt) tells about empty mails? (is it allowed?) In any case, it would be better to a more specific and throw an exception with a correct readable message. Based on your finding, it will be

Question about empty MAIL FROM

2012-06-25 Thread Aaron Freeman
On James Server 3.0 beta 4, we are seeing lots of these errors in the logs: ERROR 10:31:12,847 | james.smtpserver | Id='234288323' User='' Invalid email address while processing DATA. javax.mail.internet.AddressException: Out of data at position 1 in '' in string ``'' at position 1 at org

Re: question about blocking

2012-06-04 Thread Eric Charles
r level. Your mappers are singleton and will be called for you by the mailetcnntainer, so you need to take care to thread-safety. Thx, Eric On 06/03/2012 04:20 PM, Timothy Prepscius wrote: Hey there, I have a question about where and if james blocks on IO. So I'm implementing a new m

question about blocking

2012-06-03 Thread Timothy Prepscius
Hey there, I have a question about where and if james blocks on IO. So I'm implementing a new mailbox [actually I'm modifying for now, see last message :-)]. I am wondering what would be best for me to do: Either: Make the message mapper and mailbox mapper, etc block for as long as

Re: possible use for james, a question

2012-05-01 Thread Timothy Prepscius
easible. >> I think it might be, if the 551 User not local; please try is >> implemented generally. >> > > Can you give more details on what you are asking? > >> But I thought I would ask the experts :-) >> >> --- >> >> Here i

Re: possible use for james, a question

2012-05-01 Thread Eric Charles
what you are asking? But I thought I would ask the experts :-) --- Here is my technical question: I want to set up a mail server that: 1. waits for an incoming mail. 2. on RCPT TO: A. starts a single servlet listening on a specific-ip, which will accept a single message, wri

possible use for james, a question

2012-04-29 Thread Timothy Prepscius
Hello, I've been researching whether an idea I have is technically feasible. I think it might be, if the 551 User not local; please try is implemented generally. But I thought I would ask the experts :-) --- Here is my technical question: I want to set up a mail server tha

Re: Question re: Message persistence across James restarts

2011-08-05 Thread Eric Charles
Hi Patrick, On 05/08/11 00:38, Patrick Pyette wrote: Hi, I've got a custom mailet that uses an external service to determine whether it should forward a message or not. If the external service is down, the mailet queues the message and processes it like the RemoteDeliveryMailet. Is the

Question re: Message persistence across James restarts

2011-08-04 Thread Patrick Pyette
Hi, I've got a custom mailet that uses an external service to determine whether it should forward a message or not. If the external service is down, the mailet queues the message and processes it like the RemoteDeliveryMailet. The issue that I have is that if I restart James while messages a

Re: DSNBounce - response to Norman's question

2011-07-04 Thread mike tazelaar
When I send an email to an non-existent mailbox on the localhost, James sends an error report to the error log. But James doesn't send a notification to the postmaster mailbox. Nor do I see where the DSNBounce is generating any kind of error code or error message. It appears that only the er

Re: Question about SetMimeHeader() and interfacing with another server via HTTP

2011-05-20 Thread BobU
t; So, I have two questions: >> >> 1. Is it possible to write a mailet that will communicate via HTTP to >> this >> second server? >> 2. Assuming 1 can be done, how do you specify the returned value (a >> string) >> as the value of the header fie

Re: Question about SetMimeHeader() and interfacing with another server via HTTP

2011-05-20 Thread Norman Maurer
o this > second server? > 2. Assuming 1 can be done, how do you specify the returned value (a string) > as the value of the header field? > > Thanks for any help on this. > -- > View this message in context: > http://old.nabble.com/Question-about-SetMimeHeader

Question about SetMimeHeader() and interfacing with another server via HTTP

2011-05-19 Thread BobU
/Question-about-SetMimeHeader%28%29-and-interfacing-with-another-server-via-HTTP-tp31660223p31660223.html Sent from the James - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: server-user-unsubscr

Re: remotemanager newbie question

2011-04-14 Thread Eric Charles
Hi, You can also launch jconsole from shell (type jconsole), select the james process and go to the MBeans tab. You will have the org.apache.james node with all functions there. For jManage, you need to add a "new application" and define as url service:jmx:rmi:///jndi/rmi://localhost:/jm

Re: remotemanager newbie question

2011-04-14 Thread Daniel Tan
hmmmi got jmanage working but do not know how to add james into it. no help from the manage page too. i am also trying to find out whether we can write our own java program to interact with the user management tool like what we are doing for telnet. any help? i am very new to james and have t

Re: remotemanager newbie question

2011-04-14 Thread Daniel Tan
Ya how do u add users in version 3 as i only know how to add via telnet Sent from my iPhone On Apr 14, 2011, at 4:36 PM, Eric Charles wrote: > Hi Daniel, > > Which url / faq are you talking about? > > For 2.3.2, I never tested with jmx. > For 3.0, it's documented on http://james.apache.org/se

  1   2   3   4   5   >