Re: Session Related

2002-03-17 Thread Skaag [Orion]


There is a way to setup a load balancer so that a customer, once connected
to the cluster would always receive the same machine. This is all up to
your load balancer guys then. Tell them you need people to always get the
same server. For them it's not a big deal because their load balancers would
still work, distributing whole sessions, and not just individual
transactions.

I know this wasn't the answer you expected, but it fixes your problem and
doesn't require you to change your strange system :-)
(Also adheres to the If it works, don't touch it philosophy).

Skaag



- Original Message -
From: Michael Shoemaker [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Saturday, March 16, 2002 10:53 PM
Subject: OT: Session Related


 Hello gang

 I have a question about a situation that I am facing.  Currently we are
 using servlets to store session information.  i.e.  For instance, you
 the front end people wanted to store data into the session they would
 call SessionServlet?step=savesessionId=123myVal=xyz.  In turn a call
 to it with step=get would return xml containing the value previously
 stored.  It's a somewhat rudimentary way of getting around cookies.  Our
 front end is written in a version of Vignette that doesn't support
 jsp(another story).  My question is, the infrastructure guys recently
 introduced a load balancers and now we are not guaranteed to get the
 same server.  Big problem.  Have any of you solved a problem similar to
 this.  Unfortunately, upgrading to the next version of Vignette isn't
 the solution.  We are about a year or more away budget wise.  Thanks
 again for taking the time to read an off topic post.


 Mike



 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com









Whitespace/TRIM/JSP oh my!

2001-11-16 Thread Orion

This might be a bug, but its something to look  into when using .JSP files.

When accepting input from a textbox, i was trying to use trim() and it 
was not working.

String name=request.getParameter(name);
name=name.trim();

I found it odd, so I tried...

out.println(Char is:  + (short)name.charAt(0));

And I got the value 160.

So I was able to replace 160 with nothing using replace(), BUT it seemed
quite stupid that I had to.

I'm using FreeBSD, and the browser was IE 5.0 that submitted the form.

Derek Young





Re: Registering PL/SQL table OUT parameter in jdbc and retrieving ( challenging question)

2001-08-21 Thread bombalaa-orion








  Hi Komal.
  
  seems that your procedure has 2 OUT Parameters ...
  
  TYPE id_tab IS TABLE OF 
  pmnt_rsch_scn.PMNT_RSRCH_SCN_ID%TYPEINDEX BY BINARY_INTEGER;
  TYPE scn_tab IS TABLE OF 
  pmnt_rsch_scn.SCENARIO_DESC%TYPEINDEX BY BINARY_INTEGER;
  For table of index , RegisterOutParameter does not work ...
  also if you are using thin client then also it would not work 
  ...
  
  works for oci ...
  
  Instead try this : 
  
  cstmt.registerIndexTableOutParameter(1,30, 
  Types.INTEGER,0);cstmt.registerIndexTableOutParameter(2,30, 
  Types.VARCHAR,0);
  and then you have to use Datum to get the values...
  
  if u still want more info then mail me ..
  
  bombalaa.
  
  ---Original Message---
  
  
  From: Orion-Interest
  Date: Wednesday, August 
  22, 2001 08:05:05 AM
  To: Orion-Interest
  Subject: Registering 
  PL/SQL table OUT parameter in jdbc and retrieving ( challenging 
  question)
  Hi All,Thanks in advance if i would be given the 
  suggestion.I'm nowcalling a stored proceudre in Oracle from Java,where 
  I useCallableStatement,but i've got to stop at the point that when 
  iregister the output parameter,i found no data type matches 
  thisnested table type within this procedure in Oracle.could 
  you please any body have any idea.ThanksKomal 
  Kandi.pls see hereimport java.sql.*;import 
  java.util.*;public class GetTsysNoteOptions{public static 
  void main(String args[])throws SQLException{String 
  url="jdbc:odbc:PRA";try{Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");}catch(ClassNotFoundException 
  e){System.err.println("ClassNotFoundException 
  thrown");System.err.println(e.getMessage());}Connectionconn=DriverManager.getConnection(url,"pmtrsh_tmp","pmtrsh_tmp2000");CallableStatement 
  callst=conn.prepareCall("{callCall_Proc(?,?)}");callst.registerOutParameter(1, 
  ???); callst.registerOutParameter(2, ???); // what i have to register 
  i triedother type but it's not 
  workingcallst.execute();/*case 1:??? --- 
  java.sql.Types.OTHERint that case iam geting these 
  errorORA-06550: line 1, column 7:PLS-00306: wrong number or 
  types of arguments in call to'GET_ARCHIVE_DATE'ORA-06550: line 1, 
  column 7:PL/SQL: Statement ignoredcase 2:??? --- 
  java.sql.Types.OTHER,"type"int that case iam geting these 
  errorORA-06550: line 1, column 7:PLS-00306: wrong number or 
  types of arguments in call to'GET_ARCHIVE_DATE'ORA-06550: line 1, 
  column 7:PL/SQL: Statement ignoredor some other tries iam 
  geting Sql type cast exception*/System.out.println("The TSYS 
  Variables are 
  :");System.out.println(intArr[1]);System.out.println(strArr[1]);callst.close();}}the 
  procedure( in a package):CREATE OR REPLACE PACKAGE GetTSYSNoteOpt_Pkg 
  ASTYPE id_tab IS TABLE OF 
  pmnt_rsch_scn.PMNT_RSRCH_SCN_ID%TYPEINDEX BY BINARY_INTEGER;TYPE 
  scn_tab IS TABLE OF pmnt_rsch_scn.SCENARIO_DESC%TYPEINDEX BY 
  BINARY_INTEGER;PROCEDURE Sp_GetTSYSNoteOptions (id out id_tab,scn out 
  scn_tab);END GetTSYSNoteOpt_Pkg;/CREATE OR REPLACE PACKAGE 
  BODY GETTSYSNOTEOPT_PKG AScursor c1 is 
  selectpmnt_rsch_scn.PMNT_RSRCH_SCN_ID,pmnt_rsch_scn.SCENARIO_DESC 
  frompmnt_rsch_scn;procedure Sp_GetTSYSNoteOptions(id out 
  id_tab,scn out scn_tab) is--type rec is record--( l_id 
  pmnt_rsch_scn.PMNT_RSRCH_SCN_ID%type,-- l_scn 
  pmnt_rsch_scn.SCENARIO_DESC%type);--rec1 rec;beginopen 
  c1;for i in 1..40loopfetch c1 into id(i),scn(i);exit when 
  c1%notfound;end loop;close c1;EXCEPTIONWHEN OTHERS 
  THENDBMS_OUTPUT.PUT_LINE('An Exception has occured');for i in 
  1..40loopdbms_output.put_line(id(i));dbms_output.put_line(scn(i));end 
  loop;end;end GetTSYSNoteOpt_Pkg;/





	
	
	
	
	
	
	




_IncrediMail - Email has finally 
evolved - Click 
Here



Automatic flushout in Orion?

2001-08-13 Thread struts orion

Hi
Sometimes my messages resulting from
System.out.println are not automatically be flushed
onto the Orion server console. It is flushing out only
When I press the enter key. Just because of this the
execution process is not going normal and is taking
long times.

Please suggest me a way by which messages can be
flushed out immediately and the execution process will
continue without any delay.

Have a nice time

Thanks
Eda 

__
Do You Yahoo!?
Send instant messages  get email alerts with Yahoo! Messenger.
http://im.yahoo.com/




No Subject

2001-06-28 Thread struts orion

Hi

I am using oracle thin driver
the data-source.xml configuration is 

data-source
class=com.evermind.sql.DriverManagerDataSource
name=oraclethin
location=jdbc/Oracle
connection-driver=oracle.jdbc.driver.OracleDriver
username=varro
password=varro
url=jdbc:oracle:thin:@192.0.0.8:1521:hcp
inactivity-timeout=30
/ 

How to use/locate this data source in a simple client
application which uses this datasource and connects to
database
If possible give example code for client application

thanks  regards
praveen



__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/




Test

2001-06-27 Thread Orion

Test

--
Aaron Scott-Boddendijk
+64 7 838 3371 VOICE
+64 7 838 3372 FAX
e-Mail: [EMAIL PROTECTED]






Cookies larger than 20k

2001-06-26 Thread Orion Developers

We're having problems passing cookies greater then 20k in size.  We get a 
http: 413 error, and the servlets seem to truncate over that limit.

Also, is there a version/bug fix list available to the public?  we are on 
1.4.5 and I am wondering about 1.5.2, and what issues have been addressed.

Finally, has ANYONE had any success getting ahold of Cadrion, the alleged 
'support partner' of Orion??


_
Get your FREE download of MSN Explorer at http://explorer.msn.com





HELP!!!! BMP example on Orion

2001-06-25 Thread struts orion

Hi All,
Please suggest me an url where can i find an example
of BMP entity bean with servlet or jsp client.
And steps for porting it onto orionserver1.5.2

Thanks and Regards
Praveen


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/




Session Timeout

2001-06-20 Thread struts orion


Hi all,
some basic questions

1. In orion server to set session time  where do
   we make the necessary changes.

2. what is the save method for shutting the 
   orionserver.

Thanks

Praveen

__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/




Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id VAA22135
for barak@localhost; Tue, 15 May 2001 21:35:33 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Tue, 15 May 2001 21:35:34 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4FJT4121057
for [EMAIL PROTECTED]; Tue, 15 May 2001 22:29:05 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id TAA29423;
Tue, 15 May 2001 19:41:28 -0100
Received: from naver335.naver.com ([211.218.150.15])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id UAA25141
for [EMAIL PROTECTED]; Tue, 15 May 2001 20:14:13 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 318 invoked by uid 0); 15 May 2001 17:18:06 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver335.naver.com with SMTP; 15 May 2001 17:18:06 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_620EPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 02:18:06 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_620EPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_620EZBQXFQQMYJ0CCJD0


--Boundary-00=_620EZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_620EZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id IAA23702
for barak@localhost; Wed, 16 May 2001 08:14:58 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 08:15:03 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G69B121565
for [EMAIL PROTECTED]; Wed, 16 May 2001 09:09:12 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id FAA19429;
Wed, 16 May 2001 05:34:06 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id FAA01489
for [EMAIL PROTECTED]; Wed, 16 May 2001 05:12:52 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 9021 invoked by uid 0); 16 May 2001 02:16:43 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 02:16:43 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_WZOEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 11:16:44 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_WZOEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_WZOEZBQXFQQMYJ0CCJD0


--Boundary-00=_WZOEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_WZOEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23417
for barak@localhost; Wed, 16 May 2001 06:03:19 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:03:21 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G3vH114484
for [EMAIL PROTECTED]; Wed, 16 May 2001 06:57:17 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id DAA09585;
Wed, 16 May 2001 03:49:42 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00437
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:12:01 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 2711 invoked by uid 0); 16 May 2001 01:15:52 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 01:15:52 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:15:53 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_H6MEZBQXFQQMYJ0CCJD0


--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id JAA23874
for barak@localhost; Wed, 16 May 2001 09:33:08 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 09:33:12 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G7RC126740
for [EMAIL PROTECTED]; Wed, 16 May 2001 10:27:13 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id GAA24326;
Wed, 16 May 2001 06:24:19 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id GAA02984
for [EMAIL PROTECTED]; Wed, 16 May 2001 06:43:40 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 18157 invoked by uid 0); 16 May 2001 03:47:32 -
Received: from unknown (HELO naver334) (211.218.150.14)
  by naver336.naver.com with SMTP; 16 May 2001 03:47:32 -
MIME-Version: 1.0
Content-Id: 3B01F80C.01.06970@naver334
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_85TEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 12:46:20 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_85TEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_85TEZBQXFQQMYJ0CCJD0


--Boundary-00=_85TEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_85TEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23417
for barak@localhost; Wed, 16 May 2001 06:03:19 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:03:21 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G3vH114484
for [EMAIL PROTECTED]; Wed, 16 May 2001 06:57:17 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id DAA09585;
Wed, 16 May 2001 03:49:42 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00437
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:12:01 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 2711 invoked by uid 0); 16 May 2001 01:15:52 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 01:15:52 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:15:53 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_H6MEZBQXFQQMYJ0CCJD0


--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23417
for barak@localhost; Wed, 16 May 2001 06:03:19 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:03:21 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G3vH114484
for [EMAIL PROTECTED]; Wed, 16 May 2001 06:57:17 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id DAA09585;
Wed, 16 May 2001 03:49:42 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00437
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:12:01 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 2711 invoked by uid 0); 16 May 2001 01:15:52 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 01:15:52 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:15:53 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_H6MEZBQXFQQMYJ0CCJD0


--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id QAA16368
for barak@localhost; Wed, 16 May 2001 16:41:03 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 16:41:04 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4GEYw101918
for [EMAIL PROTECTED]; Wed, 16 May 2001 17:34:59 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id OAA07893;
Wed, 16 May 2001 14:04:21 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id OAA00783
for [EMAIL PROTECTED]; Wed, 16 May 2001 14:20:56 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 20321 invoked by uid 0); 16 May 2001 07:24:59 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 07:24:59 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_N93FPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 16:24:59 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_N93FPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_N93FZBQXFQQMYJ0CCJD0


