Re: Sending mail with JavaMail (UNCLASSIFIED)

2005-10-10 Thread Andrés Reyes

Samara, Fadi N Mr ACSIM/ASPEX wrote:

Classification:  UNCLASSIFIED 
Caveats: NONE


Are you including your JAR files your BUILD.XML classpath ? 


-Original Message-
From: David Tonhofer, m-plify S.A. [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 07, 2005 6:25 AM

To: Tomcat Users List
Subject: Re: Sending mail with JavaMail

Looks like the usual Tomcat classloader hierarchy SNAFU.

Try with ONLY in tomcat/common/lib.

--On Friday, October 07, 2005 12:04 PM +0200 Andrés Reyes [EMAIL PROTECTED]
wrote:

 

activation.jar and mail.jar are placed both in /common/lib, and in 
/WEB-INF/lib (and also in JAVA_HOME/lib)


¿Any other place?
;)

¿Maybe the error be in activation.jar itself? ( I want to believe that it
   


isn't  :( ).

No.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Classification:  UNCLASSIFIED 
Caveats: NONE



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 


I'm not compiling with Ant.

--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail (solved)

2005-10-10 Thread Andrés Reyes

David Tonhofer, m-plify S.A. wrote:

--On Friday, October 07, 2005 1:08 PM +0200 Andrés Reyes 
[EMAIL PROTECTED] wrote:



It doesn't work.




No way???

Back to basics: find all the places where mail.jar is in this
hierarchy of classloaders. Make sure there is only one.
Make sure that jaf.jar is at the same level or above it.


  Bootstrap: uses JVM classes  looks in $JAVA_HOME/jre/lib/ext
 |
  System:uses $CATALINA_HOME/bin/bootstrap.jar
 |   and  $JAVA_HOME/lib/tools.jar
 |
  Common:uses $CATALINA_HOME/common/lib
/  \ and $CATALINA_HOME/common/classes
   /\and $CATALINA_HOME/common/endorsed
  /  \jsp and servlet API jars are here
 /+-+
/   |
Catalina:  uses $CATALINA_HOME/server/lib   |
   and $CATALINA_HOME/server/classes|
catalina.jar is here  |
 Shared: uses 
$CATALINA_BASE/shared/lib
   / \and 
$CATALINA_BASE/shared/classes

  /   \
 Webapp1  Webapp2 ... --- 
**GREEDY** CLASSLOADERS





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



It is solved.
I put both (activation.jar and mail.jar) in $JAVA_HOME/jre/lib/ext and 
removed it from any other place, and it works.
Now, I get MessagingException: invalid provider, but I think it is 
about the mail server.

Thanks for your answers.


--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wish: add a header in mail subject

2005-10-08 Thread Kyle



Seak, Teng-Fong wrote:


   Sure, this can be used, but it's not always appropriate.  You see,
my address is at Yahoo and I receive mails in Thunderbird at home.  When
I'm not at home, I read mails in Yahoo mail, of course.  But then I
can't apply any filter (or could I?) because I need them all in the
Inbox so that Thunderbird could fetch them all later on when I'm back
home.  Well, you see the problem?  When I'm using Yahoo mail, if the
mailing-list messages contain the header, I could click on the subject
to sort them.  But now without the header, I've to read through all
message subject to see if there's anything important.

 


Surely Yahoo mail allows you to click on and sort by recipient too?


Set up a Tomcat-User contact in your Yahoo Address Book and all mail 
coming in from Tomcat should display that just like it does in 
Thunderbird, shouldn't it?


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wish: add a header in mail subject

2005-10-08 Thread Seak, Teng-Fong
Kyle wrote:

 Surely Yahoo mail allows you to click on and sort by recipient too?

Nope.

 Set up a Tomcat-User contact in your Yahoo Address Book and all mail
 coming in from Tomcat should display that just like it does in
 Thunderbird, shouldn't it?

And nope.  You're just guessing it should be, but it's not like
that.  And even if it's like this for Yahoo, the same problem exists for
other users.  Many other ML are using this, so it proves to be a good
solution.  So why not adopting it???

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Sending mail with JavaMail

2005-10-07 Thread Andrés Reyes
Hi. I need to send an email using a servlet (Tomcat 4.1 / Debian 3.1), 
but when I send the form from the jsp page that call the servlet, i get 
this exception:


javax.servlet.ServletException: Servlet execution threw an exception
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:222)
at 
org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:51)
(...)


*root cause*

java.lang.NoClassDefFoundError: javax/activation/DataSource at 
AltaCliente.doPost(AltaCliente.java:63) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)


This is the code of the servlet (which compiles with no problem):

-
import java.io.*;
...
...

