diff -ruN msttcorefonts-1.1.5/debian/config msttcorefonts-1.2ubuntu1/debian/config
--- msttcorefonts-1.1.5/debian/config	Thu Oct  7 13:01:21 2004
+++ msttcorefonts-1.2ubuntu1/debian/config	Tue Oct  4 05:10:32 2005
@@ -71,6 +71,7 @@
   db_reset msttcorefonts/blurb
   db_input low msttcorefonts/blurb || true
   db_input low msttcorefonts/dldir || true
+  db_input medium msttcorefonts/http_proxy || true
   db_go
   db_get msttcorefonts/dldir
   while [ -n "$RET" ] && [ `echo $RET | tr [:upper:] [:lower:] ` != "none" ] ; do
diff -ruN msttcorefonts-1.1.5/debian/postinst msttcorefonts-1.2ubuntu1/debian/postinst
--- msttcorefonts-1.1.5/debian/postinst	Sun Jan  2 10:15:03 2005
+++ msttcorefonts-1.2ubuntu1/debian/postinst	Tue Oct  4 05:10:32 2005
@@ -14,6 +14,9 @@
 db_get msttcorefonts/dlurl
 URLOVERRIDE=${RET:+-u$RET}
 
+db_get msttcorefonts/http_proxy
+HTTP_PROXY=${RET:+-p$RET}
+
 if [ -e /usr/share/fonts/truetype/ms-fonts ] ; then
   cp -p /usr/share/fonts/truetype/ms-fonts /var/lib/msttcorefonts/ms-fonts
   rm -f /usr/share/fonts/truetype/ms-fonts
@@ -34,4 +37,4 @@
 
 update-fonts-dir truetype
 
-update-ms-fonts $URLOVERRIDE $SAVEDIR $LOCALCOPY
+update-ms-fonts $URLOVERRIDE $SAVEDIR $LOCALCOPY $HTTP_PROXY
diff -ruN msttcorefonts-1.1.5/debian/templates msttcorefonts-1.2ubuntu1/debian/templates
--- msttcorefonts-1.1.5/debian/templates	Wed Sep 22 17:51:21 2004
+++ msttcorefonts-1.2ubuntu1/debian/templates	Tue Oct  4 05:10:32 2005
@@ -62,3 +62,10 @@
  different (possibly local) mirror instead, please enter the full URL
  to the directory containing the relevant files here. If not, just
  leave the field blank.
+
+Template: msttcorefonts/http_proxy
+Type: string
+Description: Do you use a proxy?
+ If you have a http proxy server, please enter. (e.g:
+ http://192.168.0.1:3128) Leave empty if it is not needed.
+
diff -ruN msttcorefonts-1.1.5/update-ms-fonts msttcorefonts-1.2ubuntu1/update-ms-fonts
--- msttcorefonts-1.1.5/update-ms-fonts	Thu Sep 23 18:56:16 2004
+++ msttcorefonts-1.2ubuntu1/update-ms-fonts	Tue Oct  4 05:10:32 2005
@@ -21,6 +21,7 @@
         -c) CHECK_ONLY=1 ;;
         -s*) SAVEDIR=${opt#-s} ;;
         -u*) URLOVERRIDE=${opt#-u} ;;
+	-p*) HTTPPROXY=${opt#-p} ;;
         *) LOCALCOPY=$opt ;;
     esac
 done
@@ -117,7 +118,7 @@
         for ff in $FONTFILES; do
             if [ ! -e $ff.done ] || [ ! -e $ff ] ; then
                 if [ -z "$LOCALCOPY" ] ; then
-                    if ! wget --continue --tries=1 --dns-timeout=10 --connect-timeout=5 --read-timeout=300 $QUIET_ARG --directory-prefix . -c $URLROOT$ff ; then
+                    if ! http_proxy=$HTTPPROXY wget --continue --tries=1 --dns-timeout=10 --connect-timeout=5 --read-timeout=300 $QUIET_ARG --directory-prefix . -c $URLROOT$ff ; then
                         continue 2
                     fi
                 else