--Boundary-00=_N93FZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_N93FZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23417
for barak@localhost; Wed, 16 May 2001 06:03:19 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:03:21 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G3vH114484
for [EMAIL PROTECTED]; Wed, 16 May 2001 06:57:17 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id DAA09585;
Wed, 16 May 2001 03:49:42 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00437
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:12:01 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 2711 invoked by uid 0); 16 May 2001 01:15:52 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 01:15:52 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:15:53 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_H6MEZBQXFQQMYJ0CCJD0


--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23532
for barak@localhost; Wed, 16 May 2001 06:51:31 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:51:36 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G4j1116692
for [EMAIL PROTECTED]; Wed, 16 May 2001 07:45:01 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id EAA12786;
Wed, 16 May 2001 04:22:31 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00897
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:38:22 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 5381 invoked by uid 0); 16 May 2001 01:42:13 -
Received: from unknown (HELO naver334) (211.218.150.14)
  by naver336.naver.com with SMTP; 16 May 2001 01:42:13 -
MIME-Version: 1.0
Content-Id: 3B01DAAF.01.19420@naver334
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_FCNEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:41:03 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_FCNEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_FCNEZBQXFQQMYJ0CCJD0


--Boundary-00=_FCNEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_FCNEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23417
for barak@localhost; Wed, 16 May 2001 06:03:19 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:03:21 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G3vH114484
for [EMAIL PROTECTED]; Wed, 16 May 2001 06:57:17 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id DAA09585;
Wed, 16 May 2001 03:49:42 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00437
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:12:01 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 2711 invoked by uid 0); 16 May 2001 01:15:52 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 01:15:52 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:15:53 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_H6MEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_H6MEZBQXFQQMYJ0CCJD0


