On Fri, 21 Nov 2003 [EMAIL PROTECTED] wrote: > if ([EMAIL PROTECTED]://utdirect.utexas.edu/utdirect/index.WBX?t=MYHOME@ ||
You can't match on https URLs in a Internet proxy. The proxy only knows which server the browser wants to connect to (utdirect.utexas.edu) not what on that server is being requested. The request as such is encrypted by SSL and unavailable to the proxy (encrypted). What you can do is to respond with a browser-redirect in response to CONNECT request if desired. Regards Henrik