Quoting Paul Wise (p...@debian.org):
> On Fri, Nov 18, 2011 at 2:47 PM, Christian Perrier <bubu...@debian.org> wrote:
> 
> > If you were using defoma in your maintainer scripts (postrm, postinst
> > etc, dh_installdefoma usually handles them) then on upgrade from a
> > version before the one that dropped you need to run defoma-app purge
> > $PACKAGE, but only if the defoma-app binary is available and
> > executable.
> 
> This is actually incorrect, this should be run instead:
> 
> defoma-font purge-all /etc/defoma/hints/$PACKAGE.hints


...and should happen before the hints file removal, therefore in
prerm.

Fixed patch attached.


diff -Nru msttcorefonts-3.3.old/debian/changelog msttcorefonts-3.3/debian/changelog
--- msttcorefonts-3.3.old/debian/changelog	2011-11-18 07:29:01.091038237 +0100
+++ msttcorefonts-3.3/debian/changelog	2011-11-18 07:29:16.415192897 +0100
@@ -1,3 +1,9 @@
+msttcorefonts (3.4) UNRELEASED; urgency=low
+
+  * Drop defoma support
+
+ -- Christian Perrier <bubu...@debian.org>  Fri, 18 Nov 2011 07:29:10 +0100
+
 msttcorefonts (3.3) unstable; urgency=low
 
   * Add Slovak debconf translation, thanks Slavko Pozdravom
diff -Nru msttcorefonts-3.3.old/debian/control msttcorefonts-3.3/debian/control
--- msttcorefonts-3.3.old/debian/control	2011-11-18 07:29:01.091038237 +0100
+++ msttcorefonts-3.3/debian/control	2011-11-18 07:29:37.011400888 +0100
@@ -4,13 +4,12 @@
 Maintainer: Thijs Kinkhorst <th...@debian.org>
 Standards-Version: 3.8.4
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: defoma
 Vcs-Svn: https://svn.kinkhorst.nl/svn/debian/msttcorefonts/trunk
 Vcs-Browser: https://aphrodite.kinkhorst.nl/wsvn/debian/msttcorefonts/
 
 Package: ttf-mscorefonts-installer
 Architecture: all
-Depends: wget, cabextract, xfonts-utils, defoma, ${misc:Depends}
+Depends: wget, cabextract, xfonts-utils, ${misc:Depends}
 Recommends: ttf-liberation, x-ttcidfont-conf
 Provides: msttcorefonts
 Replaces: msttcorefonts (<< 2.6)
diff -Nru msttcorefonts-3.3.old/debian/dirs msttcorefonts-3.3/debian/dirs
--- msttcorefonts-3.3.old/debian/dirs	2011-11-18 07:29:01.091038237 +0100
+++ msttcorefonts-3.3/debian/dirs	2011-11-18 07:43:48.043510831 +0100
@@ -1,3 +1,2 @@
 var/lib/msttcorefonts
-etc/defoma/hints
 usr/share/fonts/truetype
diff -Nru msttcorefonts-3.3.old/debian/postinst.in msttcorefonts-3.3/debian/postinst.in
--- msttcorefonts-3.3.old/debian/postinst.in	2011-11-18 07:29:01.083038160 +0100
+++ msttcorefonts-3.3/debian/postinst.in	2011-11-19 14:36:42.682066107 +0100
@@ -25,5 +25,9 @@
         http_proxy=$RET
 done
 
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
+  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-mscorefonts-installer.hints 3.4 -- "$@"
+fi
+  
 ## Content of update-ms-fonts will be concatenated below
 
diff -Nru msttcorefonts-3.3.old/debian/postrm msttcorefonts-3.3/debian/postrm
--- msttcorefonts-3.3.old/debian/postrm	1970-01-01 01:00:00.000000000 +0100
+++ msttcorefonts-3.3/debian/postrm	2011-11-18 07:42:31.342736565 +0100
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+set -e
+
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
+  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-mscorefonts-installer.hints 3.4 -- "$@"
+fi
diff -Nru msttcorefonts-3.3.old/debian/preinst msttcorefonts-3.3/debian/preinst
--- msttcorefonts-3.3.old/debian/preinst	1970-01-01 01:00:00.000000000 +0100
+++ msttcorefonts-3.3/debian/preinst	2011-11-19 14:36:44.514116637 +0100
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+set -e
+
+if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
+  dpkg-maintscript-helper rm_conffile /etc/defoma/hints/ttf-mscorefonts-installer.hints 3.4 -- "$@"
+fi
diff -Nru msttcorefonts-3.3.old/debian/prerm msttcorefonts-3.3/debian/prerm
--- msttcorefonts-3.3.old/debian/prerm	2011-11-18 07:29:01.083038160 +0100
+++ msttcorefonts-3.3/debian/prerm	2011-11-19 14:36:34.437838733 +0100
@@ -6,6 +6,13 @@
 # but we're still successfully uninstalled.
 set -e
 