--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_H6MEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id GAA23492
for barak@localhost; Wed, 16 May 2001 06:33:12 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 06:33:12 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4G4Qq116065
for [EMAIL PROTECTED]; Wed, 16 May 2001 07:26:52 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id EAA14446;
Wed, 16 May 2001 04:38:31 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id EAA00831
for [EMAIL PROTECTED]; Wed, 16 May 2001 04:37:46 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 5311 invoked by uid 0); 16 May 2001 01:41:38 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 01:41:38 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_FDNEPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 10:41:39 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_FDNEPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_FDNEZBQXFQQMYJ0CCJD0


--Boundary-00=_FDNEZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPENh
biB3ZSBnZXQgcmlkIG9mIHRoZXNlIG1lc3NhZ2VzIGZyb20gbmF2ZXIuY29tPz4gwMwgtNnAvbD6
ILCwwLogwMzAr7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDW
vcC0z7TZLiCzqsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0K

--Boundary-00=_FDNEZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id AAA17248
for barak@localhost; Thu, 17 May 2001 00:14:37 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Thu, 17 May 2001 00:14:38 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4GM8R129656
for [EMAIL PROTECTED]; Thu, 17 May 2001 01:08:28 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id WAA09742;
Wed, 16 May 2001 22:11:50 -0100
Received: from naver337.naver.com ([211.218.150.17])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id WAA10754
for [EMAIL PROTECTED]; Wed, 16 May 2001 22:59:28 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 19416 invoked by uid 0); 16 May 2001 20:03:28 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver337.naver.com with SMTP; 16 May 2001 20:03:28 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_SD2GPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Thu, 17 May 2001 05:03:28 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_SD2GPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_SD2GZBQXFQQMYJ0CCJD0


--Boundary-00=_SD2GZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPEFu
dGlnZW4gZm91bmQgRXhjZWVkaW5nbHlOZXN0ZWQgdmlydXM+IMDMILTZwL2w+iCwsMC6IMDMwK+3
ziDA/LzbIL3HxtDH373AtM+02S4KCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tCgq89r3FwNrAxyC43sDPILq4sPwgv+u3rsDMILChtebC9yDA1r3AtM+02S4gs6rB
37+hILTZvcMgvcO1tcfPvcq9w7/ALgoKCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tCg=
--Boundary-00=_SD2GZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to, 
REMOVE me from such list immediately.  I suggest that you make this list 
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

