if you "telnet <squid server> <squid port>" like this:
telnet squid-server 3128
Trying 192.168.1.20...
Connected to squid-server.
Escape character is '^]'.
you can then try http:// paths, or ftp:// paths e.g.:
GET
http://www.google.com/ HTTP/1.0 <return>
<return>
HTTP/1.0 302 Moved Temporarily
Location:
http://www.google.co.uk/
Cache-Control: private
Content-Type: text/html; charset=UTF-8
Date: Wed, 27 Apr 2011 15:29:24 GMT
Server: gws
Content-Length: 221
X-XSS-Protection: 1; mode=block
Via: 1.0 squid-server:3128 (squid/2.6.STABLE18)
Proxy-Connection: close
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="http://www.google.co.uk/">here</A>.
</BODY></HTML>
Connection to squid-server closed by foreign host.
you can also try doing the same with ftp e.g.:
GET ftp://<user>:<pass>@<server>/.procmailrc HTTP/1.0 <return>
<return>
HTTP/1.0 200 OK
Server: squid/2.6.STABLE18
Date: Wed, 27 Apr 2011 15:32:39 GMT
Content-Type: text/plain
Content-Length: 1554
Last-Modified: Wed, 27 Apr 2011 13:31:36 GMT
Via: 1.0 squid-server:3128 (squid/2.6.STABLE18)
Proxy-Connection: close
PATH=/bin:/usr/bin:/opt/sfw/bin
MAILDIR=$HOME/Maildir/ #you'd better make sure it exists
# DEFAULT=$MAILDIR/mbox #completely optional
LOGFILE=$MAILDIR/from #recommended
:0
* ^X-Advertisement:
.spam/
:0
* ^X-Advertisment:
.spam/
...
hope that helps.