+if dpkg --compare-versions "$2" lt 3.4; then
+	if [ -x "which defoma-font 2>/dev/null" ]; then
+		defoma-font purge /etc/defoma/hints/ttf-mscorefonts-installer.hints
+	fi
+fi
+
+
 if [ "$1" = "remove" ] && [ -e /var/lib/msttcorefonts/ms-fonts ]; then
 	cd /usr/share/fonts/truetype/msttcorefonts && \
 		rm -f `cat /var/lib/msttcorefonts/ms-fonts`
diff -Nru msttcorefonts-3.3.old/debian/README.comic-font msttcorefonts-3.3/debian/README.comic-font
--- msttcorefonts-3.3.old/debian/README.comic-font	2011-11-18 07:29:01.095038279 +0100
+++ msttcorefonts-3.3/debian/README.comic-font	1970-01-01 01:00:00.000000000 +0100
@@ -1,49 +0,0 @@
-Some users have reported that after installing the ttf-mscorefonts-installer
-package many older X clients (such as xmessage, xfontsel, etc) display text
-using the 'Comic Sans MS' font, that looks... somewhat strange.
-
-This is caused by the following:
-- users have /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType as the first
-  element in X font path;
-- ttf-mscorefonts-installer is the only truetype font package installed;
-- '-microsoft-comic sans ms-...' happens to be alphabetically first font
-  provided by ttf-mscorefonts-installer;
-- older applications request any font that matches a generic pattern, and get
-  the comic font.
-
-This may be worked around in several ways.
-
-1. Install other font packages, and/or make another directory first in the
-   font path. X clients will get other fonts by default.
-
-2. If for whatever reason you don't want to install other fonts, and really
-   want to keep the truetype directory first in the font path, you may
-   manually configure clients to use another font.
-   E.g. add the following line:
-     *font: -microsoft-verdana-medium-r-normal--*-*-*-*-*-*-*
-   to /etc/X11/Xresources/local
-   If that causes unwanted font changes in some apps (e.g. motif/lesstif-based),
-   you may be a bit more specific, e.g.:
-     xmessage*font: -microsoft-verdana-medium-r-normal--*-*-*-*-*-*-*
-
-3. Instead, it is possible to do fancy configuration using defoma.
-   It is possible to make another font alphabetically first in
-   /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType directory, by 'aliasing'
-   the font foundry. To do so:
-   - create an empty directory, e.g. /usr/local/share/fonts/deuglify
-   - symlink a few fonts there:
-        arialbolditalic.ttf -> /usr/share/fonts/truetype/Arial_Bold_Italic.ttf
-        arialbold.ttf -> /usr/share/fonts/truetype/Arial_Bold.ttf
-        arialitalic.ttf -> /usr/share/fonts/truetype/Arial_Italic.ttf
-        arial.ttf -> /usr/share/fonts/truetype/Arial.ttf
-     Note different file names used for links - that is required.
-   - create a new file in /etc/defoma/hints, e.g. 'deuglify.hints'
-   - for each font you have symlinked above, copy appropriate section from
-     ttf-mscorefonts-installer.hints to deuglify.hints; change font pathname
-     to symlink pathname, and change Foundry to something like '000'
-   - run 
-       /usr/bin/defoma-font reregister-all /etc/defoma/hints/deuglify.hints
-   Now, after 'xset fp rehash' (or X server or xfs restart) new font names will
-   become available, in the above example '-000-arial-*'. Now those are
-   alphabetically first, and will be used by default by xmessage & co.
-
diff -Nru msttcorefonts-3.3.old/debian/rules msttcorefonts-3.3/debian/rules
--- msttcorefonts-3.3.old/debian/rules	2011-11-18 07:29:01.079038121 +0100
+++ msttcorefonts-3.3/debian/rules	2011-11-18 07:29:51.347545536 +0100
@@ -36,7 +36,6 @@
 	dh_testroot
 	dh_installdebconf
 	dh_installdocs
-	dh_installdefoma
 	dh_installchangelogs 
 	dh_lintian
 	dh_link