-- 



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id XAA17104
for barak@localhost; Wed, 16 May 2001 23:03:00 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 23:03:01 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4GKvH125022
for [EMAIL PROTECTED]; Wed, 16 May 2001 23:57:18 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id VAA07585;
Wed, 16 May 2001 21:03:43 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id VAA10105
for [EMAIL PROTECTED]; Wed, 16 May 2001 21:51:21 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 14349 invoked by uid 0); 16 May 2001 18:55:26 -
Received: from unknown (HELO naver332) (211.218.150.12)
  by naver336.naver.com with SMTP; 16 May 2001 18:55:26 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_F8ZFPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?=
Date: Thu, 17 May 2001 03:55:27 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_F8ZFPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_F8ZFZBQXFQQMYJ0CCJD0


--Boundary-00=_F8ZFZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPE5B
VkVSLU1BSUxFUj4gwMwgtNnAvbD6ILCwwLogwMzAr7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8g
uriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCzqsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoK
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0K

--Boundary-00=_F8ZFZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm
PWh0dHA6Ly93d3cubmF2ZXIuY29tPjxpbWcgc3JjPWh0dHA6Ly9zdGF0aWMubmF2ZXIuY29tL21h

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id SAA16612
for barak@localhost; Wed, 16 May 2001 18:27:08 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 18:27:09 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4GGKi110087
for [EMAIL PROTECTED]; Wed, 16 May 2001 19:20:45 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id OAA09831;
Wed, 16 May 2001 14:47:31 -0100
Received: from naver336.naver.com ([211.218.150.16])
by paladin.evermind.net (8.9.3/8.9.3) with SMTP id OAA01808
for [EMAIL PROTECTED]; Wed, 16 May 2001 14:47:29 -0400
Message-Id: [EMAIL PROTECTED]
Received: (qmail 25095 invoked by uid 0); 16 May 2001 07:51:36 -
Received: from unknown (HELO naver333) (211.218.150.13)
  by naver336.naver.com with SMTP; 16 May 2001 07:51:36 -
MIME-Version: 1.0
Content-Id: [EMAIL PROTECTED]
Content-Type: Multipart/Mixed;
  boundary=Boundary-00=_ZH4FPWYXFQQMYJ0CCJD0
X-Mailer: Orion ListServer
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: =?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?Date: 
Wed, 16 May 2001 16:51:35 +0900 (KST)
Reply-To: Orion-Interest [EMAIL PROTECTED]


--Boundary-00=_ZH4FPWYXFQQMYJ0CCJD0
Content-Type: Multipart/Alternative;
  boundary=Boundary-00=_ZH4FZBQXFQQMYJ0CCJD0


--Boundary-00=_ZH4FZBQXFQQMYJ0CCJD0
Content-Type: Text/Plain;
  charset=euc-kr
Content-Transfer-Encoding: base64

Ck5BVkVSIC0gaHR0cDovL3d3dy5uYXZlci5jb20vCi0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tCgrAzLD4urkgKGtvbmdib2spILTUsrIgurizu73FILjewM8gPLje
wM8gwPy82yC9x8bQIL7LuLIgPGtvbmdib2tAbmF2ZXIuY29tPj4gwMwgtNnAvbD6ILCwwLogwMzA
r7fOIMD8vNsgvcfG0MffvcC0z7TZLgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0KCrz2vcXA2sDHILjewM8guriw/CC/67euwMwgsKG15sL3IMDWvcC0z7TZLiCz
qsHfv6EgtNm9wyC9w7W1x8+9yr3Dv8AuCgoKLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0K

--Boundary-00=_ZH4FZBQXFQQMYJ0CCJD0
Content-Type: Text/HTML;
  charset=euc-kr
Content-Transfer-Encoding: base64

CjxodG1sPgo8aGVhZD4KPHRpdGxlPrPXwMy59iC43sDPPC90aXRsZT4KPHN0eWxlPgpBIHt0ZXh0
LWRlY29yYXRpb246IG5vbmV9CkE6bGluayB7Y29sb3I6IGJsdWV9CkE6dmlzaXRlZCB7Y29sb3I6
ICM2NjY2NjZ9CkE6aG92ZXIge2NvbG9yOiAjZmY5OTMzfSAKI3JlZCB7Y29sb3I6ICNkZDNmMDB9
CiN0aW55IHtmb250LXNpemU6IDlwdH0KI3VkbGluZSB7Cgl0ZXh0LWRlY29yYXRpb246IHVuZGVy
bGluZTsKCWNvbG9yOiAjMDAwMGZmOwp9Cjwvc3R5bGU+CjwvaGVhZD4KPGJvZHkgYmdjb2xvcj0j
ZmZmZmZmPgo8Y2VudGVyPgo8Zm9udCBzaXplPTE+PGJyPjwvZm9udD4KPHRhYmxlIHdpZHRoPTk4
JSBjZWxscGFkZGluZz0yIGNlbGxzcGFjaW5nPTAgYm9yZGVyPTA+Cjx0cj4KCTx0ZD48YSBocmVm

Spam alert: unsolicited commercial e-mail

2001-05-17 Thread Bar Orion Barak

Recently, I have received an Unsolicited Commercial E-mail from you.
I do not like UCE's and I would like to inform you that sending
unsolicited messages to someone while he or she may have to pay for
reading your message may be illegal.  Anyway, it is highly annoying
and not welcome by anyone.  It is rude, after all.

If you think that this is a good way to advertise your products or
services you are mistaken.  Spamming will only make people hate you, not
buy from you.

If you have any list of people you send unsolicited commercial emails to,
REMOVE me from such list immediately.  I suggest that you make this list
just empty.



If you are not an administrator of any site and still have received
this message then your email address is being abused by some spammer.
They fake your address in From: or Reply-To: header.  In this case,
you might want to show this message to your system administrator, and
ask him/her to investigate this matter.

