#!/usr/bin/perl # -*- perl -*- # # NAME : shopper.conf # PURPOSE : Configuration file for WWW Shopping Basket (by Michael Koppleman) # AUTHOR : Robert S. Liesenfeld 9/16/96 # SCRIPT TYPE : perl 'require' # ARGUMENTS : # NOTES : # # Revision history: # 9/16/96 RSL Created. # ### Client specific # $email_to : Set this to an email address; it's where messages # that are sent from the shopping basket head to. $email_to = "windrvr\@bitstream.net"; # $order_to : Set this to an email address; it's where orders # that are sent from the shopping basket head to. $order_to = "windrvr\@bitstream.net"; #$order_to = "lolife\@bitstream.net"; # $client_name : Set this to the name of the company that this shopper # is being set up for (e.g., "EMarket", "Champion Auto Stores") $client_name = "WindRiver Brewing Company"; # $client_url : Set this to the URL of the client's home site; this # is used to determine paths for things like images. $base_l = "https://".$ENV{'SERVER_NAME'}; #$client_url = "http://www.windriverbrew.com"; $client_url = $base_l; # $client_phone: Set this to the client's customer contact number, if they # have one (1-800-OK-COMPAQ, for example). Leave blank otherwise. $client_phone = "1-800-266-4677"; # $client_fax : Set this to the client's fax number, if they have one. $client_fax = "(952)942-0635"; # $client_addr : Set this to the mailing address of the client. $client_addr = "$client_name, 7212 Washington Ave S, Eden Prarie, MN 55344"; # $client_state: Set this to the two-character abbreviation for the state # that this client is in; used to calculate sales tax. $client_state = 'MN'; # $client_tax : Set this to the sales tax rate for the state defined above. # In MN, this is 0.07 (seven cents on the dollar). $client_tax = 0.065; ### Dirs/URLS # $shopper_dir : Set this to the directory in which this copy of # the ShoppingBasket resides. $shopper_dir = "/web/virtual/002/www.windriverbrew.com/htdocs/shopper"; # $shopper_url : Set this to the base URL of this site's shopper. $shopper_url = "$client_url/shopper"; # $image_url : Set this to the URL where images may be found. #$image_url = "$client_url/image"; $image_url = "/image"; # $spool_dir : Set this to the directory in which ShoppingBasket # files reside (the order/temp files). $spool_dir = "/web/virtual/002/www.windriverbrew.com/htdocs/shopper_logs"; ### Netscape Secure Socket Layer (SSL) information # $secure_client : Set this to 1 if this client has requested a # Netscape SSL server setup, 0 otherwise. $secure_client = 0; $secure_l = "https://".$ENV{'SERVER_NAME'}; # $secure_client_url : Same purpose as client_url, only for SSL. #$secure_client_url = "https://www.windriverbrew.com"; $secure_client_url = $secure_l; # $secure_image_url : Same purpose as $image_url, only for SSL. #$secure_image_url = "$secure_client_url/image"; $secure_image_url = "/image"; # $secure_shopper_url: Same purpose as $shopper_url, only for SSL. $secure_shopper_url = "$secure_client_url/shopper"; ### Things that shouldn't be changed # $datestring : This sets the format of the names for the order/temp # files. Probably don't want to change this. chomp ($datestring = `date +'%y%m%d%H%M%S'`); # $mailer_prog : This is the path to the UNIX mailer program. # ONLY use a mailer program that understands the # -r and -s options. # $mailer_prog = "/usr/bin/mail"; # sendmail is better $mailer_prog = '/usr/sbin/sendmail -f www -t'; # $body_tag : This is the full HTML for the BODY tag. # Please escape weird characters. $body_tag = ""; # $large_logo : This is the name of the large logo image file. # Should be fine in most cases. $large_logo = "$image_url/windriver3.GIF"; # $small_logo : This is the name of the small logo image file. # Should be fine in most cases. $small_logo = "$image_url/button.GIF"; # Do not add anything below this line!!! # If you do you will break everything!!! 1;