try {
   Properties props = new Properties();
   props.put(mail.smtp.host, mail.***.***);
   Session s = Session.getInstance(props);
   MimeMessage message = new MimeMessage(s);

   InternetAddress from = new 
InternetAddress([EMAIL PROTECTED]);

   message.setFrom(from);
   InternetAddress to = new 
InternetAddress([EMAIL PROTECTED]);

   message.addRecipient(Message.RecipientType.TO, to);

   message.setSubject(Prueba de JavaMail.);
   message.setText(Hola desde JavaMail ( y Tomcat 
). );


   Store store = s.getStore(pop3);
   store.connect(mail..***, 
[EMAIL PROTECTED], areyes);


   Transport.send(message);
   store.close();
} catch ( MessagingException e ) {
   out.println(h1MessagingException:  + 
e.getMessage() + /h1);

...
...
-

The content of the /WEB-INF/web.xml is ok (only describe the servlet and 
others that I use), and the xml configuration for the context is:  


-
Context path=/* docBase=/usr/share/tomcat4/server/webapps/**
   debug=0 privileged=false
Resource name=mail/Session scope=Shareable type=javax.mail.Session/
 ResourceParams name=mail/Session
   parameter
 namemail.smtp.host/name
 valuemail../value
   /parameter
 /ResourceParams

/Context
-

Thanks in advance.

--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread David Tonhofer, m-plify S.A.

Did you add the Java Activation Famework jar to your WEB-INF/lib?

Check this out:

http://java.sun.com/products/javabeans/glasgow/jaf.html



--On Friday, October 07, 2005 9:33 AM +0200 Andrés Reyes [EMAIL PROTECTED] 
wrote:


Hi. I need to send an email using a servlet (Tomcat 4.1 / Debian 3.1), but when 
I send the form from the jsp page that call the servlet, i get this exception:

javax.servlet.ServletException: Servlet execution threw an exception
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:222)
at 
org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:51)
(...)


*root cause*

java.lang.NoClassDefFoundError: javax/activation/DataSource at 
AltaCliente.doPost(AltaCliente.java:63) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

This is the code of the servlet (which compiles with no problem):

-
import java.io.*;
...
...

try {
Properties props = new Properties();
props.put(mail.smtp.host, mail.***.***);
Session s = Session.getInstance(props);
MimeMessage message = new MimeMessage(s);

InternetAddress from = new InternetAddress([EMAIL 
PROTECTED]);
message.setFrom(from);
InternetAddress to = new InternetAddress([EMAIL 
PROTECTED]);
message.addRecipient(Message.RecipientType.TO, to);

message.setSubject(Prueba de JavaMail.);
message.setText(Hola desde JavaMail ( y Tomcat ). );

Store store = s.getStore(pop3);
store.connect(mail..***, [EMAIL PROTECTED], 
areyes);

Transport.send(message);
store.close();
 } catch ( MessagingException e ) {
out.println(h1MessagingException:  + e.getMessage() + 
/h1);
...
...
-

The content of the /WEB-INF/web.xml is ok (only describe the servlet and others 
that I use), and the xml configuration for the context is:
-
Context path=/* docBase=/usr/share/tomcat4/server/webapps/**
debug=0 privileged=false
 Resource name=mail/Session scope=Shareable type=javax.mail.Session/
  ResourceParams name=mail/Session
parameter
  namemail.smtp.host/name
  valuemail../value
/parameter
  /ResourceParams

/Context
-

Thanks in advance.

--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 * Fax : 957 76 42 49
***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







-- David Tonhofer

  M-PLIFY S.A.
  Resp. Informatique
  47, av. de la Liberté
  L-1931 Luxembourg
  Tel: +352 261846-52
  Fax: +352 261846-46
  Mob: +352 021-139031


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Andrés Reyes

David Tonhofer, m-plify S.A. wrote:


Did you add the Java Activation Famework jar to your WEB-INF/lib?

Check this out:

http://java.sun.com/products/javabeans/glasgow/jaf.html



Yes, activation.jar and mail.jar are placed both in /WEB-INF/lib. I 
forget to comment it. Sorry.


--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Andrés Reyes

The doPost exception is in the line 63 of the servlet, which is:

---
MimeMessage message = new MimeMessage(s);
---

--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Mikolaj Rydzewski

Andrés Reyes wrote:


Yes, activation.jar and mail.jar are placed both in /WEB-INF/lib.


Try to put them in tomcat's common/lib. It works for me.

--
Mikolaj Rydzewski  [EMAIL PROTECTED]
Becomo S.A.
tel. (12) 2927104



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255611:132100]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: Mikolaj Rydzewski [EMAIL PROTECTED]
 Received: 10/7/2005 10:14 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

 Andrés Reyes wrote:
 
  Yes, activation.jar and mail.jar are placed both in /WEB-INF/lib.
 
 Try to put them in tomcat's common/lib. It works for me.
 
 -- 
 Mikolaj Rydzewski  [EMAIL PROTECTED]
 Becomo S.A.
 tel. (12) 2927104
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread David Tonhofer, m-plify S.A.

Confirmation: I have them in common/lib, too. If the mail.jar is in common/lib,
then the jaf.jar must *also* be in common/lib.

--On Friday, October 07, 2005 11:15 AM +0200 Mikolaj Rydzewski [EMAIL 
PROTECTED] wrote:


Andrés Reyes wrote:


Yes, activation.jar and mail.jar are placed both in /WEB-INF/lib.


Try to put them in tomcat's common/lib. It works for me.

--
Mikolaj Rydzewski  [EMAIL PROTECTED]
Becomo S.A.
tel. (12) 2927104



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255621:132113]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: David Tonhofer, m-plify S.A. [EMAIL PROTECTED]
 Received: 10/7/2005 10:21 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

 Confirmation: I have them in common/lib, too. If the mail.jar is in 
 common/lib,
 then the jaf.jar must *also* be in common/lib.
 
 --On Friday, October 07, 2005 11:15 AM +0200 Mikolaj Rydzewski [EMAIL 
 PROTECTED] wrote:
 
  Andrés Reyes wrote:
 
  Yes, activation.jar and mail.jar are placed both in /WEB-INF/lib.
 
  Try to put them in tomcat's common/lib. It works for me.
 
  --
  Mikolaj Rydzewski  [EMAIL PROTECTED]
  Becomo S.A.
  tel. (12) 2927104
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Andrés Reyes
I have them both in /tomcat4/common/lib and included in the CLASSPATH 
and the servlet doesn't work (the same javax/activation/datasource 
exception in the line which MimeMessage is initialized).



David Tonhofer, m-plify S.A. wrote:

Confirmation: I have them in common/lib, too. If the mail.jar is in 
common/lib,

then the jaf.jar must *also* be in common/lib.

--On Friday, October 07, 2005 11:15 AM +0200 Mikolaj Rydzewski 
[EMAIL PROTECTED] wrote:



Andrés Reyes wrote:


Yes, activation.jar and mail.jar are placed both in /WEB-INF/lib.



Try to put them in tomcat's common/lib. It works for me.

--
Mikolaj Rydzewski  [EMAIL PROTECTED]
Becomo S.A.
tel. (12) 2927104




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Giuseppe Briotti
 ==
 Date: Fri, 07 Oct 2005 11:46:45 +0200
 From: =?ISO-8859-1?Q?Andr=E9s_Reyes?= [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail
 ==
 
 I have them both in /tomcat4/common/lib and included in the CLASSPATH
 and the servlet doesn't work (the same javax/activation/datasource
 exception in the line which MimeMessage is initialized).
 

I think that another jar is required to send the mail. It is activation.jar,
check for it...

G.

--

Giuseppe Briotti
[EMAIL PROTECTED]

Alme Sol, curru nitido diem qui 
promis et celas aliusque et idem 
nasceris, possis nihil urbe Roma 
visere maius.
(Orazio)





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255646:132140]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: Giuseppe Briotti [EMAIL PROTECTED]
 Received: 10/7/2005 10:58 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

  ==
  Date: Fri, 07 Oct 2005 11:46:45 +0200
  From: =?ISO-8859-1?Q?Andr=E9s_Reyes?= [EMAIL PROTECTED]
  To: Tomcat Users List tomcat-user@jakarta.apache.org
  Subject: Re: Sending mail with JavaMail
  ==
  
  I have them both in /tomcat4/common/lib and included in the CLASSPATH
  and the servlet doesn't work (the same javax/activation/datasource
  exception in the line which MimeMessage is initialized).
  
 
 I think that another jar is required to send the mail. It is activation.jar,
 check for it...
 
 G.
 
 --
 
 Giuseppe Briotti
 [EMAIL PROTECTED]
 
 Alme Sol, curru nitido diem qui 
 promis et celas aliusque et idem 
 nasceris, possis nihil urbe Roma 
 visere maius.
 (Orazio)
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Andrés Reyes
activation.jar and mail.jar are placed both in /common/lib, and in 
/WEB-INF/lib (and also in JAVA_HOME/lib)


¿Any other place?
;)

¿Maybe the error be in activation.jar itself? ( I want to believe that 
it isn't  :( ).


Thanks for your answers.

Giuseppe Briotti wrote:


==
Date: Fri, 07 Oct 2005 11:46:45 +0200
From: =?ISO-8859-1?Q?Andr=E9s_Reyes?= [EMAIL PROTECTED]
To: Tomcat Users List tomcat-user@jakarta.apache.org
Subject: Re: Sending mail with JavaMail
==

I have them both in /tomcat4/common/lib and included in the CLASSPATH
and the servlet doesn't work (the same javax/activation/datasource
exception in the line which MimeMessage is initialized).

   



I think that another jar is required to send the mail. It is activation.jar,
check for it...

G.

--

Giuseppe Briotti
[EMAIL PROTECTED]

Alme Sol, curru nitido diem qui 
promis et celas aliusque et idem 
nasceris, possis nihil urbe Roma 
visere maius.

   (Orazio)





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 




--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255649:132143]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: Andrés Reyes [EMAIL PROTECTED]
 Received: 10/7/2005 11:03 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

 activation.jar and mail.jar are placed both in /common/lib, and in 
 /WEB-INF/lib (and also in JAVA_HOME/lib)
 
 ¿Any other place?
 ;)
 
 ¿Maybe the error be in activation.jar itself? ( I want to believe that 
 it isn't  :( ).
 
 Thanks for your answers.
 
 Giuseppe Briotti wrote:
 
 ==
 Date: Fri, 07 Oct 2005 11:46:45 +0200
 From: =?ISO-8859-1?Q?Andr=E9s_Reyes?= [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail
 ==
 
 I have them both in /tomcat4/common/lib and included in the CLASSPATH
 and the servlet doesn't work (the same javax/activation/datasource
 exception in the line which MimeMessage is initialized).
 
 
 
 
 I think that another jar is required to send the mail. It is activation.jar,
 check for it...
 
 G.
 
 --
 
 Giuseppe Briotti
 [EMAIL PROTECTED]
 
 Alme Sol, curru nitido diem qui 
 promis et celas aliusque et idem 
 nasceris, possis nihil urbe Roma 
 visere maius.
 (Orazio)
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
   
 
 
 
 -- 
 /***
 * Andrés Reyes ( [EMAIL PROTECTED] )
 * TCOR Desarrollos y Sistemas, S.L.
 * Teléfono: 957 76 42 48 
 * Fax : 957 76 42 49
 ***/
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Leon Rosenberg
On 10/7/05, Andrés Reyes [EMAIL PROTECTED] wrote:
 activation.jar and mail.jar are placed both in /common/lib, and in
 /WEB-INF/lib (and also in JAVA_HOME/lib)

 ¿Any other place?
 ;)

 ¿Maybe the error be in activation.jar itself? ( I want to believe that
 it isn't  :( ).


Hmm... unlikely... but check whether the activation.jar you are using
to compile your classes is the same as the one you are using in
tomcat.

are there other dependencies, that you could be missing? xmlparser or
something?

Btw, common/lib isn't my favorite place to place jars, common/endorsed
is better; if you have an older version of the activation.jar in
common/endorsed, you can place as many activations.jar in the
common/lib as you like, they will be ignored...

regards
leon

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255655:132155]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: Leon Rosenberg [EMAIL PROTECTED]
 Received: 10/7/2005 11:17 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

 On 10/7/05, Andrés Reyes [EMAIL PROTECTED] wrote:
  activation.jar and mail.jar are placed both in /common/lib, and in
  /WEB-INF/lib (and also in JAVA_HOME/lib)
 
  ¿Any other place?
  ;)
 
  ¿Maybe the error be in activation.jar itself? ( I want to believe that
  it isn't  :( ).
 
 
 Hmm... unlikely... but check whether the activation.jar you are using
 to compile your classes is the same as the one you are using in
 tomcat.
 
 are there other dependencies, that you could be missing? xmlparser or
 something?
 
 Btw, common/lib isn't my favorite place to place jars, common/endorsed
 is better; if you have an older version of the activation.jar in
 common/endorsed, you can place as many activations.jar in the
 common/lib as you like, they will be ignored...
 
 regards
 leon
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread David Tonhofer, m-plify S.A.

Looks like the usual Tomcat classloader hierarchy SNAFU.

Try with ONLY in tomcat/common/lib.

--On Friday, October 07, 2005 12:04 PM +0200 Andrés Reyes [EMAIL PROTECTED] 
wrote:


activation.jar and mail.jar are placed both in /common/lib, and in /WEB-INF/lib 
(and also in JAVA_HOME/lib)

¿Any other place?
;)