Note to the postmaster(s): I append the text of UCE in question to
this message; I would like to hear from you about action(s) taken.
This message has been sent to postmasters at the host that is
mentioned as original sender's host (I do realize that it may be
faked, but I think that if your domain name is being abused this way
you might want to learn about it, and take actions) and to the
postmaster whose host was used as mail relay for this message.  If
message was sent not by your user, could you please compare time when
this message was sent (use time in Received: field of the envelope
rather than Date: field) with your sendmail logs and see what host was
using your sendmail at this moment of time.

Thank you.

--



-
- original unsolicited commercial email follows -
-

Return-Path: [EMAIL PROTECTED]
Received: from localhost (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by gandalf.gefen.co.il (8.9.3/8.8.7) with ESMTP id XAA17172
for barak@localhost; Wed, 16 May 2001 23:43:03 -0200
Received: from indigo.cs.bgu.ac.il
by localhost with IMAP (fetchmail-5.3.1)
for barak@localhost (single-drop); Wed, 16 May 2001 23:43:04 -0200 (GMT+2)
Received: from druid.evermind.net (IDENT:root@[195.58.126.196])
by indigo.cs.bgu.ac.il (8.11.0/8.11.0) with ESMTP id f4GLb6127940
for [EMAIL PROTECTED]; Thu, 17 May 2001 00:37:07 +0300 (IDT)
Received: from druid.evermind.net (IDENT:[EMAIL PROTECTED] [195.58.126.196])
by druid.evermind.net (8.9.3/8.9.3) with SMTP id TAA04038;
Wed, 16 May 2001 19:28:09 -0100
Received: from sestomsx02.iconmedialab.se ([212.209.217.67])
by paladin.evermind.net (8.9.3/8.9.3) with ESMTP id SAA06506
for [EMAIL PROTECTED]; Wed, 16 May 2001 18:42:05 -0400
Received: by SESTOMSX02 with Internet Mail Service (5.5.2653.19)
id KXTWB65T; Wed, 16 May 2001 17:48:52 +0200
Message-ID: [EMAIL PROTECTED]
MIME-Version: 1.0
X-Mailer: Orion ListServer
Content-Type: text/plain;
charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by paladin.evermind.net id SAA06507
Sender: [EMAIL PROTECTED]
From: ANTIGEN_SESTOMSX02 [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: Antigen found ExceedinglyNested virus
Date: Wed, 16 May 2001 17:48:50 +0200
Reply-To: Orion-Interest [EMAIL PROTECTED]

Antigen for Exchange found ¸ÞÀÏ Àü¼Û ½ÇÆÐ ¾Ë¸² [EMAIL PROTECTED].eml
infected with ExceedinglyNested virus.
The file is currently Removed.  The message,
=?ks_c_5601-1987?B?uN7AzyDA/LzbIL3HxtAgvsu4siA8a29uZ2Jva0BuYXZlci5jb20+?=,
was
sent from [EMAIL PROTECTED] and was discovered in IMC Queues\Inbound
located at Icon Medialab AB/ICONSE/SESTOMSX02.





UN SUBSCRIBE

2001-05-15 Thread devendra orion

UN SUBSCRIBE

__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/




Re: How to access EJB's from client (not packaged in .ear) ?

2001-05-02 Thread Bar Orion Barak

In the directory $ORION_HOME/demo/news-app/news-client-source you have
a working example of a client.
You have to add the file jndi.properties somewhere at your CLASSPATH

[barak@gandalf]$ cat ~orion/orion/demo/news-app/news-client-source/jndi.properties 
java.naming.factory.initial=com.evermind.server.ApplicationClientInitialContextFactory
java.naming.provider.url=ormi://localhost/news
java.naming.security.principal=admin
java.naming.security.credentials=admin

the relevant xml files are:
~orion/orion/demo/news-app/META-INF/application.xml
that have the application module defination:
module
javanews-client.jar/java
/module
and the file 
~orion/orion/demo/news-app/news-client-source/META-INF/application-client.xml 
that holds the EJB reference for JNDI.

On Apr 23, Harley Rana wrote:
 Hi i have just started out with orion, i can't figure out how to access bean
 from a client. i've followed the Hello-Planet primer and made some changes
 to the bean, repackaged the .ear and redeployed.  Now every thing works fine
 when access the bean from a servlet that is packaged in the .ear file.
 My question is how do you access a bean, from a client not packaged in the
 .ear file?
 
 Im getting an NamingException usally saying :
 java:comp/env namespace is only available from within a J2EE component
 sometimes saying :
 javax.naming.NamingException: Error reading application-client descriptor:
 No location specified and no suitable instance of the type 'hello.ejb.Hello'
 found for the ejb-ref HelloPlanet
 
 I do have the application-client.xml file, and if i change details in it i
 see change in message from the second exception type.  so it must be reading
 the .xml file to see the change.
 
 What do i need to do?
 Could you include code examples please.
 I appreciate any help you can give!
 Thanks, Harley Rana.


-- 





How to set orion to perform a timely task..

2001-03-03 Thread orion

Hello,
I need to have my EJB perform some DB operation at midnight everyday.
How do I do that?
In PC, I could create a timer object to do that with VC++, but in Java
it does not seem to have such a functionality. And I think it's ideal
to handle it in the server side rather than play with Java.
In other words, orion may have such a cron function built in to do
something in a timely manner.
If anyone has any experience with this, please tell me how.
Thank you very much in advance.


Simon





Re: Win2k Pro. is messing up the DB

2001-02-23 Thread orion



Hello Randahl,
First of all, I appreciate your idea.
Yes, we came to the near conclusion that it was not 
orion but it was postgresql.
To tell the truth, I believe in orionbut not 
very much so in postgresql.
As a matter of fact, we are using a CVS version of 
PostgreSQL because
the released version of postgresql does not yet 
support the right join sql statement.
To make matters worse, the Linux JDBC driver was 
not working properly on the timestamp
field before I made a modification on the driver. 
We were totally forgetting all about this.
Our Windows developershave had no problems 
with ODBC drivers so far, out of which
we can guess it is not the DB itself but it is the 
Linux JDBC driver.
What are your thoughts?
Once again, thank you very much.



Simon







  - Original Message - 
  From: 
  Randahl Fink 
  Isaksen 
  To: Orion-Interest 
  Sent: Friday, February 23, 2001 1:07 
  AM
  Subject: RE: Win2k Pro. is messing up the 
  DB
  
  I 
  know this is a wild guess, but just to make sure, I would of course do a disk 
  scan on that machine to make sure it is not a hardware problem - these things 
  do happen, I am afraid.
  
  Another good thing would be to run the application on 
  a _different_ Win2K Pro. machine to make sure it is not just something which 
  is specific to only her single machine.
  
  BTW, 
  I would doubt PostgreSQL more on Win2K than I would doubt Orion. Orion is a 
  java application, which gives it a pretty good chance of running in the same 
  way on different platforms. To the best of my knowledge PostgreSQL on Win2K is 
  a port of the code from another platform, and from reading articles at 
  PostgreSQL's web-site it seems it is not totally stable on Win2K. I have seen 
  at least two posts on this list where people recommends *not* using PostgreSQL 
  from Win NT based systems - not yet, anyway.
  I 
  have used Orion on Win2K with no problems - but then again I do *not* use 
  PostgreSQL
  
  Hope 
  you find a solution
  
  Yours
  Randahl
  
-Original Message-From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]]On Behalf Of 
[EMAIL PROTECTED]Sent: 23. februar 2001 02:19To: 
Orion-InterestSubject: Win2k Pro. is messing up the 
DB
Hello,
I do not really know if this is because she's 
using Window 2000 Professional.
All our employees use Windows 2000 Servers or 
Linuxes or Solarises except for one person.
The exception is Windows 2000 Professional. The 
problem occurs only at her computer.
Once she updates a DB record, it messes up 
another record. This does not
happen all the time, but once in a blue moon. 
This is why I can't catch the problem in my code.
AndI do not think it is my code. I 
am using CMPs and orion 1.3.8 with PostgreSQL.
I doubted postgresql and orion in the 
beginning, and now I narrowed it down to orion because
it may be machine specific as I mentioned 
earlier. Why does a DB server have to do with
a specific machine? Then what? An App. Server 
which holds a session to a machine?
I am lost. Does anyone have any clue? I really 
really hope it's my code.
I appreciate your attention.