diff -Nru msttcorefonts-3.3.old/debian/ttf-mscorefonts-installer.defoma-hints msttcorefonts-3.3/debian/ttf-mscorefonts-installer.defoma-hints
--- msttcorefonts-3.3.old/debian/ttf-mscorefonts-installer.defoma-hints	2011-11-18 07:29:01.079038121 +0100
+++ msttcorefonts-3.3/debian/ttf-mscorefonts-installer.defoma-hints	1970-01-01 01:00:00.000000000 +0100
@@ -1,432 +0,0 @@
-category truetype
-begin /usr/share/fonts/truetype/msttcorefonts/Andale_Mono.ttf
-  Family = Andale-Mono
-  FontName = AndaleMono
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Slovak Catalan Italian Danish Turkish Slovenian Basque Portuguese German Swedish Polish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251
-  GeneralFamily = Typewriter
-  Weight = Medium
-  Width = Fixed
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial.ttf
-  Family = Arial
-  FontName = Arial-Regular
-  Alias = Helvetica
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf
-  Family = Arial-Black
-  FontName = ArialBlack-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf
-  Family = Arial
-  FontName = Arial-Bold
-  Alias = Helvetica-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf
-  Family = Arial
-  FontName = Arial-BoldItalic
-  Alias = Helvetica-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf
-  Family = Arial
-  FontName = Arial-Italic
-  Alias = Helvetica-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf
-  Family = Comic-Sans-MS
-  FontName = ComicSansMS-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf
-  Family = Comic-Sans-MS
-  FontName = ComicSansMS-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf
-  Family = Courier-New
-  FontName = CourierNew-Regular
-  Alias = Courier
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Semilight
-  Width = Fixed
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf
-  Family = Courier-New
-  FontName = CourierNew-Bold
-  Alias = Courier-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Demibold
-  Width = Fixed
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf
-  Family = Courier-New
-  FontName = CourierNew-BoldItalic
-  Alias = Courier-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Demibold
-  Width = Fixed
-  Shape = Serif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf
-  Family = Courier-New
-  FontName = CourierNew-Italic
-  Alias = Courier-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Typewriter
-  Weight = Semilight
-  Width = Fixed
-  Shape = Italic Serif
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia.ttf
-  Family = Georgia
-  FontName = Georgia-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia_Bold.ttf
-  Family = Georgia
-  FontName = Georgia-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia_Bold_Italic.ttf
-  Family = Georgia
-  FontName = Georgia-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Georgia_Italic.ttf
-  Family = Georgia
-  FontName = Georgia-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Impact.ttf
-  Family = Impact
-  FontName = Impact
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright Condensed
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-Regular
-  Alias = Times-Roman
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-Bold
-  Alias = Times-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-6 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Upright
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-BoldItalic
-  Alias = Times-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf
-  Family = Times-New-Roman
-  FontName = TimesNewRoman-Italic
-  Alias = Times-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Vietnamese Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-8 ISO8859-9 ISO8859-9e ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP437 CP850 CP1251 CP1255 VISCII1.1-1 TCVN-5712 TATAR-CYR
-  GeneralFamily = Roman
-  Weight = Medium
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Monotype
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold_Italic.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = Serif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Italic.ttf
-  Family = Trebuchet-MS
-  FontName = TrebuchetMS-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana.ttf
-  Family = Verdana
-  FontName = Verdana-Regular
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf
-  Family = Verdana
-  FontName = Verdana-Bold
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Upright
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold_Italic.ttf
-  Family = Verdana
-  FontName = Verdana-BoldItalic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Bold
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf
-  Family = Verdana
-  FontName = Verdana-Italic
-  Encoding = Unicode
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712 ISO10646-1
-  UniCharset = ISO8859-1 ISO8859-2 ISO8859-3 ISO8859-4 ISO8859-5 ISO8859-7 ISO8859-9 ISO8859-10 ISO8859-13 ISO8859-14 ISO8859-15 KOI8-R KOI8-U CP1251 VISCII1.1-1 TCVN-5712
-  GeneralFamily = SansSerif
-  Weight = Medium
-  Width = Variable
-  Shape = NoSerif Italic
-  Foundry = Microsoft
-  Priority = 20
-end
-begin /usr/share/fonts/truetype/msttcorefonts/Webdings.ttf
-  Family = Webdings
-  FontName = Webdings
-  Encoding = Symbol
-  Location = Magyar Dutch Spanish Czech Russian English Catalan Slovak Italian Turkish Danish Slovenian Basque Portuguese German Polish Swedish Norwegian French Finnish Greek
-  Charset = font-specific
-  GeneralFamily = Symbol
-  Weight = Medium
-  Width = Variable
-  Shape
-  Foundry = Microsoft
-  Priority = 20
-end

Attachment: signature.asc
Description: Digital signature

Reply via email to