RE: Removing attachments from messages.

2004-04-07 Thread Noel J. Bergman
> How can I do it ? You might want to join the JavaMail Interest mailing list, which provides a place for JavaMail-specific questions. --- Noel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Removing attachments from messages.

2004-04-07 Thread Leandro Rodrigo Saad Cruz
How can I do it ? This is the code I wrote on a test mailet. MimeMessage message = mail.getMessage(); Multipart mp = (Multipart) message.getContent(); for(int i=0; i

RE: Composing Mailets

2004-04-07 Thread Steve Brewin
Leandro Rodrigo Saad Cruz wrote: > I found it : > > compMgr = > (ComponentManager)getMailetContext().getAttribute(Constants.AV > ALON_COMPONENT_MANAGER); > Hmm, if this works it probably should not be allowed! A Mailet is supposed to be portable across different Mailet implementations, of which Ja

RE: Composing Mailets

2004-04-07 Thread Noel J. Bergman
> Is there anyway I can get a handle to a ComponentManager > inside my Mailet ? Not portably. The solution currently used is not intended to be available in future releases. --- Noel - To unsubscribe, e-mail: [EMAIL PR

Re: Composing Mailets

2004-04-07 Thread Leandro Rodrigo Saad Cruz
I found it : compMgr = (ComponentManager)getMailetContext().getAttribute(Constants.AVALON_COMPONENT_MANAGER); On Wed, 2004-04-07 at 18:09, Leandro Rodrigo Saad Cruz wrote: > Hi all.. > Is there anyway I can get a handle to a ComponentManager inside my > Mailet ? -- Leandro Rodrigo Saad Cruz Int

Re: Composing Mailets

2004-04-07 Thread Leandro Rodrigo Saad Cruz
I found it : compMgr = (ComponentManager)getMailetContext().getAttribute(Constants.AVALON_COMPONENT_MANAGER); On Wed, 2004-04-07 at 18:09, Leandro Rodrigo Saad Cruz wrote: > Hi all.. > Is there anyway I can get a handle to a ComponentManager inside my > Mailet ? -- Leandro Rodrigo Saad Cruz Int

Composing Mailets

2004-04-07 Thread Leandro Rodrigo Saad Cruz
Hi all.. Is there anyway I can get a handle to a ComponentManager inside my Mailet ? -- Leandro Rodrigo Saad Cruz InterBusiness Tecnologia e Serviços IB- www.ibnetwork.com.br DB- www.digitalbrand.com.br OJB - db.apache.org/ojb XINGU - xingu.sf.net

RE: Bouncing Emails

2004-04-07 Thread Noel J. Bergman
"Effective immediately: AOL may no longer accept connections from IP addresses which have no reverse-DNS (PTR record) assigned." When I look up 69.10.148.35, I do get tekheaa1.memset.net. That is the IP you are sending from, yes? When you telnet, are you testing from that machine? FWIW, I s

Re: Bouncing Emails

2004-04-07 Thread sks
> > > [EMAIL PROTECTED] > > > Could not connect to SMTP host: mailin-04.mx.aol.com., port: 25 > > > Here is something I can't explain. I can telnet to the > > mailin-04.mx.aol.com address using microsoft's command > > line telnet utility (the basic one) and issue commands, > > but putty immediatel

Re: Bouncing Emails

2004-04-07 Thread sks
- Original Message - From: "bill" <[EMAIL PROTECTED]> To: "James Users List" <[EMAIL PROTECTED]> Sent: Wednesday, April 07, 2004 7:30 PM Subject: Re: Bouncing Emails > >[EMAIL PROTECTED] > >Here is something I can't explain. I can telnet to the > >mailin-04.mx.aol.com address using micro

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Noel J. Bergman
> Is that a bug? I thought an MX record had to reference a host record? That is what the RFCs say, but people get it wrong anyway, and it would be better to handle it than fail to deliver. James handled it until recently. --- Noel --

Re: Bouncing Emails

2004-04-07 Thread bill
[EMAIL PROTECTED] Here is something I can't explain. I can telnet to the mailin-04.mx.aol.com address using microsoft's command line telnet utility (the basic one) and issue commands, but putty immediately disconnects saying the other side closed the connection. are you sure putty is using port 25?

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread bill page
Is that a bug? I thought an MX record had to reference a host record? bill page > -Original Message- > From: Noel J. Bergman [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 07, 2004 12:56 PM > To: James Users List > Subject: RE: Redirecting all incomming emails to another adress mail

RE: Bouncing Emails

2004-04-07 Thread Noel J. Bergman
> > [EMAIL PROTECTED] > > Could not connect to SMTP host: mailin-04.mx.aol.com., port: 25 > Here is something I can't explain. I can telnet to the > mailin-04.mx.aol.com address using microsoft's command > line telnet utility (the basic one) and issue commands, > but putty immediately disconnects

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Noel J. Bergman
> I have found the last test build of James at the following url > and I will try what you have just suggested to me. Fair note: that is a test build. In fact, I recently found a bug in SMTP host resolution, for which I am in the process of testing a fix. The essence of the defect is that sites

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Emmanuel BLONVIA
Ok, I have found the last test build of James at the following url and I will try what you have just suggested to me.   The url : http://cvs.apache.org/builds/james-server/test-build/bin/   Thanks. "Noel J. Bergman" <[EMAIL PROTECTED]> wrote: > I would like to Forword (Redirect) all the incoming em

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Emmanuel BLONVIA
Ok, I have found the last test build of James at the following url and I will try what you have just suggested to me.   The url : http://cvs.apache.org/builds/james-server/test-build/bin/   Thanks. "Noel J. Bergman" <[EMAIL PROTECTED]> wrote: > I would like to Forword (Redirect) all the incoming em

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Emmanuel BLONVIA
What is "XMLVirtualUserTable" ? If it's a maillet or a matcher, I cannot find it in the maillet or  matcher API. Where can I find it ? Where can I find the current test build of James ? The version I have is james-2.1.3 and there is no occurence of the word "XMLVirtualUserTable" in my config.xml fi

RE: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Noel J. Bergman
> I would like to Forword (Redirect) all the incoming emails > (all mean whether the recipient is known to the mail server > or not) to an other email (exemple: [EMAIL PROTECTED]) address. There are several ways to handle this, but as of the current test build, the easiest way is with XMLVirtualU

Re: Bouncing Emails

2004-04-07 Thread sks
- Original Message - From: "Noel J. Bergman" <[EMAIL PROTECTED]> To: "James Users List" <[EMAIL PROTECTED]> Sent: Wednesday, April 07, 2004 4:13 PM Subject: RE: Bouncing Emails > > dnsreports.com is showing that reverse dns is set up on > > our server (tekheads.co.uk) > > And you look cl

Re: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Emmanuel BLONVIA
No problem, As soon as I find a solution I will get you informed.Lloyd Chambers <[EMAIL PROTECTED]> wrote: I want to do the same thing. Let me know if you figure out how to do it...On Apr 7, 2004, at 5:22 AM, Emmanuel BLONVIA wrote:> Hi,> I am a newbie in James using and here's my questions:>  > I

RE: Bouncing Emails

2004-04-07 Thread Noel J. Bergman
> dnsreports.com is showing that reverse dns is set up on > our server (tekheads.co.uk) And you look clear here, too: http://openrbl.org/ip/69/10/148/35.htm > I've tried changing the helloname element (and autodetect on and off). > [EMAIL PROTECTED] > Could not connect to SMTP host: mailin-04.mx

Re: Redirecting all incomming emails to another adress mail

2004-04-07 Thread Lloyd Chambers
I want to do the same thing. Let me know if you figure out how to do it... On Apr 7, 2004, at 5:22 AM, Emmanuel BLONVIA wrote: Hi, I am a newbie in James using and here's my questions:   I have succeeded in installing the emails server but now I would like to Forword (Redirect) all the incomin

Bouncing Emails

2004-04-07 Thread sks
Hi all, I'm getting bounced emails from certain mail servers. In particular aol addresses. I cannot for the life of me figure out what it is. dnsreports.com is showing that reverse dns is set up on our server (tekheads.co.uk), and I've tried changing the helloname element (and autodetect on and of

Redirecting all incomming emails to another adress mail

2004-04-07 Thread Emmanuel BLONVIA
Hi, I am a newbie in James using and here's my questions:   I have succeeded in installing the emails server but now I would like to Forword (Redirect) all the incoming emails (all mean whether the recipient is known to the mail server or not) to an other email (exemple: [EMAIL PROTECTED]) address

Mail to all users?

2004-04-07 Thread Salvo Cristaldi
There is a way to send a mail to all users? smime.p7s Description: S/MIME cryptographic signature