Simon




Error Page

2001-02-22 Thread orion



Hello,
I placed an error page tag in the web.xml in order 
to show a warning when any kind of error occurs.
However, that works fine with Netscape but not with 
Internet Explorer. Does anyone have any idea?
The following is the error page tag that I 
put.

error-page
 
error-code500/error-code
 
exception-typejava.lang.Exception/exception-type
 
locationerror_500.jsp/location
/error-page

I tried to put the whole URL in the location field, 
but it was of no use.
Please anyone.. I really appreciate 
all your clues in advance.



Simon


Re: Error Page

2001-02-22 Thread orion



Hi Rikard,
Thanks for your attention but...
My error_500.jsp file is larger than 512b in 
size.

Simon



  - Original Message - 
  From: 
  Rikard Westlund 
  To: Orion-Interest 
  Sent: Thursday, February 22, 2001 12:48 
  AM
  Subject: SV: Error Page
  
  Hi 
  guys,
   
   In order to get this to work on IE 
  the file locationerror_500.jsp/location must be 512b or more 
  in size
  
  Rikard
  
-Ursprungligt meddelande-[Rikard Westlund]If 
Frn: Conrad Chan [mailto:[EMAIL PROTECTED]]Skickat: 
den 22 februari 2001 00:32Till: Orion-Interestmne: 
RE: Error Page
Or 
set the return status code backto 200 since I really don't see a 
reason why I would like to return 500 if my error page will be probably 
shown.
Conrad

  -Original Message-From: SureTicket.com 
  [mailto:[EMAIL PROTECTED]]Sent: Wednesday, February 21, 2001 
  1:20 PMTo: Orion-InterestSubject: RE: Error 
  Page
  To be honest i think its because of IE's friendly error messages. 
  You can turn them off and try again.
  
  
  
-Original Message-From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]]On Behalf Of 
[EMAIL PROTECTED]Sent: Wednesday, February 21, 2001 1:15 
PMTo: Orion-InterestSubject: Error 
Page
Hello,
I placed an error page tag in the web.xml 
in order to show a warning when any kind of error occurs.
However, that works fine with Netscape but 
not with Internet Explorer. Does anyone have any idea?
The following is the error page tag that I 
put.

error-page
 
error-code500/error-code
 
exception-typejava.lang.Exception/exception-type
 
locationerror_500.jsp/location
/error-page

I tried to put the whole URL in the 
location field, but it was of no use.
Please anyone.. I really 
appreciate all your clues in advance.



Simon


Win2k Pro. is messing up the DB

2001-02-22 Thread orion



Hello,
I do not really know if this is because she's using 
Window 2000 Professional.
All our employees use Windows 2000 Servers or 
Linuxes or Solarises except for one person.
The exception is Windows 2000 Professional. The 
problem occurs only at her computer.
Once she updates a DB record, it messes up another 
record. This does not
happen all the time, but once in a blue moon. This 
is why I can't catch the problem in my code.
AndI do not think it is my code. I am 
using CMPs and orion 1.3.8 with PostgreSQL.
I doubted postgresql and orion in the beginning, 
and now I narrowed it down to orion because
it may be machine specific as I mentioned earlier. 
Why does a DB server have to do with
a specific machine? Then what? An App. Server which 
holds a session to a machine?
I am lost. Does anyone have any clue? I really 
really hope it's my code.
I appreciate your attention.


Simon




Weirdness on Reload

2001-02-16 Thread orion