¿Maybe the error be in activation.jar itself? ( I want to believe that it isn't 
 :( ).


No.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255658:132158]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: David Tonhofer, m-plify S.A. [EMAIL PROTECTED]
 Received: 10/7/2005 11:23 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

 Looks like the usual Tomcat classloader hierarchy SNAFU.
 
 Try with ONLY in tomcat/common/lib.
 
 --On Friday, October 07, 2005 12:04 PM +0200 Andrés Reyes [EMAIL PROTECTED] 
 wrote:
 
  activation.jar and mail.jar are placed both in /common/lib, and in 
  /WEB-INF/lib (and also in JAVA_HOME/lib)
 
  ¿Any other place?
  ;)
 
  ¿Maybe the error be in activation.jar itself? ( I want to believe that it 
  isn't  :( ).
 
 No.
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Giuseppe Briotti
 ==
 Date: Fri, 07 Oct 2005 12:04:37 +0200
 From: =?ISO-8859-1?Q?Andr=E9s_Reyes?= [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail
 ==
 
 activation.jar and mail.jar are placed both in /common/lib, and 
 in
 /WEB-INF/lib (and also in JAVA_HOME/lib)
 
 ¿Any other place?
 ;)

shared\lib? but all the jars must be placed in the same dir, I think...

G.

--

Giuseppe Briotti
[EMAIL PROTECTED]

Alme Sol, curru nitido diem qui 
promis et celas aliusque et idem 
nasceris, possis nihil urbe Roma 
visere maius.
(Orazio)





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255664:132162]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: Giuseppe Briotti [EMAIL PROTECTED]
 Received: 10/7/2005 11:31 AM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

  ==
  Date: Fri, 07 Oct 2005 12:04:37 +0200
  From: =?ISO-8859-1?Q?Andr=E9s_Reyes?= [EMAIL PROTECTED]
  To: Tomcat Users List tomcat-user@jakarta.apache.org
  Subject: Re: Sending mail with JavaMail
  ==
  
  activation.jar and mail.jar are placed both in /common/lib, and 
  in
  /WEB-INF/lib (and also in JAVA_HOME/lib)
  
  ¿Any other place?
  ;)
 
 shared\lib? but all the jars must be placed in the same dir, I think...
 
 G.
 
 --
 
 Giuseppe Briotti
 [EMAIL PROTECTED]
 
 Alme Sol, curru nitido diem qui 
 promis et celas aliusque et idem 
 nasceris, possis nihil urbe Roma 
 visere maius.
 (Orazio)
 
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread Andrés Reyes

