Still on the subject of emails

2002-07-10 Thread jbv
Hi all, Is there a way, from within a MC script, to open the default email client (I know how to do that) AND to have a new email window automatically opened WITH a certain file automatically attached to that message ? Or may be is there a way to do that with the SMPT protocol with libURL (I've

RE: Still on the subject of emails

2002-07-10 Thread Chipp Walters
JB, Shao Sean has a wonderful SMTP library at: http://www.shaosean.tk/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of jbv Sent: Wednesday, July 10, 2002 4:30 PM To: [EMAIL PROTECTED] Subject: Still on the subject of emails Hi all, Is

CGI to download file without URL display

2002-07-10 Thread Richard Herz
I would like to post files on a web page for download without any display of the URL of the source file at the browser in order to prevent future bypass of download logging. The only method I've discovered so far that has no display of the source file URL is to get the source file into a

Re: CGI to download file without URL display

2002-07-10 Thread LiangTyan Fui
On 7/11/02 3:38 AM, Richard Herz wrote: I would like to post files on a web page for download without any display of the URL of the source file at the browser in order to prevent future bypass of download logging. The only method I've discovered so far that has no display of the source file

Re: CGI to download file without URL display

2002-07-10 Thread Yennie
Rich, You may want to check out the referrer field in the HTTP request coming in. You could make sure that the referral page is your own, otherwise bump the user back to it. I believe the header is HTTP-Referrer or something like that, and contains the URL of the referring page. HTH, Brian