Hello,
After I create a record in a DB, I come back to a 
list page, where I see the newly
created data row on the list page. OK so far. If I 
press the browser's reload button
the same row as the newly created one duplicates 
itself. Everytime I press the
reload button, it keeps adding the identical data 
record in the DB.
What gives? Please give me any clue.
I really appreciateany idea in 
advance.

Simon,



Weirdness on Reload

2001-02-16 Thread orion




Hello,
After I create a record in a DB, I come back to a 
list page, where I see the newly
created data row on the list page. OK so far. If I 
press the browser's reload button
the same row as the newly created one duplicates 
itself. Everytime I press the
reload button, it keeps adding the identical data 
record in the DB.
What gives? Please give me any clue.
I really appreciateany idea in 
advance.

Simon,



Cache Problem

2001-02-13 Thread orion

Hi,
I have deployed a site, which seems to work great with netscape, but
not with ms ie. Whenever I update the DB, the new recordsets are
reflected immediately and displayed accrodingly with netscape.
But with Internet Explorer, it does not show any current DB contents
but show some old cached data in the browser. And sometimes IE messes
up with my real DB contents if I click the IE browser's reload button.
I put 'meta http-equiv="Pragma" content="No-Cache"' clause in the
html page, but it does not help.
That clause works for netscape only, doesn't it?
Could anyone help please?
Thank you so much!!!



Simon,





RE: Anyone using Orion/Apache w/ many virt. hosts?

2000-10-04 Thread devendra orion

Hi!

Can anybody help us in setting one IP and multiple
domain. Mike can you help us with the configuration
files or how you manges to setup 15 virtual hosts. Is
it the same thing as above or 1 domain and ither 15
virtual hosts of the same domain.

thanks

devendra

--- Magnus Rydin [EMAIL PROTECTED] wrote:
 My first go at Filters I wrote the mod_expires as it
 was a topic on this
 list.
 Im not sure how usefull it is, but if it is, I can
 always put it up
 somewhere.. Maybee in the Filter tutorial.
 My only problem with this was to understand the need
 for it.

 If there is a need for these mod's, please list them
 and lets implement them
 as Filters.
 WR

  -Original Message-
  From: Mike Cannon-Brookes
 [mailto:[EMAIL PROTECTED]]
  Sent: den 4 oktober 2000 00:31
  To: Orion-Interest
  Subject: RE: Anyone using Orion/Apache w/ many
 virt. hosts?
 
 
  Bring it on! ;)
 
  Seriously, I'm interested to hear any Apache
 modules that
  couldn't be done
  with a simple servlet filter. I only know of the
 mainstream modules
  (mod_rewrite, mod_perl etc) really, but when this
 can of
  worms was opened
  last time noone spoke up.
 
  I'm sure the Orion team would be interested too.
 It's well
  worth their time
  to dupe any popular modules.
 
  Mike
 
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED]]On
 Behalf Of
  Robert Krueger
   Sent: Tuesday, October 03, 2000 10:20 PM
   To: Orion-Interest
   Subject: Re: Anyone using Orion/Apache w/ many
 virt. hosts?
  
  
   At 07:16 03.10.00 , you wrote:
   Mike Cannon-Brookes wrote:
   
 I run Orion with 15 virtual hosts (don't
 know why 50
  would be any
 different).

 Use Orion exclusively, it's really only a
 little leap not
   really a big one.
 There was a discussion a while back about
 what you needed in
   Apache, net
 result: there's nothing that can't be done
 in Orion ;)
  
   now, that is a very daring statement if you look
 at the wealth of
   existing
   apache modules. what you probably mean is
 "there's nothing
  that cannot be
   done with orion if you are ready to code a
 filter for that"
  and the I'd
   still say that you'll find things that are at
 least hard to do.
  
   -snip
  
  
   Mike,
   
   I know that running SSL on multiple
 virtual-host sites works
   well with Apache.
   However, have you tried to do the same with
 Orion? By that, I
   don't mean one
   SSL certificate shared by multiple hosts - I
 mean multiple
   certificates, each
   of which is specific to a virtual host.
   
   I've tried for a long time to get that scenario
 to work, yet the
   best I can do
   is to have Orion recognize and share only one
 certificate among
   *all* of the
   virtual-hosts. That's not particularly useful.
 I'm to the point
   of placing
   just the SSL pages of all the sites on Apache,
 and using Orion
   only for the
   non-SSL part of the virtual-host sites.
   
   I was told by someone that this was an https
 limitation
  and not an Orion
   limitation, but it works on Apache,
 JavaWebServer, and IIS
  just fine.
  
   Are you talking name based or ip based vhosts?
 what magnus
  explained was
   that it was a problem with name based hosts
 sharing one ip
  address and
   port. for ip base hosts he gave you a solution.
 you're saying
   that it does
   work with name based hosts sharing ip and port
 with apache?
  
   robert
  
   Any suggestions or ideas?
   
   Thanks!
   
-Dale
   
  
   (-) Robert Krüger
   (-) SIGNAL 7 Gesellschaft für
 Informationstechnologie mbH
   (-) Brüder-Knauß-Str. 79 - 64285 Darmstadt,
   (-) Tel: 06151 665401, Fax: 06151 665373
   (-) [EMAIL PROTECTED], www.signal7.de
  
  
  
 
 



__
Do You Yahoo!?
Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free!
http://photos.yahoo.com/




How to Host Multiple domain on orion?

2000-08-31 Thread devendra orion

Hi!:
Thanks!

Actually i want to setup multiple domain names using
single IP. Like in apache you can do it using
NameVirtualHost parameter.

eg:
  www.domain1.com
  www.domain2.com
  www.domain3.com

but all websites has same IP address

Devendra
  



