<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7655.10">
<TITLE>ok, I think I figured it out</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/rtf format -->
<P><FONT SIZE=2 FACE="Arial">I am at a bank behind a firewall, and, my previous crash seemed to indicate that something went wrong in ports.lisp (networking??).</FONT></P>
<P><FONT SIZE=2 FACE="Arial">So I did a quick look see for the word proxy in asdf-install, and lo-and-behold, I found in defpackage.lisp an area where I could possibly</FONT></P>
<P><FONT SIZE=2 FACE="Arial">configure proxy info…</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">Now, my proxy information is as follows:</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">Hostname is</FONT>
<BR><FONT SIZE=2 FACE="Arial">something.secret.rbc.com</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">Port is</FONT>
<BR><FONT SIZE=2 FACE="Arial">8080</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">Username</FONT>
<BR><FONT SIZE=2 FACE="Arial">someusername</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">Password</FONT>
<BR><FONT SIZE=2 FACE="Arial">supersecret</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">The proxy is an http proxy - how would you configure the parameters below,</FONT>
<BR><FONT SIZE=2 FACE="Arial">so that it will take these parameters above to configure the defpackage.lisp</FONT>
<BR><FONT SIZE=2 FACE="Arial">below.</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">It's an http proxy, and I don't notice anywhere the ability to set up the port value..</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">Any ideas?</FONT>
</P>
<BR>
<BR>
<P><FONT SIZE=2 FACE="Arial">(cl:in-package :cl-user)</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">(defpackage #:asdf-install</FONT>
<BR><FONT SIZE=2 FACE="Arial"> (:use #:common-lisp)</FONT>
<BR><FONT SIZE=2 FACE="Arial"> </FONT>
<BR><FONT SIZE=2 FACE="Arial"> (:export</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial"> ;; Customizable variables.</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*shell-path* ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*proxy*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*cclan-mirror*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:asdf-install-dirs ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:private-asdf-install-dirs ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*tar-extractor* ; TODO: Undocumented</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial"> #:*program-directories* ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*verify-gpg-signatures*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*locations*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*safe-url-prefixes*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*preferred-location*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*temporary-directory* ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*system-file-installer*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> </FONT>
<BR><FONT SIZE=2 FACE="Arial"> ;; External entry points. </FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:add-locations ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:add-registry-location ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:uninstall</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:install</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:asdf-install-version ; TODO: Undocumented</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial"> #+(and asdf (or :win32 :mswindows))</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:sysdef-source-dir-search</FONT>
<BR><FONT SIZE=2 FACE="Arial"> </FONT>
<BR><FONT SIZE=2 FACE="Arial"> ;; proxy authentication</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*proxy-user*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:*proxy-passwd*</FONT>
<BR><FONT SIZE=2 FACE="Arial"> </FONT>
<BR><FONT SIZE=2 FACE="Arial"> ;; conditions</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:download-error</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:signature-error ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:gpg-error ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:gpg-shell-error ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:key-not-found</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:key-not-trusted</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:author-not-trusted</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:installation-abort ; TODO: Undocumented</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial"> ;; restarts</FONT>
<BR><FONT SIZE=2 FACE="Arial"> #:install-anyways ; TODO: Undocumented</FONT>
<BR><FONT SIZE=2 FACE="Arial"> ))</FONT>
<BR><FONT SIZE=2 FACE="Arial"> </FONT>
<BR><FONT SIZE=2 FACE="Arial">(defpackage #:asdf-install-customize</FONT>
<BR><FONT SIZE=2 FACE="Arial"> (:use #:common-lisp #:asdf-install)</FONT>
<BR><FONT SIZE=2 FACE="Arial"> (:documentation "Used internally for loading user customization file."))</FONT>
</P>
<P><FONT SIZE=2 FACE="Arial">;;; Local variables:</FONT>
<BR><FONT SIZE=2 FACE="Arial">;;; indent-tabs-mode:nil</FONT>
<BR><FONT SIZE=2 FACE="Arial">;;; End:</FONT>
</P>
<font face="monospace">_______________________________________________________________________<br>
<br>
This email is intended only for the use of the individual(s) to whom it is addressed and may be privileged and confidential.<br>
Unauthorised use or disclosure is prohibited. If you receive This e-mail in error, please advise immediately and delete the original message. <br>
This message may have been altered without your or our knowledge and the sender does not accept any liability for any errors or omissions in the message.<br>
<br>
Ce courriel est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. <br>
Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite.<br>
Si vous recevez ce courriel par erreur, veuillez m'en aviser immédiatement, par retour de courriel ou par un autre moyen.</font></BODY>
</HTML>