It doesn't work.

David Tonhofer, m-plify S.A. wrote:


Looks like the usual Tomcat classloader hierarchy SNAFU.

Try with ONLY in tomcat/common/lib.

--On Friday, October 07, 2005 12:04 PM +0200 Andrés Reyes 
[EMAIL PROTECTED] wrote:


activation.jar and mail.jar are placed both in /common/lib, and in 
/WEB-INF/lib (and also in JAVA_HOME/lib)


¿Any other place?
;)

¿Maybe the error be in activation.jar itself? ( I want to believe 
that it isn't  :( ).



No.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
/***
* Andrés Reyes ( [EMAIL PROTECTED] )
* TCOR Desarrollos y Sistemas, S.L.
* Teléfono: 957 76 42 48 
* Fax : 957 76 42 49

***/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail

2005-10-07 Thread David Tonhofer, m-plify S.A.

--On Friday, October 07, 2005 1:08 PM +0200 Andrés Reyes [EMAIL PROTECTED] 
wrote:


It doesn't work.



No way???

Back to basics: find all the places where mail.jar is in this
hierarchy of classloaders. Make sure there is only one.
Make sure that jaf.jar is at the same level or above it.


  Bootstrap: uses JVM classes  looks in $JAVA_HOME/jre/lib/ext
 |
  System:uses $CATALINA_HOME/bin/bootstrap.jar
 |   and  $JAVA_HOME/lib/tools.jar
 |
  Common:uses $CATALINA_HOME/common/lib
/  \ and $CATALINA_HOME/common/classes
   /\and $CATALINA_HOME/common/endorsed
  /  \jsp and servlet API jars are here
 /+-+
/   |
Catalina:  uses $CATALINA_HOME/server/lib   |
   and $CATALINA_HOME/server/classes|
catalina.jar is here  |
 Shared: uses 
$CATALINA_BASE/shared/lib
   / \and 
$CATALINA_BASE/shared/classes
  /   \
 Webapp1  Webapp2 ... --- **GREEDY** 
CLASSLOADERS




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Sending mail with JavaMail [255704:132206]

2005-10-07 Thread RTE - Meridian Club
Many thanks for your email. This is an automated response acknowledging receipt.

Please be advised that Badge mailing commences beginning of October 2005.

Should your message require a response we will respond shortly.

Regards
Meridian Club


 -Original Message-
 From: David Tonhofer, m-plify S.A. [EMAIL PROTECTED]
 Received: 10/7/2005 1:24 PM
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Subject: Re: Sending mail with JavaMail

 --On Friday, October 07, 2005 1:08 PM +0200 Andrés Reyes [EMAIL PROTECTED] 
 wrote:
 
  It doesn't work.
 
 
 No way???
 
 Back to basics: find all the places where mail.jar is in this
 hierarchy of classloaders. Make sure there is only one.
 Make sure that jaf.jar is at the same level or above it.
 
 
Bootstrap: uses JVM classes  looks in $JAVA_HOME/jre/lib/ext
   |
System:uses $CATALINA_HOME/bin/bootstrap.jar
   |   and  $JAVA_HOME/lib/tools.jar
   |
Common:uses $CATALINA_HOME/common/lib
  /  \ and $CATALINA_HOME/common/classes
 /\and $CATALINA_HOME/common/endorsed
/  \jsp and servlet API jars are here
   /+-+
  /   |
  Catalina:  uses $CATALINA_HOME/server/lib   |
 and $CATALINA_HOME/server/classes|
  catalina.jar is here  |
   Shared: uses 
 $CATALINA_BASE/shared/lib
 / \and 
 $CATALINA_BASE/shared/classes
/   \
   Webapp1  Webapp2 ... --- 
 **GREEDY** CLASSLOADERS
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
Meridian Club
Unit 5, Caxton Centre
Porters Wood
St Albans
Herts
UNITED KINGDOM
AL3 6XT

Tel: +44 1727 738855
Fax: +44 1700 578955
email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Sending mail with JavaMail (UNCLASSIFIED)

2005-10-07 Thread Samara, Fadi N Mr ACSIM/ASPEX
Classification:  UNCLASSIFIED 
Caveats: NONE

Are you including your JAR files your BUILD.XML classpath ? 

-Original Message-
From: David Tonhofer, m-plify S.A. [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 07, 2005 6:25 AM
To: Tomcat Users List
Subject: Re: Sending mail with JavaMail

Looks like the usual Tomcat classloader hierarchy SNAFU.

Try with ONLY in tomcat/common/lib.

--On Friday, October 07, 2005 12:04 PM +0200 Andrés Reyes [EMAIL PROTECTED]
wrote:

 activation.jar and mail.jar are placed both in /common/lib, and in 
 /WEB-INF/lib (and also in JAVA_HOME/lib)

 ¿Any other place?
 ;)

 ¿Maybe the error be in activation.jar itself? ( I want to believe that it
isn't  :( ).

No.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Classification:  UNCLASSIFIED 
Caveats: NONE


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wish: add a header in mail subject

2005-10-07 Thread Seak, Teng-Fong
Sure, this can be used, but it's not always appropriate.  You see,
my address is at Yahoo and I receive mails in Thunderbird at home.  When
I'm not at home, I read mails in Yahoo mail, of course.  But then I
can't apply any filter (or could I?) because I need them all in the
Inbox so that Thunderbird could fetch them all later on when I'm back
home.  Well, you see the problem?  When I'm using Yahoo mail, if the
mailing-list messages contain the header, I could click on the subject
to sort them.  But now without the header, I've to read through all
message subject to see if there's anything important.

Quite many other mailing-lists add this header, why don't Tomcat? 
Is it really hard to do so?

Jon Wingfield wrote:

 If what you are after is a way to filter messages then use a good
 email client and filter on the message header List-Id. For this list
 it is set to:

 List-Id: Tomcat Users List tomcat-user.jakarta.apache.org


 Seak, Teng-Fong wrote:

It would be nice if this mailing-list could add a header to mails,
 something like [TC-user].  The announcement has the [ANN] header, so
 I think it won't be a problem for this to have a header.

Regards,

Seak



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Wish: add a header in mail subject

2005-10-06 Thread Seak, Teng-Fong
   It would be nice if this mailing-list could add a header to mails, 
something like [TC-user].  The announcement has the [ANN] header, so I 
think it won't be a problem for this to have a header.


   Regards,

   Seak


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wish: add a header in mail subject

2005-10-06 Thread Jon Wingfield
If what you are after is a way to filter messages then use a good email 
client and filter on the message header List-Id. For this list it is 
set to:


List-Id: Tomcat Users List tomcat-user.jakarta.apache.org



Seak, Teng-Fong wrote:
   It would be nice if this mailing-list could add a header to mails, 
something like [TC-user].  The announcement has the [ANN] header, so I 
think it won't be a problem for this to have a header.


   Regards,

   Seak


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Unable to start context - Mail session not bound...

2005-09-20 Thread Darryl L. Pierce
I have a context which includes a mail session. However, when I startup 
Tomcat (version 5.0.28 on Windows XP) and it loads the context, I get an 
error message saying:


11:09:53,556 ERROR ContextLoader:177 - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'mailSession' defined in ServletContext resource 
[/WEB-INF/classes/cares-batch-context.xml]: Initialization of bean 
failed; nested exception is javax.naming.NameNotFoundException: Name 
CARESMailSession

 is not bound in this Context
javax.naming.NameNotFoundException: Name CARESMailSession
 is not bound in this Context

However, the context file for this webapp does indeed define a resource 
named CARESMailSession:


Context displayName=CARES Batch docBase=cares-batch 
path=/cares-batch workDir=work\Catalina\localhost\cares-batch

  Resource name=CARESMailSession type=javax.mail.Session/
  ResourceParams name=CARESMailSession
parameter
  namemail.smtp.host/name
  valuemail.akc.org/value
/parameter
  /ResourceParams
/Context

and the Spring bean is using the proper name:

	bean id=mailSession 
class=org.springframework.jndi.JndiObjectFactoryBean

property name=jndiName
valuejava:comp/env/mail/CARESMailSession
/value
/property
/bean


Any help? This has had me down for two days now... :(
--
Darryl L. Pierce [EMAIL PROTECTED]
Homepage: http://mcpierce.multiply.com/
By doubting we come to inquiry, through inquiry truth. - Peter Abelard

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-09-02 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-09-02 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-09-02 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-09-02 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



re: MAIL FAILURE

2005-08-24 Thread Larry Meadors
Come on, do we have a list admin who can remove this address?

Larry

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Please kill the MAIL FAILURE user

2005-08-24 Thread Larry Meadors
Do we have a list admin who can do this?

Larry

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Please kill the MAIL FAILURE user

2005-08-24 Thread Parsons Technical Services

Yes there is one or more but they are not always online.

Doug

PS: As to the subject line, if I had his/her home address it would be very 
tempting.



- Original Message - 
From: Larry Meadors [EMAIL PROTECTED]

To: Tomcat Users List tomcat-user@jakarta.apache.org
Sent: Wednesday, August 24, 2005 10:44 AM
Subject: Please kill the MAIL FAILURE user


Do we have a list admin who can do this?

Larry

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-24 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-23 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-23 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-23 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-23 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MAIL FAILURE

2005-08-23 Thread no-reply
*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

The email you sent was not delivered to the desired recipient because
it was blocked/filtered for a specific reason, which may include:

  - reply to [EMAIL PROTECTED]
  - mail undeliverable because mailbox is not existant (or removed)
  - unsolicited email

If you  wish to contact Aaron Ardiri ([EMAIL PROTECTED]),  you may use 
the following service to send an instant message direct to his mobile
where you can put  a request for contact and an  attempt will be made 
to return your contact.

  http://www.contactme.biz/

Thankyou.

*
   THIS EMAIL IS AUTOGENERATED - DO NOT REPLY TO
*

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: A web based e-mail client

2005-08-16 Thread Arun Prasad R
hi there,
i happen to see this. http://demo.zohovo.com a web based tool for office


On 8/14/05, Robert F Hall [EMAIL PROTECTED] wrote:
 
 Evgeny,
 
 Thanks for the clarification. I've written several java apps that run
 in Tomcat, with browser based front ends and never thought of them
 as java client apps...
 
 You may have already done this, but if not, I suggest you google 'java
 web mail'.
 
 -Robert
 
 Evgeny Gesin wrote:
 
 I need a Java web apps client, not server (I have a
 mail server), similar to Yahoo/Hotmail, running under
 Tomcat which allows to read/send e-mails when I'm out
 of office.
 
 I found a few Java web based front-ends, but I will be
 glad to hear what others recommend. So, its a
 Tomcat/Java relative too :)
 
 Evgeny Gesin
 
 
 --- Robert F Hall [EMAIL PROTECTED] wrote:
 
 
 
 Evgeny,
 
 Can't help you on the experience side. But asking
 the right question
 will help you get the right answers. You are
 looking for folks to share
 their experiences/opinions of java mail *servers*,
 right?
 
 - Robert
 
 Evgeny Gesin wrote:
 
 
 
 Robert,
 
 I wanted to hear what others recommend based on
 
 
 their
 
 
 experiences. I need opinions.
 
 Evgeny Gesin
 
 
 --- Robert F Hall [EMAIL PROTECTED] wrote:
 
 
 
 
 
 Evgeny,
 
 Google 'java mail server', I'm guessing yuou will
 find what you need.
 
 - Robert
 
 Evgeny Gesin wrote:
 
 
 
 
 
 Hi Litty Preeth.
 
 CraftMail looks like a standalone application. I
 
 
 
 
 need
 
 
 
 
 a web based client, like Yahoo/Hotmail, which
 
 
 runs
 
 
 
 
 
 
 on
 
 
 
 
 the server. I will access that web client using a
 regular web browser.
 
 Thanks!
 
 Evgeny Gesin
 
 
 
 --- Litty Preeth [EMAIL PROTECTED] wrote:
 
 
 
 
 
 
 
 Hi Evgeny Gesin
 
 There is a java mail client given by freebeans.
 The url is :
 
 
 
 
 
 
 
 
 http://www2s.biglobe.ne.jp/~dat/java/applications/CraftMail/index_en.html
 
 
 
 
 
 
 
 
 
 
 With regards,
 Litty Preeth
 
 --- Evgeny Gesin [EMAIL PROTECTED] wrote:
 
 
 
 
 
 
 
 I run QMail server and need a web based client
 written
 in Java. I will access that client from
 
 
 anywhere
 
 
 like
 Yahoo mail.
 
 There is a SquirrelMail/Courier-IMAP which use
 
 
 
 
 
 
 PHP,
 
 
 
 
 
 
 but I need a Java-based web client.
 
 Any pointers will be helpful
 
 Evgeny Gesin
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 



Re: A web based e-mail client

2005-08-14 Thread Evgeny Gesin
Robert,

I wanted to hear what others recommend based on their
experiences. I need opinions.

Evgeny Gesin


--- Robert F Hall [EMAIL PROTECTED] wrote:

 Evgeny,
 
 Google 'java mail server', I'm guessing yuou will
 find what you need.
 
 - Robert
 
 Evgeny Gesin wrote:
 
 Hi Litty Preeth.
 
 CraftMail looks like a standalone application. I
 need
 a web based client, like Yahoo/Hotmail, which runs
 on
 the server. I will access that web client using a
 regular web browser.
 
 Thanks!
 
 Evgeny Gesin
 
 
 
 --- Litty Preeth [EMAIL PROTECTED] wrote:
 
   
 
 Hi Evgeny Gesin
 
 There is a java mail client given by freebeans.
 The url is :
 
 
 

http://www2s.biglobe.ne.jp/~dat/java/applications/CraftMail/index_en.html
   
 
 With regards,
 Litty Preeth
 
 --- Evgeny Gesin [EMAIL PROTECTED] wrote:
 
 
 
 I run QMail server and need a web based client
 written
 in Java. I will access that client from anywhere
 like
 Yahoo mail.
 
 There is a SquirrelMail/Courier-IMAP which use
   
 
 PHP,
 
 
 but I need a Java-based web client.
 
 Any pointers will be helpful
 
 Evgeny Gesin
 
 




__ 
Yahoo! Mail 
Stay connected, organized, and protected. Take the tour: 
http://tour.mail.yahoo.com/mailtour.html 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: A web based e-mail client

2005-08-14 Thread Robert F Hall

Evgeny,

Can't help you on the experience side.  But asking the right question
will help you get the right answers.   You are looking for folks to share
their experiences/opinions of java mail *servers*, right?

- Robert

Evgeny Gesin wrote:


Robert,

I wanted to hear what others recommend based on their
experiences. I need opinions.

Evgeny Gesin


--- Robert F Hall [EMAIL PROTECTED] wrote:

 


Evgeny,

Google 'java mail server', I'm guessing yuou will
find what you need.

- Robert

Evgeny Gesin wrote:

   


Hi Litty Preeth.

CraftMail looks like a standalone application. I
 


need
   


a web based client, like Yahoo/Hotmail, which runs
 


on
   


the server. I will access that web client using a
regular web browser.

Thanks!

Evgeny Gesin



--- Litty Preeth [EMAIL PROTECTED] wrote:



 


Hi Evgeny Gesin

There is a java mail client given by freebeans.
The url is :

  

   


http://www2s.biglobe.ne.jp/~dat/java/applications/CraftMail/index_en.html
   




 


With regards,
Litty Preeth

--- Evgeny Gesin [EMAIL PROTECTED] wrote:

  

   


I run QMail server and need a web based client
written
in Java. I will access that client from anywhere
like
Yahoo mail.

There is a SquirrelMail/Courier-IMAP which use


 


PHP,
  

   


but I need a Java-based web client.

Any pointers will be helpful

Evgeny Gesin

 






__ 
Yahoo! Mail 
Stay connected, organized, and protected. Take the tour: 
http://tour.mail.yahoo.com/mailtour.html 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 





  1   2   3   4   5   6   7   8   9   10   >