--- Kevin Duffey [EMAIL PROTECTED] wrote:
 If your talking about where each user of an ISP can
 have their own dir,
 including www dir for their own site, I know its
 easy to do..I just haven't
 done it myself. I recall that its something like
 www.mycompany.com/~username/ to allow access for
 each user.
 
 Sorry..I don't know how to do it..but its possible.
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED]]On
 Behalf Of devendra orion
  Sent: Wednesday, August 30, 2000 4:34 PM
  To: Orion-Interest
  Subject: How to Host Multiple domain on orion?
 
 
  Hi!:
   Hi! i am planning to host all my domains on
  orion. Can anybody help me doing it? I know it is
  possible to have virtual hosting but nothing is
  mentioned about multiple domain using single IP.
 
  Thanks
  Devendra
 
  __
  Do You Yahoo!?
  Yahoo! Mail - Free email you can access from
 anywhere!
  http://mail.yahoo.com/
 
 
 


__
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/




RE: Importing a cert from Thawte

2000-07-24 Thread Orion Companies, LLC - MIS Support

You have sent this to the wrong email address.


-Original Message-
From: Mattias Arbin [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 21, 2000 8:59 AM
To: Orion-Interest; [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Importing a cert from Thawte

I have now got a valid certificate from Thawte, (i.e a real one, not a test
cert). I am now trying to import it into my keystore without success.

I genereated my certificate request like this:
keytool -genkey -keyalg "RSA" -alias myalias -keystore keystore -dname
"cn=www.[mydomain].com, ou=[MyCompany], o=[My Company], c=SE, S=[Mystate],
l=[mycity]"  -validity 360

keytool -certreq -keyalg "RSA" -alias myalias -file
www.[mycompany].com.csr -keystore keystore

The only thing that differs from the Orion docs is that I use an alias
'myalias' instead of the default 'mykey'.

When getting my certificate from Thawte I could choose from a number of
formats. The two that seems to fit is
'Standard Certificate Format' (BASE64 encoded, DER encoded X.509v3 cert.)
'PKCS #7 Certificate Chain' ("Newer servers and development toolkits support
"certificate chains". This format allows Thawte to deliver a full
certificate chain to you, which in turn makes for superior key management
and flexibility.")

When trying to import either one of the above I get:

keytool -import -keystore keystore -file mythawtecert.cer  -keyalg
"RSA" -alias myalias -trustcacerts
Enter keystore password:  mypassword
keytool error: java.lang.Exception: Input not an X.509 certificate

After reading the docs on keytool, I am still not completely sure if to use
"-alias myalias" so I tried that too:
keytool -import -keystore keystore -file mythawtecert.cer  -keyalg
"RSA" -trustcacerts
Enter keystore password:  mypassword
keytool error: java.security.cert.CertificateException: Unsupported encoding

Does anybody have any idea what is going wrong here?
Thanks,
Mattias Arbin





Orion @ JavaOne

2000-06-01 Thread Orion Sales

Hello,

If you are going to JavaOne, join us for an Orion user get-together.

This will be arranged on thursday, June 8 and it will start at 6 pm.

Preliminary, we will meet outside the lunch "restaurant" in the Moscone
Center. Depending on how many of you show up, we'll pick a location for
the get-together. If we're not too many I would suggest going out to a
nice restaurant and chat but other opinions are welcome too.

Regards,
Karl Avedal





Re: Folder Mapping

2000-04-24 Thread orion

Hi Magnus,
I made it but i got the following message :

Error starting HttpServer: Error initializing site
file:/usr/local/orion/config/default-web-site.xml: Error loading web-app
'defaultWebApp' at /usr/local/orion/default-web-app: Error parsing
orion-web.xml at /usr/local/orion/default-web-app/WEB-INF: Fatal error at line
13 offset 2: The markup in the document following the root element must be
well-formed.


Magnus Stenman wrote:

 Edit orion/default-web-app/WEB-INF/orion-web.xml and add:
 virtual-directory real-path="/export/home/myfolder"
 virtual-path="/myfolder" /.

 /Magnus Stenman, the Orion team

 - Original Message -
 From: Orion Administrator
 To: Orion-Interest
 Sent: Sunday, April 23, 2000 1:36 PM
 Subject: Folder Mapping

 Hello,
 How can I set an alias to a folder? For example, I'd like to make orion
 understands http://hostname/myfolder as /export/home/myfolder which is not
 under ../orion/default-web-app.
 Any help will be appreciated very much. I'm looking forward to hearing from
 you soon.
 Best Regards,
 Ahmed





Re: Folder Mapping

2000-04-24 Thread orion

I did it and  it is working now.
Thank you very much for your help.

Best regards,



Magnus Stenman wrote:

 Edit orion/default-web-app/WEB-INF/orion-web.xml and add:
 virtual-directory real-path="/export/home/myfolder"
 virtual-path="/myfolder" /.

 /Magnus Stenman, the Orion team

 - Original Message -
 From: Orion Administrator
 To: Orion-Interest
 Sent: Sunday, April 23, 2000 1:36 PM
 Subject: Folder Mapping

 Hello,
 How can I set an alias to a folder? For example, I'd like to make orion
 understands http://hostname/myfolder as /export/home/myfolder which is not
 under ../orion/default-web-app.
 Any help will be appreciated very much. I'm looking forward to hearing from
 you soon.
 Best Regards,
 Ahmed





Re: Folder Mapping

2000-04-23 Thread orion

I was not able to find the solution of my problem in your link.

"Joseph B. Ottinger" wrote:

 On Sun, 23 Apr 2000, Orion Administrator wrote:

  How can I set an alias to a folder? For example, I'd like to make orion
  understands http://hostname/myfolder as /export/home/myfolder which is
  not under ../orion/default-web-app.

 You need to create a separate application (a web application). See
 http://cupid.suninternet.com/phonelist/createapp.jsp for an example of
 this; you can also check out the Orion documentation for this, or the J2EE
 documentation.

 Note that the phonelist documents creating an application fairly well, but
 its EJB example is horribly, horribly broken. :)

 ---
 Joseph B. Ottinger   [EMAIL PROTECTED]
 http://cupid.suninternet.com/~joeo  HOMES.COM Developer