RE: hi

2007-02-27 Thread meenakshi.sundaram


Hi,
Will this patch be incorporated into apache?
http://mail-archives.apache.org/mod_mbox/httpd-dev/200603.mbox/20060321
[EMAIL PROTECTED]

(patch provides balancer support to ProxyRemote directive).

Thanks,
MMS.


The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.
 
www.wipro.com


Message has been disinfected:Re: Hi

2004-10-31 Thread Coopercc

:)






Hi

2004-07-29 Thread fanf
Important document!



Norton AntiVirus Deleted1.txt
Description: plain/text


Re: Hi

2004-03-17 Thread ake
Please have a look at the attached file.

--- Trend GateLock [EMAIL PROTECTED] (higp5.gatelock.com.tw)

**  your_file.pif 

 Trend GateLock [EMAIL PROTECTED] (higp5.gatelock.com.tw)

**  your_file.pif  WORM_NETSKY.D


-


Re: hi

2004-01-27 Thread Enrico Querci
Norton AntiVirus removed the attachment: document.zip.
The attachment was infected with the [EMAIL PROTECTED] virus.
[EMAIL PROTECTED] wrote:

The message contains Unicode characters and has been sent as a binary attachment.

 





hi

2004-01-26 Thread tolj
The message contains Unicode characters and has been sent as a binary attachment.



document.zip
Description: Binary data


RE: Hi, dev, here´s the archive you requested

2003-10-27 Thread Wilt, Paul
Title: Message



Rich / 
httpd-dev list ... our virus checker detected a Trojan attached to this 
email!

Scan 
type: Realtime Protection ScanEvent: Virus Found!Virus name: 
Trojan.SefexFile: message.zipmessage.htmLocation: 
Mail SystemComputer: WILT_PUser: Wilt PaulAction 
taken: Clean failed : Quarantine succeeded : Date found: Mon Oct 27 
09:31:26 2003

You 
might want to check your system!


Paul E 
Wilt Senior Principal 
Software Engineer ProQuest Information and 
Learning - 
http://www.proquest.com mailto:[EMAIL PROTECTED] 
300 North Zeeb 
Rd Phone: (734) 302-6777 Ann Arbor, MI 48106 
Fax: (734) 302-6779 - 


  
  -Original Message-From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, 
  October 26, 2003 9:44 PMTo: [EMAIL PROTECTED]Subject: 
  Hi, dev, here´s the archive you requesteddOnT gIvE iT 
  aWaY...iTs cOnFiDeNtIaL =) 


RE: Hi, dev, here´s the archive you requested

2003-10-27 Thread Rich Bowen
On Mon, 27 Oct 2003, Wilt, Paul wrote:

 Rich / httpd-dev list ... our virus checker detected a Trojan attached to
 this email!

Yes, I saw that. That message did not come from me. It's one of the
delightful ones that fakes the from address.

 Scan type:  Realtime Protection Scan
 Event:  Virus Found!
 Virus name: Trojan.Sefex
 File:  message.zipmessage.htm
 Location:  Mail System
 Computer:  WILT_P
 User:  Wilt  Paul
 Action taken:  Clean failed : Quarantine succeeded : 
 Date found: Mon Oct 27 09:31:26 2003
  
 You might want to check your system!

-- 
Rich Bowen - [EMAIL PROTECTED]
Apache Administrators Handbook - http://apacheadmin.com/



Hi, question about external module.

2003-03-25 Thread Jeffrey Huang



Hi,

I got a problem 
when I'm working on adding an externalmodule as a filter of Apache 2.0. 
Please help me to figure out the solution. I'mbuilding an external module to 
embed a C/C++ like scripting language, CH,executing for Apache 2.0 server. I 
studied from php module source programand got the simulated idea to build 
this module. I use pre_config,post_config and post_read_request hooks. 
Ideally when Apache server startup,the pre_config hook is executed and the 
post_read_request hook should beused when requesting the target file type, 
for example, *.php. And thenexecute the script by activating module for that 
type, eg. mod_php. I builtmy own module and it works in Ret Hat Linux 7.x. 
However, when I port thismodule (mod_ch) to Windows 2000, Apache server 
seems can not reach the"post_read_request" hook. (I print out message at 
every hook function) I used thesame configuration setup as to Linux version, 
except the directory paths.I'm thinking is there any special setup needed 
for W2K to enable thepost_read_request hook? Does anybody have 
someexperience to build a module as a filter in Apache 2.0 server + Windows 
2000? Please helpme to figure out the problem. I appreciate your any 
help.Best Regards,Jeffrey 
Huang


Re: hi had a suggestion

2003-03-17 Thread Apache Software Foundation
acked.
--
The Apache Software Foundation
If you have not looked at http://www.apache.org/foundation/preFAQ.html
PLEASE DO SO NOW.  There's an excellent chance your question/concern
is addressed therein.
---BeginMessage---
Hi how are you today. I just had a suggestion. Can you make the Apache
Server an Graphic Use Interface for windows operating systems. It make make 
it easier to control the server. Thanks







_
Add photos to your messages with MSN 8. Get 2 months FREE*.  
http://join.msn.com/?page=features/featuredemail

---End Message---


hi,about souce reading

2001-11-17 Thread Liu Wen

hi,folks
I am starting out reading Apache source code as a first step to learn
Unix Environment and Network Programming. while can you give me some
directions for reading? 

Thank you,

Cheers
Liu




Re: hi,about souce reading

2001-11-17 Thread William A. Rowe, Jr.

From: Liu Wen [EMAIL PROTECTED]
Sent: Saturday, November 17, 2001 8:10 PM


 hi,folks
 I am starting out reading Apache source code as a first step to learn
 Unix Environment and Network Programming. while can you give me some
 directions for reading? 

This might sound crazy, but I would start with the httpd-2.0/server/mpm/prefork
directory, and review the basic outline of how prefork works and runs.  Prefork
starts its life as one process that reviews the configuration, then forks like
crazy into tens to hundreds of copies that serve individual requests.

Since the raw network_io stuff is in a directory srclib/apr/network_io/unix/ 
it's pretty easy to read over the abstractions, and then look at exactly how 
they were implemented.  Better yet - if you want to understand BeOS, OS2,
Win32 or NetWare, just jump over to the appropriate parallel directory and
you can get a glimpse of the differences.

If you try using 1.3, you will fall into http_main.c, a monstrosity of code
that goes on for miles.  The Apache 2.0 mpm architecture neatly broke things
up into parts, and the prefork flavor is probably the simplest to understand.

Bill




Re: hi,about souce reading

2001-11-17 Thread Liu Wen

thank you for your advice. perhaps this is really somewhat crazy...
Anyway I heard Apache's code is well written, and I have previous
programming experience under Unix environment ,though not much.So I
think it is worth doing so...

well, I am still not sure reading 2.0 beta or latest stable version.2.0
seems to include a lot of new and useful features, maybe it makes good
to read the code as the developer group is releasing the final ? 

btw,I use MSVC to open dsw file in source tarball ,but no project is
loaded, why?

Cheers
Liu