4.1.18+jk2+apache 2.0.44

2003-02-27 Thread [EMAIL PROTECTED]
Hello world ;)
I am using tomcat 4.1.18, apache 2.0.44, together 
communicating using aj3 protocol / jk2 on Red hat 8.0.

For each request to a service, I get these messages:

(catalina.out)
Feb 27, 2003 9:15:03 PM org.apache.jk.common.ChannelSocket 
processConnection
INFO: server has been restarted or reset this connection

(apache error_log)
[Thu Feb 27 21:18:53 2003] [error] mod_jk child workerEnv in 
error state 3

here is my workers2.properties:
-
[shm]
file=${serverRoot}/logs/shm.file
size=1048576

[channel.socket:localhost:8009]
info=Ajp13 forwarding over socket
host=127.0.0.1
port=8009

[ajp13:localhost:8009]
channel=channel.socket:localhost:8009

[uri:/servlet/*]
worker=ajp13:localhost:8009
--

and this is the server.xml (the Connector) :
--

-

Every debug option in the server.xml is set to 0, I should not 
get anything like 'INFO' inside catalina.out.
I couldn't get information on these issues from the net, and I 
was wondering if someone had faced the same problem. I would 
really appreciate if someone could provide me some answers.

TIA

Anthony








Accédez au courrier électronique de La Poste : www.laposte.net ; 
3615 LAPOSTENET (0,13 €/mn) ; tél : 08 92 68 13 50 (0,34€/mn)"




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



userDatabase / classloader question

2003-03-12 Thread [EMAIL PROTECTED]
hi all,

trying to reference the userDatabase from my application, but get a Class
CastException. Here is my code:

javax.naming.Context ctx = new InitialContext();
Object ud = ctx.lookup("java:comp/env/userDatabase");
//System.out.println(ud.getClass().getClassLoader());
UserDatabase usrd = (UserDatabase) ud;



and i have the  set up in server.xml.


i got a ClassCastException when trying to cast it to UserDatabase, and
apparently that's because it was loaded from the Catalina classloader and
is not visible from my application classloader.

so just wondering if there's something else i need to do before i can use
the UserDatabase, or is it not meant to be used?

thanks

andrew


mail2web - Check your email from the web at
http://mail2web.com/ .



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



DBCP + Oracle + Blob

2003-03-28 Thread [EMAIL PROTECTED]
Hi,
I have some problems with DBCP in Tomcat 4.1.24 to save something in a BLOB field in 
Oracle.
Usually I write this code 

String ls_sql_I = "select blobField from table1";
Statement stmt = myConnection.getStatement();
ResultSet rs = prst.executeQuery();
rs.next();

BLOB blob = ((OracleResultSet)rs).getBLOB(1);
FileInputStream inStream = new FileInputStream(file);
OutputStream outStream = blob.getBinaryOutputStream();

int size = blob.getBufferSize();
byte[] buffer = new byte[size];
int length = -1;
while ((length = inStream.read(buffer)) != -1)
 outStream.write(buffer, 0, length);

inStream.close();
outStream.close();

but I catch this exception:

java.lang.ClassCastException: org.apache.commons.dbcp.DelegatingResultSet

It's possible to save a blob field in Oracle without OracleResultSet?
Or it's possible to configure Tomcat to use a Oracle DataSource, and not DBCP?

Many thanks in advance,
Marco

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



Re: DBCP + Oracle + Blob

2003-03-28 Thread [EMAIL PROTECTED]
The method getDelegate() is not present in the current release of commons-dbcp; i find 
only the apidocs of the version 2.0, but not the code

Marco


>I think this is more for commons-user but heres a try:
>
>((DelegatingResultSet)rs).getDelegate() should give you the underlying 
>ResultSet.
>
>
>-Tim
>
>[EMAIL PROTECTED] wrote:
>> Hi,
>> I have some problems with DBCP in Tomcat 4.1.24 to save something in a BLOB field 
>> in Oracle.
>> Usually I write this code 
>> 
>> String ls_sql_I = "select blobField from table1";
>> Statement stmt = myConnection.getStatement();
>> ResultSet rs = prst.executeQuery();
>> rs.next();
>> 
>> BLOB blob = ((OracleResultSet)rs).getBLOB(1);
>> FileInputStream inStream = new FileInputStream(file);
>> OutputStream outStream = blob.getBinaryOutputStream();
>> 
>> int size = blob.getBufferSize();
>> byte[] buffer = new byte[size];
>> int length = -1;
>> while ((length = inStream.read(buffer)) != -1)
>>  outStream.write(buffer, 0, length);
>> 
>> inStream.close();
>> outStream.close();
>> 
>> but I catch this exception:
>> 
>> java.lang.ClassCastException: org.apache.commons.dbcp.DelegatingResultSet
>> 
>> It's possible to save a blob field in Oracle without OracleResultSet?
>> Or it's possible to configure Tomcat to use a Oracle DataSource, and not DBCP?
>> 
>> Many thanks in advance,
>> Marco
>> 
>> ---------
>> 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]

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



Taglib on tomcat 4.1.24

2003-04-01 Thread [EMAIL PROTECTED]
Hi everyone,

I wrote some taglibs which are running on tomcat 3.3, and use 
a body content.
For example, there is one for formatting buttons position on 
the page in functions of their type (action on the form or 
link). The idea of it is to create a dynamic spearation 
between the two types of buttons and let the actions ones 
allways at the same palce in tha page. It work with a main tag 
call "buttons" with a body content and nested tags "button" 
which update "buttons" property during the compilation (and 
particularly a boolean variable used for designed the first 
action button).
So each button increase a value into button for giving the 
number total of buttons involved in the print out and when the 
first button action is found, the boolean variable is set to 
true (instanced at false a the declaration), then at the end 
of the button tag, it format the page in function of the 
updated values.
This tag works perfectly, but I choose to work with Struts 
1.1, so i have to migrate to tomcat 4.1.24. 
But now, my tag works when I call the jsp at the first time, 
but if I refresh it (or I call back it) it ignores the boolean 
variable like if it was not reinitialised at the running of 
the tag! So I am a bit confused about the way to fix it, 
perhaps the new tomcat manager keep to much things in cache... 
So if you have any ideas, I can be very useful!!!
If you had not understood all my explanation (because of my 
English) do not hesitate to ask me more precision.

Cheers for the help
Pierre


Accédez au courrier électronique de La Poste : www.laposte.net ; 
3615 LAPOSTENET (0,34€/mn) ; tél : 08 92 68 13 50 (0,34€/mn)"




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



Taglib on tomcat 4.1.24

2003-04-03 Thread [EMAIL PROTECTED]
Thanks for the help, my tag works now but I have another 
problem (probably dues to the same bug).
I use a tag for printing table, so one for the table 
declaration called "table" some nested ones for the columns 
properties called "column".
When a column one is running, it is added to a list of columns 
placed into “table” parameters.
But the trouble occurs when there are more than 2 cols. Form 
the second col to the last one; the properties are equal to 
the last col decelerated.
In the table doStartTag(), I instance the list and the number 
of columns (to 0). And the columns tag access to this 
parameter by the setColumns(this) method.
For trying to debug it, in this function, I just print the 
name of the cols, which will be added, and the name of the 
previous col stored in the list.
So the new col name is ok but the previous on is assigned to 
the last one every time. So I think is due to the bug 
described in the document "Similarly, Iterators and 
Enumarations should not be extracted in a setXXX() method.  
setXXX() methods are meant to be "idempotent";  write them so 
that they can be called multiple times with no side effects 
(and, conversely, only once instead of multiple times if the 
argument passed is the same)." but I do not have any idea to 
fix it.

Thanks again
Cheers 
Pierre




> perhaps the new tomcat manager keep to much things in 
cache... 

Absolutely. Tag instances may be re-used. This means you can 
only do setup for your tag at the last minute in doStartTag().

See

http://www.mail-archive.com/taglibs-
[EMAIL PROTECTED]/msg00846.html

for more info, explained more articulately.

Cheers, Simon

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



Accédez au courrier électronique de La Poste : www.laposte.net ; 
3615 LAPOSTENET (0,34€/mn) ; tél : 08 92 68 13 50 (0,34€/mn)"




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



jk2 isapi filter crashes iis services afterter several failed requests?

2003-05-31 Thread [EMAIL PROTECTED]
I though I was pretty thorough in providing information about my problem,
environment, what I've tried, etc.

But I have not gotten any responses, not even a suggestion to try another
mailing list.  I try to answer questions if I can, or at least point people
in the right direction.

So if I'm still not providing enough information about this issue, please
let me know.  Otherwise, I'm baffled, because I've seen REALLY
elementary/vague/many-times-answered questions being responded to, but my
detailed post goes ignored.

Please reference my pervious post for the actual issue; any help is
appreciated.

Thank you,

-Sasha


mail2web - Check your email from the web at
http://mail2web.com/ .



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



Roles

2003-07-17 Thread [EMAIL PROTECTED]
Hi everyone,

 I have multiple virtual hosts and a specifc manager app for each, is it
possible to define different users for each manager ?

Thank you



RE: How to get the web application or Tomcat path inside a class (KMM37443975V57528L0KM)

2003-02-07 Thread [EMAIL PROTECTED]
Dear Francesa Etienne,

We are unable to determine the nature of your inquiry from the information you have 
provided. Could you kindly resubmit your concern? Every attempt will be made to assist 
you as shortly as possible.


Why wait?  Resolve your customer service questions on-line at our Account Maintenance 
web site.  To add email mailboxes, change passwords, or update your credit card 
information, go to:

http://myaccount.earthlink.net

We also offer a wide variety of online self help options for technical issues such as 
setting up your service, troubleshooting problems, or just using the Internet and 
email, you can access clear, step-by-step instructions at your Support Center:

http://support.earthlink.net


Jon E.
Electronic  Support
EarthLink, Inc.
Why Wait? Move to EarthLink.
CSR ID#: 1286
Case ID 20891569



Original Message Follows:
-

What about creating one more singleton object that is constructed with
the ServletContext, and then all of the other objects use that one to
access the file?  It's probably a good idea to encapsulate access to the
file anyway.
--
Tim Moore / Blackboard Inc. / Software Engineer
1899 L Street, NW / 5th Floor / Washington, DC 20036
Phone 202-463-4860 ext. 258 / Fax 202-463-4863
> -Original Message-
> From: Etienne [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 07, 2003 5:28 PM
> To: 'Tomcat Users List'
> Subject: RE: How to get the web application or Tomcat path
> inside a class
>
>
> It is because the applications work with a lot of "interne"
> singleton objects (one instance for all the application).
> Like a ConnectionPool or a ApplicationScopeUtil that do not
> need to know the actual request, of servlet context: this
> would add a unused parameter to all the methods and mix up
> everything, and maybe creating new thread problems...
>
> So, for now, I don't want to put inside each singleton object
> a constructor asking for the ServletContext parameter... or
> HttpServletRequest parameter... everything is working well
> without any request indication. But when I need to get a file
> on the drive, I need to know where is the tomcat path... That
> is the only problem here. There is no way to get the
> CATALINA_HOME of the JVM?
>
> E.L
>
> -Original Message-
> From: Tim Moore [mailto:[EMAIL PROTECTED]]
> Sent: February 7, 2003 5:14 PM
> To: Tomcat Users List
> Subject: RE: How to get the web application or Tomcat path
> inside a class
>
> Why don't you have access to the ServletContext?  That's
> really the only portable way to access resources in your webapp.
>
> --
> Tim Moore / Blackboard Inc. / Software Engineer
> 1899 L Street, NW / 5th Floor / Washington, DC 20036
> Phone 202-463-4860 ext. 258 / Fax 202-463-4863
>
>
> > -Original Message-
> > From: Etienne [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, February 07, 2003 5:01 PM
> > To: 'Tomcat Users List'
> > Subject: How to get the web application or Tomcat path
> inside a class
> >
> >
> > Hi,
> >
> > Is there a way to get the web application path or the tomcat
> > path inside a java bean not using any "Request" object? I am
> > running tomcat on Windows. I need sometime to access xml file
> > placed on the /xml/ folder. On windows, it is
> > easy to retrace them because the starting (default) path for
> > retrieving a file is based on the web application path. So
> > new File("xml/myfile.xml") works.
> >
> > But on the unix box, the starting (default) path is at
> > /bin/. I don't want to put my xml files there.
> > So, is there a way (without the
> > servletContext.getRealPath("//");  method, because I don't
> > have access to the servletContext object ) to retrieve the
> > path of the tomcat path or better,  the Web Application path?
> >
> > tks
> >
> > E.L.
>
> -----
> 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]
>
>
-
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]




Authentication problem with TOMCAT (4.0.4) and JAVA WEB START

2003-02-14 Thread [EMAIL PROTECTED]
Hi everyone !

I have a problem with Java Web Start (1.0.1) and Tomcat (4.0.4).

I'm trying to call my application via Web server Tomcat with 
restricting access.

My configuration is the following :

The deployment descriptor web.xml is:



http://java.sun.com/dtd/web-app_2_3.dtd";>


  
jar
application/java-archive
  
  
java
text/plain
  
  
jnlp
application/x-java-jnlp-file
  
  
JNLP
application/x-java-jnlp-file
  

  
  

Entire Application
/*



  
BASIC
MY APPL
  




And jnlp File is:

http://host:8080/Official/"; 
href="Application.jnlp"> 
 
Application release 0.10 
   
 
Application 
My Application 

 
 
 
 
 
 











 
 
 

With the above configuration the Java Web Start not work.
I'm expecting the message box for insert username and password instead 
it returns the messagge error :
An error occurred while launching/running the application.
Vendor: 
Category: Download Error
Unable to load resource: http://host:8080/Official/Application.jnlp

The Exception error is:
JNLPException[category: Download Error : Exception: 
java.lang.NullPointerException : LaunchDesc: null ]

at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown 
Source)

at 
com.sun.javaws.cache.DownloadProtocol.isLaunchFileUpdateAvailable
(Unknown Source)

at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown 
Source)

at com.sun.javaws.Launcher.downloadResources(Unknown Source)

at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)

at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)

at com.sun.javaws.Launcher.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)




I have tried to remove the restrict access in the deployment descriptor 
(web.xml) and java Web Start WORKS !! 


I'll appreciate any idea or hint!
 Thanks in advance



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




Authentication problem with TOMCAT (4.0.4) and JAVA WEB START

2003-02-14 Thread [EMAIL PROTECTED]
Hi everyone !

I have a problem with Java Web Start (1.0.1) and Tomcat (4.0.4).

I'm trying to call my application via Web server Tomcat with 
restricting access.

My configuration is the following :

The deployment descriptor web.xml is:



http://java.sun.com/dtd/web-app_2_3.dtd";>


  
jar
application/java-archive
  
  
java
text/plain
  
  
jnlp
application/x-java-jnlp-file
  
  
JNLP
application/x-java-jnlp-file
  

  
  

Entire Application
/*



  
BASIC
MY APPL
  




And jnlp File is:

http://host:8080/Official/"; 
href="Application.jnlp"> 
 
Application release 0.10 
   
 
Application 
My Application 

 
 
 
 
 
 











 
 
 

With the above configuration the Java Web Start not work.
I'm expecting the message box for insert username and password instead 
it returns the messagge error :
An error occurred while launching/running the application.
Vendor: 
Category: Download Error
Unable to load resource: http://host:8080/Official/Application.jnlp

The Exception error is:
JNLPException[category: Download Error : Exception: 
java.lang.NullPointerException : LaunchDesc: null ]

at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown 
Source)

at 
com.sun.javaws.cache.DownloadProtocol.isLaunchFileUpdateAvailable
(Unknown Source)

at com.sun.javaws.LaunchDownload.getUpdatedLaunchDesc(Unknown 
Source)

at com.sun.javaws.Launcher.downloadResources(Unknown Source)

at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)

at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)

at com.sun.javaws.Launcher.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)




I have tried to remove the restrict access in the deployment descriptor 
(web.xml) and java Web Start WORKS !! 


I'll appreciate any idea or hint!
 Thanks in advance



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




Tomcat 4.1.18: Deploy Problem

2003-02-18 Thread [EMAIL PROTECTED]
Hi everyone !
I'm migrating from version 4.0.4 to version 4.1.18.

The problem regarding the deploy of my application.

I'm trying to install my application with the manager tool but it 
does'nt  work.

The manager tool does'nt unpack WAR file into directory webapps. Why ?

I have used the usual command :

http://host:port/manager/install?
path=/MyApp&war=jar:file:/path/to/MyAppl.war!/

I have tried the command "deploy" but  it does'nt  work.

 I have also tried to deploy with Web Application Manager and I have 
had the same negative result.


I'll appreciate any idea or hint!
 Thanks in advance



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




Broken?: security constraint for actions

2003-08-29 Thread [EMAIL PROTECTED]
Hello, 

I have set up a struts-like web app running under Tomcat 4.1.27 on
win2000 and JDK1.4.2.  I want to restrict access parts of my app based
on the "action" parameter in the URL.  That is, calls to 

/controller?action=deposit

can be made by members of the group "user".  But, say, calls to

/controller?action=withdraw

can only be made by member of the group "admin".

How can I protect these resources?  If I try to use




ListAccounts
The pages
/controller?action=withdraw


admin

 

The container ignores the constraint.  What is wrong here?

Also, I have seen web.xml files in which classes themselves are
constrained via a url-pattern such as

/WEB-INF/classes/a/b/Foo.class

If I try to use such restraints in Tomcat, they are not honored.

Any ideas or references?

Thanks

Bruce Sams

=
Dr. Bruce J. Sams, III
mediateam
Weidenweg 2, 85375 Neufahrn
Germany
tel: +49 (0) 8165/65095  
fax: +49 (0) 8165/65096 
web: http://www.mediateam.de


This communication may contain privileged 
information. If you are not the intended recipient 
please notify the sender immediately and destroy this e-mail.

All unauthorised copying, disclosure or distribution of  the 
material in  this e-mail or of parts hereof is strictly forbidden.

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



Inquiry received

2003-09-03 Thread [EMAIL PROTECTED]
Thank you for your inquiry to Alset Support!

We will process your request as soon as possible.

Please see www.alset.com for complete support information.

Alset Support Staff


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



Inquiry received

2003-09-03 Thread [EMAIL PROTECTED]
Thank you for your inquiry to Alset Support!

We will process your request as soon as possible.

Please see www.alset.com for complete support information.

Alset Support Staff


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



Inquiry received

2003-09-04 Thread [EMAIL PROTECTED]
Thank you for your inquiry to Alset Support!

We will process your request as soon as possible.

Please see www.alset.com for complete support information.

Alset Support Staff


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



Inquiry received

2003-09-04 Thread [EMAIL PROTECTED]
Thank you for your inquiry to Alset Support!

We will process your request as soon as possible.

Please see www.alset.com for complete support information.

Alset Support Staff


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



Inquiry received

2003-09-05 Thread [EMAIL PROTECTED]
Thank you for your inquiry to Alset Support!

We will process your request as soon as possible.

Please see www.alset.com for complete support information.

Alset Support Staff


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



Inquiry received

2003-09-05 Thread [EMAIL PROTECTED]
Thank you for your inquiry to Alset Support!

We will process your request as soon as possible.

Please see www.alset.com for complete support information.

Alset Support Staff


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



Tomcat web.xml & Apache httpd.conf DocumentRoot

2003-09-16 Thread [EMAIL PROTECTED]
Hi,

Currently i'm having virtual hosts (subdomains) on Apache-2:
abc.xxx.com
def.xxx.com
ghi.xxx.com
... with different DocumentRoots!

On Tomcat-5 i have a servlet 'file' with /file

On workers2.properties i have [uri:/docs/*]

This makes that i got the following:
abc.xxx.com/docs/file
def.xxx.com/docs/file
ghi.xxx.com/docs/file
... and all three of them are showing the expected results.

But i only want:
abc.xxx.com/docs/file

and not:
def.xxx.com/docs/file
ghi.xxx.com/docs/file

What to do to make a servlet for one subdomain only?

Thanks,
b.


http://WWW.ADVENTUREFORUM.NET - Forum on World Travel and Adventure -

http://WWW.ADVENTUREFORUM.NET/worldfacts 

http://WWW.ADVENTUREFORUM.NET/worldnews


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



Re: Personalized Tomcat Manager

2003-09-26 Thread [EMAIL PROTECTED]
Grzegorz Malinka,

You might want to edit "tomcat-users.xml" configuration file.

Or use "Likha DevCentre".  It simplifies your development life cycle in
Tomcat.
Download it from www.downloads.com or www.javashareware.com.

Cheers

Bern

- Original Message - 
From: "Grzegorz Malinka" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, September 26, 2003 5:21 AM
Subject: Personalized Tomcat Manager


I have to give access permission to Tomcat Manager for several users, which
should manage just its application (not all).

Is it possible?

-- 
Regards

Grzegorz Malinka
RDB-Admin @ DEMO
2B|!2B

-----
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]



Authentication in tomcat

2004-04-12 Thread [EMAIL PROTECTED]
Hello. I'm a bit confused. I'm trying tomcat's authentication with bad 
or no results. The documentation is very simple and I don't understand 
so well. I've a web application and I want to make authentication with 
a user role and a admin role. The admin can administrate permissions 
and roles. I want to use form authentication. Each role can access a 
part of the application web. I must check if the user has a session and 
has permission for the accessing. 

I've got a connection pool with JNDI in mysql. Has anybody a full 
example? 

Thanks in advance


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



NoClassDefFoundError

2004-06-09 Thread [EMAIL PROTECTED]
Hi all!

I'm new to Tomcat.

I have a problem testing my web application (jsp pages)

A page of this application fails with this exception:
javax.servlet.ServletException: org/apache/axis/client/Service
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:256)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)

root cause

java.lang.NoClassDefFoundError: org/apache/axis/client/Service
java.lang.ClassLoader.defineClass0(Native Method)
java.lang.ClassLoader.defineClass(ClassLoader.java:537)
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
java.net.URLClassLoader.access$100(URLClassLoader.java:55)
java.net.URLClassLoader$1.run(URLClassLoader.java:194)
java.security.AccessController.doPrivileged(Native Method)
java.net.URLClassLoader.findClass(URLClassLoader.java:187)

org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
java.lang.ClassLoader.defineClass0(Native Method)
java.lang.ClassLoader.defineClass(ClassLoader.java:537)
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
java.net.URLClassLoader.access$100(URLClassLoader.java:55)
java.net.URLClassLoader$1.run(URLClassLoader.java:194)
java.security.AccessController.doPrivileged(Native Method)
java.net.URLClassLoader.findClass(URLClassLoader.java:187)

org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:840)

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)

org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1370)

org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:184)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:110)
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
java.lang.Class.getDeclaredConstructors0(Native Method)
java.lang.Class.privateGetDeclaredConstructors(Class.java:1610)
java.lang.Class.getConstructor0(Class.java:1922)
java.lang.Class.newInstance0(Class.java:278)
java.lang.Class.newInstance(Class.java:261)
..etc etc.

i have seen in the archive a similar problem posted by Tejo Vamsi Prayaga, but
no solution

At the end that class is in axis.jar, file located in
$CATALINA_HOME/webapps/ROOT/WEB-INF/lib
Is this the right location for my jar files?

Thanx
Angelo


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



Re: NoClassDefFoundError

2004-06-10 Thread [EMAIL PROTECTED]
> Is your webapp in "ROOT"?  That's usually the default application for Tomcat and
> your own app would be in a named context.  Assuming you are doing the latter,
> and your named context is "mycontext", you'd put it in:
>
> $CATALINA_HOME/webapps/mycontext/WEB-INF/lib
>
> Jake

My application is in $CATALINA_HOME/webapps/ROOT/matrici

I have tried to put the jar file in
$CATALINA_HOME/webapps/ROOT/matrici/web/WEB-INF/lib and it fails

Assuming that my application is "matrici"

Do i have to put the jar file in $CATALINA_HOME/webapps/matrici/WEB-INF/lib?

I have a doubt... there are other jar files containing other inportant class and
this class is found correctly.
Why?

Angelo




>
> Quoting "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>:
>
> > Hi all!
> >
> > I'm new to Tomcat.
> >
> > I have a problem testing my web application (jsp pages)
> >
> > A page of this application fails with this exception:
> > javax.servlet.ServletException: org/apache/axis/client/Service
> > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:256)
> > javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
> > 
> > root cause
> >
> > java.lang.NoClassDefFoundError: org/apache/axis/client/Service
> > java.lang.ClassLoader.defineClass0(Native Method)
> > java.lang.ClassLoader.defineClass(ClassLoader.java:537)
> > java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
> > java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
> > java.net.URLClassLoader.access$100(URLClassLoader.java:55)
> > java.net.URLClassLoader$1.run(URLClassLoader.java:194)
> > java.security.AccessController.doPrivileged(Native Method)
> > java.net.URLClassLoader.findClass(URLClassLoader.java:187)
> >
>
org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)
> >
>
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
> >
>
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
> > java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
> > java.lang.ClassLoader.defineClass0(Native Method)
> > java.lang.ClassLoader.defineClass(ClassLoader.java:537)
> > java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
> > java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
> > java.net.URLClassLoader.access$100(URLClassLoader.java:55)
> > java.net.URLClassLoader$1.run(URLClassLoader.java:194)
> > java.security.AccessController.doPrivileged(Native Method)
> > java.net.URLClassLoader.findClass(URLClassLoader.java:187)
> >
>
org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:520)
> >
>
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
> >
>
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
> >
>
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:840)
> >
>
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
> >
>
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1370)
> >
>
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
> > org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:184)
> > org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:110)
> > java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
> > java.lang.Class.getDeclaredConstructors0(Native Method)
> > java.lang.Class.privateGetDeclaredConstructors(Class.java:1610)
> > java.lang.Class.getConstructor0(Class.java:1922)
> > java.lang.Class.newInstance0(Class.java:278)
> > java.lang.Class.newInstance(Class.java:261)
> > ..etc etc.
> >
> > i have seen in the archive a similar problem posted by Tejo Vamsi Prayaga,
> > but
> > no solution
> >
> > At the end that class is in axis.jar, file located in
> > $CATALINA_HOME/webapps/ROOT/WEB-INF/lib
> > Is this the right location for my jar files?
> >
> > Thanx
> > Angelo
> >
> >
> > -
> > 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]
>
>


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



JK2 and NoClassDefFoundError of HttpMessages

2003-12-12 Thread [EMAIL PROTECTED]
Hi,
(B
(BI am trying Tomcat 5.0.16 with mod_jk2v2.0.2, Apache 2.0.47 on Fodora
(BLinux Core1.
(B
(BWhen I start Tomcat without -security, I have no problem.
(BWhen I start Tomcat with -security and I use
(Bdomain_name:8080/servlet/ListRoomsServlet, again I have no problem
(B(ListRoomsServlet is the servlet I am trying).
(B
(BWhen I start Tomcat with -security and use
(Bdomain_name/servlet/ListRoomsServlet, I have the next error message:
(B
(Bexception
(B
(Bjavax.servlet.ServletException: org/apache/tomcat/util/http/HttpMessages
(Borg.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:324)
(Borg.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200)
(B
(B
(Broot cause
(B
(Bjava.lang.NoClassDefFoundError: org/apache/tomcat/util/http/HttpMessages
(Borg.apache.jk.server.JkCoyoteHandler.appendHead(JkCoyoteHandler.java:350)
(Borg.apache.jk.server.JkCoyoteHandler.action(JkCoyoteHandler.java:402)
(Borg.apache.coyote.Response.action(Response.java:226)
(Borg.apache.coyote.Response.sendHeaders(Response.java:418)
(Borg.apache.jk.server.JkCoyoteHandler.doWrite(JkCoyoteHandler.java:240)
(Borg.apache.coyote.Response.doWrite(Response.java:586)
(Borg.apache.coyote.tomcat5.OutputBuffer.realWriteBytes(OutputBuffer.java:405)
(Borg.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:428)
(Borg.apache.coyote.tomcat5.OutputBuffer.doFlush(OutputBuffer.java:361)
(Borg.apache.coyote.tomcat5.OutputBuffer.close(OutputBuffer.java:325)
(Borg.apache.coyote.tomcat5.CoyoteWriter.close(CoyoteWriter.java:130)
(BListRoomsServlet.doGet(ListRoomsServlet.java:714)
(Bjavax.servlet.http.HttpServlet.service(HttpServlet.java:743)
(Bjavax.servlet.http.HttpServlet.service(HttpServlet.java:856)
(Bsun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
(Bsun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
(B
(Bsun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
(Bjava.lang.reflect.Method.invoke(Method.java:324)
(Borg.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:284)
(Bjava.security.AccessController.doPrivileged(Native Method)
(Bjavax.security.auth.Subject.doAsPrivileged(Subject.java:500)
(Borg.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:306)
(Borg.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200)
(B
(BIs there something I might forget to add to classpath or to add conf/catalina.policy?
(BThank you in advance.
(B
(BSam
(B
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

Re: JK2 and NoClassDefFoundError of HttpMessages

2003-12-12 Thread [EMAIL PROTECTED]
Thank you for reply.
I found that Tomcat servlet examples work with -security option on Fedora.
So my web application should work with -security option.
After I load Tomcat servlet examples first, I can immediately see my web 
application from my browser.
But when I try to load my web application first, I cannot see it and get 
the error message.
There is something wrong for the configuration of my web application.

I hope I will find the problem.

Sam



Yansheng Lin wrote:

Hi, 

You got it working yet?  It seems you are having trouble using apache as the
server.  You said when you use domainname:8080/something, you can see the pages,
but not domainname/something.  That's because  Tomcat is serving the pages
instead of Apache.
I need to go home to test this on Fedora, but in your conf/workers2.properties
file, you need to specify a connection between apache and tomcat, much like the
example from the other thread:

[uri:/examples/*]
info=tomcat examples
context=/examples
worker=ajp13:localhost:8009
debug=0

Hope this helps.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 12, 2003 11:47 AM
To: [EMAIL PROTECTED]
Subject: JK2 and NoClassDefFoundError of HttpMessages

Hi,

I am trying Tomcat 5.0.16 with mod_jk2v2.0.2, Apache 2.0.47 on Fodora
Linux Core1.
When I start Tomcat without -security, I have no problem.
When I start Tomcat with -security and I use
domain_name:8080/servlet/ListRoomsServlet, again I have no problem
(ListRoomsServlet is the servlet I am trying).
When I start Tomcat with -security and use
domain_name/servlet/ListRoomsServlet, I have the next error message:
exception

javax.servlet.ServletException: org/apache/tomcat/util/http/HttpMessages
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:324)

org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200)
root cause

java.lang.NoClassDefFoundError: org/apache/tomcat/util/http/HttpMessages

org.apache.jk.server.JkCoyoteHandler.appendHead(JkCoyoteHandler.java:350)
org.apache.jk.server.JkCoyoteHandler.action(JkCoyoteHandler.java:402)
org.apache.coyote.Response.action(Response.java:226)
org.apache.coyote.Response.sendHeaders(Response.java:418)
org.apache.jk.server.JkCoyoteHandler.doWrite(JkCoyoteHandler.java:240)
org.apache.coyote.Response.doWrite(Response.java:586)

org.apache.coyote.tomcat5.OutputBuffer.realWriteBytes(OutputBuffer.java:405)
org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:428)
org.apache.coyote.tomcat5.OutputBuffer.doFlush(OutputBuffer.java:361)
org.apache.coyote.tomcat5.OutputBuffer.close(OutputBuffer.java:325)
org.apache.coyote.tomcat5.CoyoteWriter.close(CoyoteWriter.java:130)
ListRoomsServlet.doGet(ListRoomsServlet.java:714)
javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav
a:25)
java.lang.reflect.Method.invoke(Method.java:324)
org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:284)
java.security.AccessController.doPrivileged(Native Method)
javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:306)

org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200)
Is there something I might forget to add to classpath or to add
conf/catalina.policy?
Thank you in advance.
Sam



-
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]


 



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


Re: JK2 and NoClassDefFoundError of HttpMessages

2003-12-12 Thread [EMAIL PROTECTED]
I found the cause: around the end of my servlet, I had put

out.close();

(where out is PrintWriter object obtained from response)

I deleted out.close(), and now my servlet works with -security even if
I load the servlet first.
I did not have this problem with Tomcat 4.x. It was strange, but
sometimes occurs at upgrade of application servers.
Sam

[EMAIL PROTECTED] wrote:

Thank you for reply.
I found that Tomcat servlet examples work with -security option on 
Fedora.
So my web application should work with -security option.

After I load Tomcat servlet examples first, I can immediately see my 
web application from my browser.
But when I try to load my web application first, I cannot see it and 
get the error message.
There is something wrong for the configuration of my web application.

I hope I will find the problem.

Sam



Yansheng Lin wrote:

Hi,
You got it working yet? It seems you are having trouble using apache 
as the
server. You said when you use domainname:8080/something, you can see 
the pages,
but not domainname/something. That's because Tomcat is serving the pages
instead of Apache.

I need to go home to test this on Fedora, but in your 
conf/workers2.properties
file, you need to specify a connection between apache and tomcat, 
much like the
example from the other thread:


[uri:/examples/*]
info=tomcat examples
context=/examples
worker=ajp13:localhost:8009
debug=0

Hope this helps.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 
Friday, December 12, 2003 11:47 AM
To: [EMAIL PROTECTED]
Subject: JK2 and NoClassDefFoundError of HttpMessages

Hi,

I am trying Tomcat 5.0.16 with mod_jk2v2.0.2, Apache 2.0.47 on Fodora
Linux Core1.
When I start Tomcat without -security, I have no problem.
When I start Tomcat with -security and I use
domain_name:8080/servlet/ListRoomsServlet, again I have no problem
(ListRoomsServlet is the servlet I am trying).
When I start Tomcat with -security and use
domain_name/servlet/ListRoomsServlet, I have the next error message:
exception

javax.servlet.ServletException: org/apache/tomcat/util/http/HttpMessages
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:324)
org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200) 



root cause

java.lang.NoClassDefFoundError: org/apache/tomcat/util/http/HttpMessages

org.apache.jk.server.JkCoyoteHandler.appendHead(JkCoyoteHandler.java:350) 

org.apache.jk.server.JkCoyoteHandler.action(JkCoyoteHandler.java:402)
org.apache.coyote.Response.action(Response.java:226)
org.apache.coyote.Response.sendHeaders(Response.java:418)
org.apache.jk.server.JkCoyoteHandler.doWrite(JkCoyoteHandler.java:240)
org.apache.coyote.Response.doWrite(Response.java:586)
org.apache.coyote.tomcat5.OutputBuffer.realWriteBytes(OutputBuffer.java:405) 

org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:428)
org.apache.coyote.tomcat5.OutputBuffer.doFlush(OutputBuffer.java:361)
org.apache.coyote.tomcat5.OutputBuffer.close(OutputBuffer.java:325)
org.apache.coyote.tomcat5.CoyoteWriter.close(CoyoteWriter.java:130)
ListRoomsServlet.doGet(ListRoomsServlet.java:714)
javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 

sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.jav 

a:25)
java.lang.reflect.Method.invoke(Method.java:324)
org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:284)
java.security.AccessController.doPrivileged(Native Method)
javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:306)
org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200) 

Is there something I might forget to add to classpath or to add
conf/catalina.policy?
Thank you in advance.
Sam



-
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]






-
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]


JSP session.invalidate() and application scope variables

2003-12-16 Thread [EMAIL PROTECTED]
Hello.

When


<% session.invalidate(); %>
The value of foo is: ${foo}

, Tomcat 5.0.16 throws following exception.

java.lang.IllegalStateException: getAttribute: ?
org.apache.catalina.session.StandardSession.getAttribute
(StandardSession.java:985)
org.apache.catalina.session.StandardSessionFacade.
getAttribute(StandardSessionFacade.java:156)
org.apache.jasper.runtime.PageContextImpl.
doFindAttribute(PageContextImpl.java:514)
org.apache.jasper.runtime.PageContextImpl.findAttribute
(PageContextImpl.java:499)
org.apache.commons.el.VariableResolverImpl.
resolveVariable(VariableResolverImpl.java:157)
org.apache.jasper.runtime.PageContextImpl.
resolveVariable(PageContextImpl.java:875)
org.apache.commons.el.NamedValue.evaluate(NamedValue.java:124)
org.apache.commons.el.BinaryOperatorExpression.evaluate
(BinaryOperatorExpression.java:154)
org.apache.commons.el.ExpressionEvaluatorImpl.evaluate
(ExpressionEvaluatorImpl.java:263)
org.apache.commons.el.ExpressionEvaluatorImpl.evaluate
(ExpressionEvaluatorImpl.java:190)
org.apache.jasper.runtime.PageContextImpl.
proprietaryEvaluate(PageContextImpl.java:941)
org.apache.jsp.register_jsp._jspx_meth_c_if_1(register_
jsp.java:372)
org.apache.jsp.register_jsp._jspService(register_jsp.java:120)
org.apache.jasper.runtime.HttpJspBase.service
(HttpJspBase.java:133)
javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
org.apache.jasper.servlet.JspServletWrapper.service
(JspServletWrapper.java:311)
org.apache.jasper.servlet.JspServlet.serviceJspFile
(JspServlet.java:301)
org.apache.jasper.servlet.JspServlet.service(JspServlet.
java:248)
javax.servlet.http.HttpServlet.service(HttpServlet.java:
856)

The stack trace shows that,
org.apache.commons.el.VariableResolverImpl searches for the 
variable named "foo" in each of the scopes, even if the session 
is invalidated.

To avoid this problem,


<% session.invalidate(); %>
The value of foo is: ${applicationScope.foo}

.

But I don't like this manner.
Then, how can I invalidate session safely?
Any suggestion or any English correction helps me.

--
ASARI Takashi

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



How to Run I am developed JSP file thro TOMCAT

2003-12-25 Thread [EMAIL PROTECTED]
Hi sir,

I am kumaran. Currently I have worked in Software Programmer.
Actually, I have installed the Tomcat 5.0 in WinXp and see and execute the
example program for servlets and JSPs from TOMCAT.
But, how to running the new or ( I am developing ) JSP and Servlet file
thro Tomcat.

So what should i do ?.
Pls do the necessary IMMEDIATELY.

your faithfully,
Kumaran.


mail2web - Check your email from the web at
http://mail2web.com/ .



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



Re: admin app is forbidden

2003-12-27 Thread [EMAIL PROTECTED]
Jerry Ford wrote:
I have Tomcat 4.1.27 running with Apache 1.3.27, using mod_jk, on a 
Linux box (Red Hat 9.0, but custom-installed Apache and Tomcat in 
/usr/local).

I am able to run Tomcat's example servlets, as well as my own custom 
servlets (installed as a webapp), and the Manager webapp, but when I try 
to view the Admin app, I get a  "403 - resource has been forbidden" 
message.

http://localhost/manager works fine, login screen is displayed, I log in 
and the app runs, but http://localhost/admin is forbidden to me.  I 
cannot find anything in the configs that would allow one but prohibit 
the other.  The Manager app shows /admin as running, and so do the 
logs.  I just can't get to it.

Can anyone tell me why I can't even get to the login screen before the 
admin app rejects my attempt?
Thanks.

Jerry
Did you already insert following lines into your 
$CatalinaHome/conf/tomcat-users.xml?



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


Admintool cannot save changes to servers.xml

2003-12-27 Thread [EMAIL PROTECTED]
Hi Folks,

I've just set up Tomcat 5.0.16 on my Linux (SuSe 8.2) and there is one 
little problem that I couldn't solve from Tomcat's documentation.

Problem:
Administration tool seems to work fine, but klicking "Commit Changes" 
after saving does not change anything on server.xml file nor does it 
backup that file.

Question:
What do I have to change in order to enable admintool to save changes to 
server.xml?

Some details:
Java is version 1.4.2_02
Apache is 2.0.48 from SuSE
JK2 connection is working
Installation directory is /opt/jakarta-tomcat-5.0.16
Owner:group of tomcat is root:root
Can somebody give me a hint?
--
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Admintool cannot save changes to servers.xml

2003-12-27 Thread [EMAIL PROTECTED]
Philipp Taprogge wrote:
Hi!

[EMAIL PROTECTED] wrote:

Question:
What do I have to change in order to enable admintool to save changes 
to server.xml?


I am not entirely sure here, but from what I have read so far I recon 
that the admin webapp is for making changes to the running tomcat 
instance _only_. If you know in advance what you want, put it in the 
appropriate config file. You only use the admin tool when you have to 
make changes on the fly and can't (or don't want to) restart the server. 
I don't think the admin tool is intended to work that way and I am not 
sure if I would like if it did.

Phil
Hi Phil!

I'm just only running one single instance on Tomcat and I would prefer 
using the admintool instead of manually editing server.xml.
I've read in [1] that this should be possible to work properly.

[1] <http://java.sun.com/webservices/docs/1.0/tutorial/doc/Admintool2.html>
--
[EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Admintool cannot save changes to servers.xml

2003-12-28 Thread [EMAIL PROTECTED]
George Sexton wrote:
I use the admin app and it works for me. Does the user that Tomcat run
under have permissions to the file and directory?
Hi George,

I checked this already. In /etc/init.d/tomcat, I have:

   TOMCAT_USER=root

and authorizations are:

drwxr-xr-x  3 root   root 264 2003-12-28 09:08 .
drwxr-xr-x 11 root   root 352 2003-12-27 13:47 ..
drwxr-xr-x  4 root   root  96 2003-12-27 14:23 Catalina
-rw---  1 root   root6804 2003-11-30 16:06 catalina.policy
-rw---  1 root   root2715 2003-11-30 16:06 catalina.properties
-rw---  1 root   root 778 2003-11-30 16:06 jk2.properties
-rw---  1 root   root   18052 2003-12-27 15:00 server.xml
-rw-r--r--  1 root   root 460 2003-12-28 09:08 tomcat-users.xml
-rw---  1 root   root   37398 2003-11-30 16:06 web.xml
linux:/opt/jakarta-tomcat-5.0.16/conf #
I can't see any reason why this shouldn't work. But when, after e.g.
Create_New_Host to a service, klicking on save button, the (left) 
navigation pane changes to admin-login-screen. And the only thing that 
Commit Changes button does is to change the top frame to admin-login-screen.
  Also, after changing some User Definition, "Commit Changes" button 
will change top frame into login screen, whereas Save button does not 
affect the navigation pane.

Any other idea that would be helpful for me?

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


Re: Admintool cannot save changes to servers.xml

2003-12-28 Thread [EMAIL PROTECTED]
Jacob Kjome wrote:
[...]
You don't have to edit server.xml.  In fact, you probably shouldn't if 
you can avoid it.  You should be able to provide a context configuration 
file where you can put all the stuff you would normally put in 
server.xml for you webapp, but instead this is a standalone xml file 
which gets read kind of like how Apache server works with .htaccess 
files.  You can even deploy your application with file in the META-INF 
directory of your .war file and it will get picked up by Tomcat (make 
sure to call it "context.xml" if you do this).
Hi Jake,

Do you mean that creating new services into Tomcat Server, creating new 
hosts into a service or creating new contexts into a host never needs 
the server.xml file to be edited?

Or should Tomcat Administration Tool save (persitently) changes 
somewhere else instead of server.xml file?

Anyhow, after shutting down and restarting Tomcat, all the changes done 
to Tomcat Server via Tomcat Administration Tool using "Commit Changes" 
are lost.

See:
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/host.html#Automatic%20Application%20Deployment 

http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html#Automatic%20Application%20Deployment 

Also see the manager app docs.
Yes, there is a large doc about Manager Application but the only 
detailed doc I found for admintool is from
<http://java.sun.com/webservices/docs/1.0/tutorial/doc/Admintool.html>

BTW, Tomcat5 is much better about all of this than Tomcat4.1 was.  I 
recommend moving to Tomcat5 ASAP.
In first mail of this thread I mentioned it already is 5.0.16.

Jake
Thanks so much for your help

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


Re: Admintool cannot save changes to servers.xml

2003-12-29 Thread [EMAIL PROTECTED]
George Sexton wrote:
Do the log files contain no information?
Hi George,

I tried with a clean installation and this time also checked the log 
files. As I'm not so familiar with understanding these log files, I've 
put them all up on <http://home.arcor.de/plsdontreply/tomcatlogs/>.
In the adminlog, 
<http://home.arcor.de/plsdontreply/tomcatlogs/localhost_admin_log.2003-12-29.txt>
I cannot find anything regarding "save" or "Commit Changes".

Maybe you can find out whats wrong from my log files.

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


Re: Admintool cannot save changes to servers.xml

2003-12-29 Thread [EMAIL PROTECTED]
George Sexton wrote:
At this point I only have two ideas.

Idea # 1 is that you are starting tomcat with some sort of flags that
affect security.
My starting procedure simply is /opt/jakarta-tomcat-5/bin/startup.sh
So, I think there is no flag
Idea # 2 is to use strace to run tomcat and see if you can sort out from
the strace logs what is happening.
Something new to me. I already found it on 
<http://www.liacs.nl/~wichert/strace/> and will give it a try within the 
next days.

Thanks so far for your help.

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


SQLPLUS and TOMCAT conflict?

2004-01-12 Thread [EMAIL PROTECTED]
Hi All,

I earlier did install Tomcat 5.0 but soon found out that i
wasnt able to work with SQL PLUS. Everytime i try to login
into SQL Plus i get the error message "ORA 12571 : Tns
packet writer failure".

Since i didnt find any effective solution to avoid this
problem, I soon had to uninstall the OS itself to enable me
to work in SQL Plus.
:-(

Soon I came to know that both these applications use the
same port-number 8080, so this conflict makes SQL Plus
inoperable. 

Is there any way through which I can change the port-number
of Apache, so that I can work in both these applications
without any problems?

Please help.

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



Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Oliver Wulff ([EMAIL PROTECTED]),

Your message
"Antwort: Re: Antwort: RE: SSL, keystore with ca hierarchy", sent to <[EMAIL 
PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:13:45 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:07:16 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am5Ke-0003QP-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:07:16 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5Kc-0004kj-On
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:07:14 +0100
Received: (qmail 29817 invoked by uid 500); 29 Jan 2004 06:06:35 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 29750 invoked from network); 29 Jan 2004 06:06:34 -
Received: from unknown (HELO mtach4.zurich.com) (195.28.226.90)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:06:34 -
Subject: Antwort: Re: Antwort: RE: SSL, keystore with ca hierarchy
To: "Tomcat Users List" <[EMAIL PROTECTED]>
X-Mailer: Lotus Notes Release 5.0.10  March 22, 2002
Message-ID: <[EMAIL PROTECTED]>
From: Oliver Wulff <[EMAIL PROTECTED]>
Date: Thu, 29 Jan 2004 07:06:39 +0100
X-MIMETrack: Serialize by Router on CHKNH023/Zurich-Internet(Release 6.5|September 26, 
2003) at
 29.01.2004 07:06:45
MIME-Version: 1.0
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: quoted-printable
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-NIET-Metrics: basil 1080; Body=1 Fuz1=1 Fuz2=1
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:23:47 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:14:20 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5RU-0004lN-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:14:20 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5RT-00030e-7V
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:14:19 +0100
Received: (qmail 53865 invoked by uid 500); 29 Jan 2004 06:13:39 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 53843 invoked from network); 29 Jan 2004 06:13:38 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:13:38 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5Qy-0008W4-W1
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:13:49 +0100
Date: Thu, 29 Jan 2004 07:13:45 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012907134501D5"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: nusku 1025; Body=2 Fuz1=3 Fuz2=3
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Lukas Larsson ([EMAIL PROTECTED]),

Your message
"Re: How do I build mod_jk.so", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:31:06 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:27:28 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5e8-0007H7-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:27:24 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5e6-0003Qt-NL
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:27:22 +0100
Received: (qmail 736 invoked by uid 500); 29 Jan 2004 06:26:45 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 693 invoked from network); 29 Jan 2004 06:26:44 -
Received: from unknown (HELO www.mail15.com) (62.118.249.44)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:26:44 -
Received: from ituniv841 (garazdawi.csbnet.se [193.11.251.12])
(authenticated bits=0)
by www.mail15.com (8.12.9/8.12.6) with ESMTP id i0T6Phhl078454
for <[EMAIL PROTECTED]>; Thu, 29 Jan 2004 09:25:44 +0300 (MSK)
(envelope-from [EMAIL PROTECTED])
Message-ID: <[EMAIL PROTECTED]>
From: "Lukas Larsson" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Subject: Re: How do I build mod_jk.so
Date: Thu, 29 Jan 2004 07:26:53 +0100
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: nusku 1025; Body=1 Fuz1=1 Fuz2=1
x-recipient:<[EMAIL PROTECTED]>




----- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:31:07 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:24:23 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5bA-0006hQ-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:24:20 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5b9-0003Jh-HL
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:24:19 +0100
Received: (qmail 88525 invoked by uid 500); 29 Jan 2004 06:23:41 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 88495 invoked from network); 29 Jan 2004 06:23:41 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:23:41 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5ah-K7-JO
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:23:51 +0100
Date: Thu, 29 Jan 2004 07:23:48 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012907234801DF"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=6
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Mike Kenny - CPX Mngd Services ([EMAIL PROTECTED]),

Your message
"RE: how can I change a variable on the fly with shutting down tomcat", sent to 
<[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:41:08 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:36:45 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5nE-0000s9-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:36:48 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5nB-0003kE-Dx
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:36:45 +0100
Received: (qmail 35147 invoked by uid 500); 29 Jan 2004 06:36:04 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 35082 invoked from network); 29 Jan 2004 06:36:03 -
Received: from unknown (HELO wamid01.africa.enterprise.root) (196.29.130.201)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:36:03 -
Received: from EXMID04.africa.enterprise.root ([172.21.31.140]) by 
wamid01.africa.enterprise.root with Microsoft SMTPSVC(5.0.2195.6713);
 Thu, 29 Jan 2004 08:39:06 +0200
x-mimeole: Produced By Microsoft Exchange V6.0.6249.0
content-class: urn:content-classes:message
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Subject: RE: how can I change a variable on the fly with shutting down tomcat
Date: Thu, 29 Jan 2004 08:39:06 +0200
Message-ID: <[EMAIL PROTECTED]>
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
Thread-Topic: how can I change a variable on the fly with shutting down tomcat
Thread-Index: AcPl2R+ZOJHxa3VLSvO7A8WmfwjcPwAWQl2g
From: "Mike Kenny - CPX Mngd Services" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
X-OriginalArrivalTime: 29 Jan 2004 06:39:06.0671 (UTC) FILETIME=[97D703F0:01C3E632]
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: nusku 1025; Body=2 Fuz1=2 Fuz2=2
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:41:08 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:32:21 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5is-0008GU-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:32:18 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5ir-0003ah-Gx
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:32:17 +0100
Received: (qmail 15537 invoked by uid 500); 29 Jan 2004 06:31:02 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 15397 invoked from network); 29 Jan 2004 06:31:01 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:31:01 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5hn-YS-SK
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:31:11 +0100
Date: Thu, 29 Jan 2004 07:31:08 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290731080009"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: nusku 1025; Body=1 Fuz1=2 Fuz2=5
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:41:08 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:31:41 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5iH-000892-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:31:41 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5iG-0003ZV-0H
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:31:40 +0100
Received: (qmail 15420 invoked by uid 500); 29 Jan 2004 06:31:01 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 15380 invoked from network); 29 Jan 2004 06:31:01 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:31:01 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5hn-YT-IY
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:31:11 +0100
Date: Thu, 29 Jan 2004 07:31:08 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290731080007"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: nusku 1025; Body=2 Fuz1=2 Fuz2=2
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:51:10 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:42:26 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am5sg-00022w-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:42:26 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5se-0003wS-SA
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:42:25 +0100
Received: (qmail 51667 invoked by uid 500); 29 Jan 2004 06:41:02 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 51578 invoked from network); 29 Jan 2004 06:41:02 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:41:02 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5rU-pz-0u
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:41:12 +0100
Date: Thu, 29 Jan 2004 07:41:08 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290741080018"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-neonova-Metrics: nusku 1127; Body=1 Fuz1=1 Fuz2=1
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:51:11 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:41:47 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am5s1-0001uU-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:41:45 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5s0-0005w8-46
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:41:44 +0100
Received: (qmail 51600 invoked by uid 500); 29 Jan 2004 06:41:02 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 51566 invoked from network); 29 Jan 2004 06:41:01 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:41:01 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5rT-q0-N8
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:41:11 +0100
Date: Thu, 29 Jan 2004 07:41:08 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290741080013"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=2 Fuz1=2 Fuz2=2
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-28 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 07:51:10 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:43:15 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am5tQ-0002DI-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:43:12 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am5tQ-00060h-BU
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:43:12 +0100
Received: (qmail 51766 invoked by uid 500); 29 Jan 2004 06:41:03 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 51638 invoked from network); 29 Jan 2004 06:41:02 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:41:02 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am5rU-q0-As
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:41:12 +0100
Date: Thu, 29 Jan 2004 07:41:09 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129074109001A"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-meer-Metrics: basil 1086; Body=1 Fuz1=1 Fuz2=3
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:53:04 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am62z-0004HV-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:05 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am62x-0006NV-EG
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:03 +0100
Received: (qmail 87269 invoked by uid 500); 29 Jan 2004 06:51:15 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 87169 invoked from network); 29 Jan 2004 06:51:14 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:51:14 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am61D-00016p-7r
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:15 +0100
Date: Thu, 29 Jan 2004 07:51:11 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290751110035"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-meer-Metrics: basil 1086; Body=1 Fuz1=1 Fuz2=44
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:52:26 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am62M-00046v-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:52:26 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am62I-0004H7-E0
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:52:22 +0100
Received: (qmail 86312 invoked by uid 500); 29 Jan 2004 06:51:06 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 86236 invoked from network); 29 Jan 2004 06:51:06 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:51:06 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am61D-00016p-Tj
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:16 +0100
Date: Thu, 29 Jan 2004 07:51:11 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129075111003A"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=3 Fuz2=49
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear  ([EMAIL PROTECTED]),

Your message
"Re: How do I build mod_jk.so", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:53:47 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am63g-0004QQ-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:48 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am63e-0004KB-Nl
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:53:46 +0100
Received: (qmail 95361 invoked by uid 500); 29 Jan 2004 06:52:34 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 95114 invoked from network); 29 Jan 2004 06:52:32 -
Received: from unknown (HELO InKolG01.tcs.com) (203.197.96.54)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:52:32 -
Received: from INKOLG01.tcs.com ([172.18.18.107])
  by InKolG01.tcs.com (Lotus Domino Release 6.0.3)
  with SMTP id 2004012912222807-11366 ;
  Thu, 29 Jan 2004 12:22:28 +0530
In-Reply-To: <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Subject: Re: How do I build mod_jk.so
MIME-Version: 1.0
X-Mailer: Lotus Notes Release 6.5 September 26, 2003
From: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Date: Thu, 29 Jan 2004 01:52:25 -0500
X-MIMETrack: Serialize by Router on InKolM02/TCS(Release 6.0.3|September 18, 2003) at 
01/29/2004
 12:22:27,
Serialize complete at 01/29/2004 12:22:27,
Itemize by SMTP Server on InKolG01/TCS(Release 6.0.3|September 26, 2003) at
 01/29/2004 12:22:28 PM,
Serialize by Router on InKolG01/TCS(Release 6.0.3|September 26, 2003) at 
01/29/2004
 12:22:32 PM,
Serialize complete at 01/29/2004 12:22:32 PM
Content-Type: multipart/mixed;
boundary="=_NextPartTM-000-93f85198-3869-4e58-b720-2183b0d14765"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=4
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:01:14 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 07:51:45 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am61h-0003zM-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:45 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am61g-0004G0-4l
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:44 +0100
Received: (qmail 86254 invoked by uid 500); 29 Jan 2004 06:51:06 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 86226 invoked from network); 29 Jan 2004 06:51:05 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 06:51:05 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am61D-00016m-KB
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:51:15 +0100
Date: Thu, 29 Jan 2004 07:51:11 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290751110037"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=3 Fuz2=45
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:01:53 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6BV-0006Eo-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:53 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6BT-0006ki-Ka
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:51 +0100
Received: (qmail 23287 invoked by uid 500); 29 Jan 2004 07:01:08 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 23189 invoked from network); 29 Jan 2004 07:01:07 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:07 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Av-0001PJ-Ds
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:17 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129080114004B"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=1 Fuz1=1 Fuz2=73
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:04:03 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6Da-0006k9-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:04:02 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Da-0004gk-0V
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:04:02 +0100
Received: (qmail 25571 invoked by uid 500); 29 Jan 2004 07:01:30 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25475 invoked from network); 29 Jan 2004 07:01:29 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:29 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Av-0001PK-Pq
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:17 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290801140050"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=97
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:02:42 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6CF-0006Pu-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:02:39 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6CF-0006n9-Es
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:02:39 +0100
Received: (qmail 23398 invoked by uid 500); 29 Jan 2004 07:01:09 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 23249 invoked from network); 29 Jan 2004 07:01:08 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:08 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Aw-0001PJ-4y
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:18 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290801140053"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-Misty-Metrics: basil 1170; Body=1 Fuz1=1 Fuz2=75
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:11:15 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:03:26 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Cy-0006ab-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:03:24 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Cy-0006pN-Br
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:03:24 +0100
Received: (qmail 23739 invoked by uid 500); 29 Jan 2004 07:01:12 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 23652 invoked from network); 29 Jan 2004 07:01:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:01:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Aw-0001PK-FN
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:01:18 +0100
Date: Thu, 29 Jan 2004 08:01:14 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290801140056"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-Misty-Metrics: basil 1170; Body=2 Fuz1=3 Fuz2=3
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:13:28 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Mi-0000TL-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:13:28 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Mf-0007Ed-8f
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:13:25 +0100
Received: (qmail 62098 invoked by uid 500); 29 Jan 2004 07:11:18 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 62029 invoked from network); 29 Jan 2004 07:11:18 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:18 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kc-0001kt-Vb
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:19 +0100
Date: Thu, 29 Jan 2004 08:11:15 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129081115007A"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1117; Body=1 Fuz1=1 Fuz2=71
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:11:59 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6LH-00007x-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:59 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6LE-0007An-8U
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:56 +0100
Received: (qmail 61138 invoked by uid 500); 29 Jan 2004 07:11:09 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 61084 invoked from network); 29 Jan 2004 07:11:08 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:08 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kc-0001ku-Kq
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:18 +0100
Date: Thu, 29 Jan 2004 08:11:15 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290811150077"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=9
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:14:06 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6NK-0000dZ-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:14:06 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6NI-000532-VP
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:14:05 +0100
Received: (qmail 62201 invoked by uid 500); 29 Jan 2004 07:11:19 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 62086 invoked from network); 29 Jan 2004 07:11:18 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:18 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kd-0001kt-ND
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:19 +0100
Date: Thu, 29 Jan 2004 08:11:16 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290811160080"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=130
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:21:17 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:12:41 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6Lx-0000Ij-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:12:41 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Lw-0004zw-0R
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:12:40 +0100
Received: (qmail 61223 invoked by uid 500); 29 Jan 2004 07:11:10 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 61127 invoked from network); 29 Jan 2004 07:11:09 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:11:09 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6Kd-0001ku-AW
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:11:19 +0100
Date: Thu, 29 Jan 2004 08:11:15 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129081115007E"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=6 Fuz2=115
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Giuliano Gavazzi ([EMAIL PROTECTED]),

Your message
"Re: !!! Virus alerT !!!", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:27:06 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6Zu-0004I5-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:27:06 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Zt-0005YF-Mw
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:27:05 +0100
Received: (qmail 35031 invoked by uid 500); 29 Jan 2004 07:26:27 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 35007 invoked from network); 29 Jan 2004 07:26:26 -
Received: from unknown (HELO mailhost.humph.com) (217.155.139.146)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:26:26 -
Received: from 213-92-104-121.f5.ngi.it ([213.92.104.121] helo=it.humph.com)
by mailhost.humph.com with asmtp (TLSv1:RC4-SHA:128)
(Exim 4.30)
id HS8Q0A-0002KG-N6
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 07:26:34 +
Mime-Version: 1.0
Message-Id: <[EMAIL PROTECTED]>
In-Reply-To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Date: Thu, 29 Jan 2004 08:26:16 +0100
To: "Tomcat Users List" <[EMAIL PROTECTED]>
From: Giuliano Gavazzi <[EMAIL PROTECTED]>
Subject: Re: !!! Virus alerT !!!
Content-Type: text/plain; charset="us-ascii" ; format="flowed"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=2 Fuz2=2
x-recipient:<[EMAIL PROTECTED]>




----- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:21:52 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Uq-0002tX-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:52 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Uo-0007bj-Cm
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:50 +0100
Received: (qmail 7057 invoked by uid 500); 29 Jan 2004 07:21:12 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7025 invoked from network); 29 Jan 2004 07:21:11 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:11 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UL-00025g-Oc
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:21 +0100
Date: Thu, 29 Jan 2004 08:21:17 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908211700B3"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1027; Body=2 Fuz1=3 Fuz2=13
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:22:37 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6VW-00035v-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:22:34 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6VV-0005N2-0l
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:22:33 +0100
Received: (qmail 7203 invoked by uid 500); 29 Jan 2004 07:21:13 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7085 invoked from network); 29 Jan 2004 07:21:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UM-00025g-Eb
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:22 +0100
Date: Thu, 29 Jan 2004 08:21:18 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908211800BB"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=143
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:23:17 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6WF-0003IB-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:23:19 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6WC-0005Ot-7R
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:23:16 +0100
Received: (qmail 7540 invoked by uid 500); 29 Jan 2004 07:21:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7439 invoked from network); 29 Jan 2004 07:21:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UM-00025a-3t
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:22 +0100
Date: Thu, 29 Jan 2004 08:21:18 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908211800B7"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=4 Fuz2=150
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:31:20 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:24:02 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6Wx-0003UF-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:24:03 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6Wu-0007i2-Mu
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:24:00 +0100
Received: (qmail 7567 invoked by uid 500); 29 Jan 2004 07:21:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 7455 invoked from network); 29 Jan 2004 07:21:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:21:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6UM-00025a-Pu
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:21:22 +0100
Date: Thu, 29 Jan 2004 08:21:18 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908211800BE"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1027; Body=1 Fuz1=1 Fuz2=18
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:34:41 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6hD-0006Ij-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:34:39 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6hC-0008Ad-BJ
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:34:38 +0100
Received: (qmail 57100 invoked by uid 500); 29 Jan 2004 07:31:36 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 56977 invoked from network); 29 Jan 2004 07:31:35 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:35 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e4-0002V4-Gs
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:24 +0100
Date: Thu, 29 Jan 2004 08:31:21 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908312100ED"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1156; Body=2 Fuz1=3 Fuz2=106
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:32:42 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6fK-0005ne-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:32:42 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6fJ-0005ky-5F
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:32:41 +0100
Received: (qmail 54759 invoked by uid 500); 29 Jan 2004 07:31:13 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54642 invoked from network); 29 Jan 2004 07:31:13 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:13 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e3-0002V4-Oz
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:23 +0100
Date: Thu, 29 Jan 2004 08:31:20 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908312000E7"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=165
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:33:59 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6gZ-00067Q-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:59 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6gU-000884-EL
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:54 +0100
Received: (qmail 55053 invoked by uid 500); 29 Jan 2004 07:31:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54903 invoked from network); 29 Jan 2004 07:31:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e4-0002V5-Sm
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:24 +0100
Date: Thu, 29 Jan 2004 08:31:21 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908312100F1"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1156; Body=2 Fuz1=3 Fuz2=103
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:22 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:31:58 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6ee-0005a3-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:32:00 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6eb-00082i-5z
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:57 +0100
Received: (qmail 54686 invoked by uid 500); 29 Jan 2004 07:31:13 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54632 invoked from network); 29 Jan 2004 07:31:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e3-0002V5-DX
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:23 +0100
Date: Thu, 29 Jan 2004 08:31:20 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908312000E0"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-sonic.net-Metrics: basil 1156; Body=1 Fuz1=2 Fuz2=2
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:41:22 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:33:19 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6fv-0005xw-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:19 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6fu-0005m7-6O
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:33:18 +0100
Received: (qmail 55006 invoked by uid 500); 29 Jan 2004 07:31:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 54754 invoked from network); 29 Jan 2004 07:31:13 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:31:13 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6e4-0002V5-5Q
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:31:24 +0100
Date: Thu, 29 Jan 2004 08:31:20 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908312000E9"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=174
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear Holger de Wall ([EMAIL PROTECTED]),

Your message
"Re: Apache + Tomcat RH Setup", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:48 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:45:50 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6s2-00012y-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:50 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6s1-0000Ip-Cg
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:49 +0100
Received: (qmail 6930 invoked by uid 500); 29 Jan 2004 07:42:46 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 6782 invoked from network); 29 Jan 2004 07:42:44 -
Received: from unknown (HELO morr.kel.de.core.tng.de) (213.178.66.5)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:42:44 -
Received: by morr.kel.de.core.tng.de (Postfix, from userid 10)
id 3053B6E43F6; Thu, 29 Jan 2004 08:42:46 +0100 (CET)
Received: from lkv39 (lkv39.lkv-sh.de [143.1.1.169])
    by isdn-gw.lkv-sh.de (8.8.8/8.8.8) with ESMTP id IAA01190
for <[EMAIL PROTECTED]>; Thu, 29 Jan 2004 08:14:01 +0100
Content-Type: text/plain;
  charset="iso-8859-1"
From: Holger de Wall <[EMAIL PROTECTED]>
Organization: Landeskontrollverband Schleswig-Holstein e. V.
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Subject: Re: Apache + Tomcat RH Setup
Date: Thu, 29 Jan 2004 08:20:06 +0100
User-Agent: KMail/1.4.3
References: <[EMAIL PROTECTED]>
In-Reply-To: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Message-Id: <[EMAIL PROTECTED]>
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1027; Body=1 Fuz1=1 Fuz2=1
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:43:42 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6py-0000ON-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:43:42 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6px-0006EP-1J
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:43:41 +0100
Received: (qmail 97862 invoked by uid 500); 29 Jan 2004 07:41:17 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97660 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nl-0002vM-Hh
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:25 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290841220119"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=4 Fuz2=202
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:42:11 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6oX-0008OQ-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:13 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6oU-00007M-C4
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:10 +0100
Received: (qmail 97668 invoked by uid 500); 29 Jan 2004 07:41:15 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97567 invoked from network); 29 Jan 2004 07:41:14 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:14 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nk-0002vM-TZ
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:24 +0100
Date: Thu, 29 Jan 2004 08:41:21 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290841210113"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=15
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:44:59 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6rB-0000mp-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:57 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6rA-0000GL-N8
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:56 +0100
Received: (qmail 97991 invoked by uid 500); 29 Jan 2004 07:41:18 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97673 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nl-0002vS-SA
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:25 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129084122011C"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=24
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:44:20 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6qa-0000aH-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:20 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6qZ-0000Dk-81
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:44:19 +0100
Received: (qmail 97895 invoked by uid 500); 29 Jan 2004 07:41:17 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97679 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nm-0002vM-AR
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:26 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129084122011E"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=1 Fuz1=1 Fuz2=22
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:45:49 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:42:57 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6pE-0000Bg-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:56 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6pE-0000AA-5A
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:42:56 +0100
Received: (qmail 97770 invoked by uid 500); 29 Jan 2004 07:41:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 97628 invoked from network); 29 Jan 2004 07:41:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:41:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6nl-0002vS-8R
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:41:25 +0100
Date: Thu, 29 Jan 2004 08:41:22 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290841220117"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: basil 1025; Body=2 Fuz1=2 Fuz2=18
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:12 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:50:46 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6wo-0002Wf-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:50:46 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6wf-0000Xy-CN
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:50:37 +0100
Received: (qmail 27397 invoked by uid 500); 29 Jan 2004 07:46:08 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 27281 invoked from network); 29 Jan 2004 07:46:07 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:46:07 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s8-00039F-Jw
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:56 +0100
Date: Thu, 29 Jan 2004 08:45:50 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="----=_NextPart_f0401290845500152"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:12 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:49:56 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6w0-0002GS-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:56 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6vz-0000VW-O0
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:55 +0100
Received: (qmail 26083 invoked by uid 500); 29 Jan 2004 07:45:55 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25981 invoked from network); 29 Jan 2004 07:45:54 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:54 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s7-00039F-Ni
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:55 +0100
Date: Thu, 29 Jan 2004 08:45:49 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129084549014E"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SIHOPE-DCC-3-Metrics: basil 1085; Body=1 Fuz1=1 Fuz2=64
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:13 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:47:18 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6tS-0001Sv-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:47:18 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6tR-0000Nu-Jw
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:47:17 +0100
Received: (qmail 24968 invoked by uid 500); 29 Jan 2004 07:45:45 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 24835 invoked from network); 29 Jan 2004 07:45:43 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:43 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s5-00039A-Vs
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:54 +0100
Date: Thu, 29 Jan 2004 08:45:49 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290845490148"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-meer-Metrics: basil 1086; Body=2 Fuz1=2 Fuz2=2
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:12 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:48:38 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6uk-0001r0-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:48:38 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6ug-0006RE-Ts
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:48:35 +0100
Received: (qmail 25501 invoked by uid 500); 29 Jan 2004 07:45:49 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25391 invoked from network); 29 Jan 2004 07:45:48 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:48 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s8-00039L-2M
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:56 +0100
Date: Thu, 29 Jan 2004 08:45:50 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290845500150"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=225
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:13 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:49:17 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6vL-00023k-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:15 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6vK-0006TU-5K
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:49:14 +0100
Received: (qmail 25696 invoked by uid 500); 29 Jan 2004 07:45:51 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25561 invoked from network); 29 Jan 2004 07:45:50 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:50 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s9-00039F-7d
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:57 +0100
Date: Thu, 29 Jan 2004 08:45:52 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290845520157"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=230
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:52:13 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:47:56 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6u8-0001fA-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:48:00 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6u3-0006P2-Ol
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:47:55 +0100
Received: (qmail 25273 invoked by uid 500); 29 Jan 2004 07:45:47 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 25160 invoked from network); 29 Jan 2004 07:45:46 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:45:46 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6s8-00039L-S0
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:45:56 +0100
Date: Thu, 29 Jan 2004 08:45:51 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290845510155"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=219
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:54:19 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:54:15 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am70B-0003Z4-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:54:15 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am709-0000jz-3o
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:54:13 +0100
Received: (qmail 60603 invoked by uid 500); 29 Jan 2004 07:52:10 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 60511 invoked from network); 29 Jan 2004 07:52:10 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:52:10 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6yK-0003SY-4l
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:20 +0100
Date: Thu, 29 Jan 2004 08:52:15 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290852150191"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=2 Fuz1=2 Fuz2=79
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:54:19 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:53:28 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am6zT-0003Ke-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:53:31 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6zP-0000h1-Qx
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:53:28 +0100
Received: (qmail 60394 invoked by uid 500); 29 Jan 2004 07:52:09 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 60273 invoked from network); 29 Jan 2004 07:52:07 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:52:07 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6yI-0003SY-2B
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:18 +0100
Date: Thu, 29 Jan 2004 08:52:13 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f0401290852130185"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=2 Fuz1=2 Fuz2=77
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:54:18 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:52:50 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am6yo-00039i-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:50 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am6yn-0006eU-A0
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:49 +0100
Received: (qmail 60109 invoked by uid 500); 29 Jan 2004 07:52:06 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 60078 invoked from network); 29 Jan 2004 07:52:05 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:52:05 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6yG-0003SS-BM
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:16 +0100
Date: Thu, 29 Jan 2004 08:52:12 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129085212017F"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=5 Fuz2=5
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:59:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:56:20 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am72D-0004D0-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:56:21 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am72B-0000pp-E5
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:56:19 +0100
Received: (qmail 60935 invoked by uid 500); 29 Jan 2004 07:52:14 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 60807 invoked from network); 29 Jan 2004 07:52:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:52:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6yJ-0003Si-QI
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:19 +0100
Date: Thu, 29 Jan 2004 08:52:14 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129085214018E"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=2 Fuz1=2 Fuz2=83
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:59:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:55:50 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am71g-00042T-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:55:48 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am71d-0006mG-T4
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:55:46 +0100
Received: (qmail 60833 invoked by uid 500); 29 Jan 2004 07:52:13 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 60737 invoked from network); 29 Jan 2004 07:52:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:52:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6yJ-0003SY-Es
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:19 +0100
Date: Thu, 29 Jan 2004 08:52:13 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129085213018C"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-TISCALI.BE-Metrics: nusku 1027; Body=1 Fuz1=1 Fuz2=27
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:59:22 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:58:47 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am74c-00050H-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:58:50 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am74Y-0006xu-IF
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:58:46 +0100
Received: (qmail 73303 invoked by uid 500); 29 Jan 2004 07:54:16 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 73129 invoked from network); 29 Jan 2004 07:54:15 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:54:15 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am70I-0003Xr-E8
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:54:22 +0100
Date: Thu, 29 Jan 2004 08:54:19 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908541901A1"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=2 Fuz1=4 Fuz2=281
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:59:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:58:07 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am73v-0004oh-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:58:07 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am73u-0000vE-DK
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:58:06 +0100
Received: (qmail 73002 invoked by uid 500); 29 Jan 2004 07:54:14 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 72837 invoked from network); 29 Jan 2004 07:54:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:54:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am70J-0003Xr-5f
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:54:23 +0100
Date: Thu, 29 Jan 2004 08:54:19 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908541901A8"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=2 Fuz1=2 Fuz2=86
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:59:22 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:57:28 +0100
Received: from mx3.mail.be.easynet.net ([2001:6f8:200:1::1:80])
by pop3.mail.be.easynet.net with esmtp (TLSv1:DHE-RSA-AES256-SHA:256)
(Exim 4.12)
id 1Am73H-0004a7-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:57:27 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx3.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am73G-0006tK-DD
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:57:26 +0100
Received: (qmail 72971 invoked by uid 500); 29 Jan 2004 07:54:13 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 72829 invoked from network); 29 Jan 2004 07:54:12 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:54:12 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am70I-0003Xs-T1
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:54:22 +0100
Date: Thu, 29 Jan 2004 08:54:19 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f04012908541901A4"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-x-mailer.co.uk-Metrics: nusku 1192; Body=1 Fuz1=5 Fuz2=271
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Mycom Europe: Mail Delivery Error - tomcat-user@jakarta.apache.org

2004-01-29 Thread [EMAIL PROTECTED]
- THIS IS AN AUTOMATED ERROR REPLY ---
PLEASE CHECK THE SPELLING OF THE EMAIL-ADDRESS

Dear [EMAIL PROTECTED] ([EMAIL PROTECTED]),

Your message
"Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]", sent to <[EMAIL PROTECTED]>

cannot be delivered due to the following error:
[EMAIL PROTECTED] - no such mailbox at MYCOMEUROPE.COM.

Generally this means that
a) There _really_ isn't such an address here at Mycom
b) You have misspelled the address (and due to misspelling, refer to a))

Below is the header from the original message:

Received: from pop3.easynet.be by FTGate SmartPop;
Thu, 29 Jan 2004 08:59:21 +0100
Return-path: <[EMAIL PROTECTED]>
Envelope-to: [EMAIL PROTECTED]
Delivery-date: Thu, 29 Jan 2004 08:55:03 +0100
Received: from mx.mail.be.easynet.net ([2001:6f8:200:1::1:68])
by pop3.mail.be.easynet.net with esmtp (TLSv1:EDH-RSA-DES-CBC3-SHA:168)
(Exim 4.12)
id 1Am70x-0003nn-00
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:55:03 +0100
Received: from daedalus.apache.org ([208.185.179.12] helo=mail.apache.org)
by mx.mail.be.easynet.net with smtp (Exim 4.24)
id 1Am70v-0000mJ-Vr
    for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:55:02 +0100
Received: (qmail 60740 invoked by uid 500); 29 Jan 2004 07:52:12 -0000
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Post: <mailto:[EMAIL PROTECTED]>
List-Id: "Tomcat Users List" 
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Received: (qmail 60661 invoked from network); 29 Jan 2004 07:52:11 -
Received: from unknown (HELO smtp2.mail.be.easynet.net) (212.100.160.76)
  by daedalus.apache.org with SMTP; 29 Jan 2004 07:52:11 -
Received: from 213-193-188-11.adsl.easynet.be ([213.193.188.11] helo=mycomeurope.com)
by smtp2.mail.be.easynet.net with esmtp (Exim 4.22)
id 1Am6yI-0003SY-R3
for [EMAIL PROTECTED]; Thu, 29 Jan 2004 08:52:18 +0100
Date: Thu, 29 Jan 2004 08:52:13 +0100
Message-Id: <[EMAIL PROTECTED]>
from: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
to: <[EMAIL PROTECTED]>
subject: Mycom Europe: Mail Delivery Error - [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="=_NextPart_f040129085213018A"
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
X-DCC-SPAMCHECK.NET-Metrics: basil 1168; Body=1 Fuz1=1 Fuz2=80
x-recipient:<[EMAIL PROTECTED]>




- THIS IS AN AUTOMATED ERROR REPLY ---

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

Wrong Address

2004-01-31 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Wrong Address

2004-01-31 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Wrong Address

2004-02-01 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Wrong Address

2004-02-01 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


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



Primo Censimento della Musica Italiana

2004-03-23 Thread [EMAIL PROTECTED]
 Grazie per aver scritto a  [EMAIL PROTECTED], il tuo messaggio è giunto a 
destinazione!

Approfittiamo per informarti che è nato all'indirizzo www.censimentomusica.it un nuovo 
progetto a carattere nazionale: Il I° Censimento Italiano della Musica .

Se non l'hai già fatto ti preghiamo di iscriverti!

Grazie

Lo Staff di
AttikMusic.com


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



Tomcat clustering

2003-09-27 Thread [EMAIL PROTECTED]
Hi,   has anybody tried clustering Tomcat?  I have read this article 
http://www.onjava.com/pub/a/onjava/2002/07/17/tomcluster.html  but has been able to 
successfully configure this.

Thanks for any help.

Bern

Re: Personalized Tomcat Manager

2003-09-27 Thread [EMAIL PROTECTED]
Hopefully Likha DevCentre is going in that direction.

- Original Message - 
From: "Grzegorz Malinka" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Saturday, September 27, 2003 12:06 PM
Subject: Re: Personalized Tomcat Manager


> Yes... bu that solution gives access permision to all application deployed
> by Tomcat Server...
> I would to give reload, install, remove command to application but to user
> which is its owner.
>
> http://host:8180/manager/reload?path=/script
>
> some user called i.e. "jack" can reload only application called "script"
and
> cannot do operations on application deployed within a "webapps" directory.
>
> IMHO... only way is to make some corrections in either Manager Container
or
> Users Database Container and  recompile.
>
> > You might want to edit "tomcat-users.xml" configuration file.
> >
> > Or use "Likha DevCentre".  It simplifies your development life cycle in
> > Tomcat.
> > Download it from www.downloads.com or www.javashareware.com.
> >
> > Cheers
> >
> > Bern
>
> > I have to give access permission to Tomcat Manager for several users,
> which
> > should manage just its application (not all).
> >
> > Is it possible?
>
>
>
> -----
> 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]



Re: RH9's Apache 2 and Tomcat 4

2003-10-05 Thread [EMAIL PROTECTED]
I am using RH9 with the Apache2 that comes with it. Recently I've installed
Tomcat5 with mod_jk2 without too many problems (jakarta-tomcat-5.0.7.tar.gz and
 mod_jk2-ap20-2.0.1-1jpp.i386.rpm). Proper configuration of workers2.properties
and jk2.properties is essential I believe. I got a few sites running as virtual
hosts on Apache2 as well as on Tomcat5 and everything seems to be fine so far.

http://archive.apache.org/dist/jakarta/tomcat-5/v5.0.7-alpha/bin/
http://archive.apache.org/dist/jakarta/tomcat-connectors/jk2/v2.0.1/rpms/
-> http://archive.apache.org/dist/jakarta/tomcat-connectors/jk2/v2.0.1/doc/

Cheers,
Bart

Quoting Mike Millson <[EMAIL PROTECTED]>:

> I have heard the claims before about not using the default Apache that
> comes w/ RH 9, but I have never seen any concrete evidence for not doing
> this. Do you have any specifics such as articles or facts that show the
> downside of using the default Apache that comes w/ RH?
> 
> Thank you,
> Mike
> 
> On Sat, 2003-10-04 at 21:54, Chong Yu Meng wrote:
> > Hi Dave,
> > 
> > Do NOT use the default Apache that comes with RH9 ! According to some 
> > reports, there are some serious bugs inside it. I'm using RH9, but my 
> > Apache comes from Falsehope.com 
> > (http://ftp.falsehope.com/home/gomez/apache2/). It takes a bit of 
> > tweaking, but you can get the Falsehope rpm to play nice with Tomcat.
> > 
> > Regards,
> > pascal chong
> > 
> > 
> > Dave Thomas wrote:
> > 
> > >We have an application that we have been suing Apache 1.3 with Tomcat
> > >3.3 with for a while and I would like to test out using our app with
> > >Tomcat 4 and RedHats default install of Apache 2. I have found a few
> > >'how tos' on the subject but they all seem to be a bit dated and do not
> > >apply to the current release of Tomcat and mod_jk2. Can anyone suggest
> > >any docs or offer any info on this subject?
> > >
> > >Also, how if the performance for Tomcat 4 vs Tomcat 3?
> > >
> > >Thanks for any info,
> > >Dave Thomas
> > >[EMAIL PROTECTED]
> > >
> > >
> > >
> > >---------
> > >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]
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



http://WWW.ADVENTUREFORUM.NET - Forum on World Travel and Adventure -
~~~~~~~~
http://WWW.ADVENTUREFORUM.NET/worldfacts 

http://WWW.ADVENTUREFORUM.NET/worldnews


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



Re: What is a good dev-enviroment for servlet/tomcat?

2003-10-08 Thread [EMAIL PROTECTED]
Hi Joe,

Download DevCentre  www.likhasoftware.com.  It will simplify some stuff for
you.

Bern

- Original Message - 
From: "joe udder" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, October 08, 2003 10:57 AM
Subject: What is a good dev-enviroment for servlet/tomcat?


> Hello.
>
> I am thinking of how I can improve my "development enviroment" when doing
my
> webapps.
> Until now, I've used a handcrafted "build.xml" to make my webapp, and then
> the usual
>
> _
> Tired of spam? Get advanced junk mail protection with MSN 8.
> http://join.msn.com/?page=features/junkmail
>
>
> ---------
> 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]



Re: Tomcat 4 + Apache 1.3 + mod_jk lb session loss

2003-10-09 Thread [EMAIL PROTECTED]
Just as a quick check of the obvious.

You do have jvmRoute set correctly on the s for each
Tomcat server, don't you?
You aren't using BASIC authentication by any chance are you?

G. Wade

Ned Regina wrote:

I'm trying to load balance multiple Tomcat 4.1.27 servers behind Apache 
1.3.28 using jk(1) on RedHat 9.  It appears that the sessions are not 
being maintained when more than one Tomcat server is running.  A quick 
test page which prints application, session, request, and cookie 
information shows a new JSESSIONID cookie every time the page loads as 
well as alternating "Real Path" values (for each Tomcat server 
instance).  I've had the same configuration working perfectly for nearly 
a year using Tomcat 4.0.X, Apache 1.3.x, and RedHat 7.2 running on three 
separate servers (one apache+mod_jk+tomcat, the others just tomcat).  
Initially, I had set up a multiple server system with the new software 
when I noticed this problem.  To simplify, I've set up a test 
environment on one server with tomcat instance 1 running on ports 
8005,8009,8443,and 8080 and tomcat instance 2 running on ports 
9005,9009,9443, and 9080.  I'm using the default server.xml for each 
with the ROOT context statement un-commented and the ports changed as 
above.  This is what my workers.properties looks like (although it's 
gone through a great many permutations in the debug process).

#
# workers.properties
#
# In Unix, we use forward slashes:
ps=/
# list the workers by name

worker.list=router

# --
# Load Balance remote tomcat server test
# --
worker.router.type=lb
worker.router.balanced_workers=live2,live3
worker.router.sticky_session=1
worker.live2.port=8009
worker.live2.host=192.168.254.102
worker.live2.type=ajp13
worker.live2.lbfactor=100
worker.live3.port=9009
worker.live3.host=192.168.254.102
worker.live3.type=ajp13
worker.live3.lbfactor=100
This has been a very frustrating problem since it was something that 
worked quite well until now.  I'm going to keep removing layers (going 
back to RH7.x, then TC4.0X, etc.), but if anybody has any information 
about this, it would be a great help.  Thanks.

-Ned Regina

-----
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]


  1   2   3   4   >