Package: openssh-server
Version: 1:4.7p1-7
Severity: whishlist
Tags: patch

Hello openssh maintainers,

I'm one of the Debian Edu Developers and we have currently a Worksession in 
Extremadura. During this worksession we try to find a solution for our 
long standing bug #311188, which is kind of release critical. 

Since we've to modify your package in order to change the X11 Forwarding 
option for our needs I would like to ask you to include the patch written 
by me.

Greetings
Winnie, 
 in behalf of the Debian Edu Team
-- 
 .''`.   Patrick Winnertz <[EMAIL PROTECTED]>
:  :' :  GNU/Linux Debian Developer
`. `'`   http://www.der-winnie.de http://people.skolelinux.org/~winnie
  `-  Debian - when you have better things to do than fixing systems
      Spamtrap: [EMAIL PROTECTED]
diff -Nurwd old/openssh-4.7p1/debian/control openssh-4.7p1/debian/control
--- old/openssh-4.7p1/debian/control	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/control	2008-04-04 17:42:34.000000000 +0200
@@ -2,7 +2,7 @@
 Section: net
 Priority: standard
 Maintainer: Debian OpenSSH Maintainers <[email protected]>
-Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev (>= 1:1.2.3-1), libssl-dev (>= 0.9.8-1), libpam0g-dev | libpam-dev, libgtk2.0-dev, libedit-dev, debhelper (>= 5.0.22), sharutils, libselinux1-dev [alpha amd64 arm armeb armel hppa i386 ia64 lpia m68k mips mipsel powerpc ppc64 s390 sparc], libkrb5-dev
+Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev (>= 1:1.2.3-1), libssl-dev (>= 0.9.8-1), libpam0g-dev | libpam-dev, libgtk2.0-dev, libedit-dev, debhelper (>= 5.0.22), sharutils, libselinux1-dev [alpha amd64 arm armeb armel hppa i386 ia64 lpia m68k mips mipsel powerpc ppc64 s390 sparc], libkrb5-dev, po-debconf
 Standards-Version: 3.7.3
 Uploaders: Colin Watson <[EMAIL PROTECTED]>, Matthew Vernon <[EMAIL PROTECTED]>
 
diff -Nurwd old/openssh-4.7p1/debian/openssh-server.config openssh-4.7p1/debian/openssh-server.config
--- old/openssh-4.7p1/debian/openssh-server.config	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/openssh-server.config	2008-04-04 18:05:50.000000000 +0200
@@ -53,6 +53,9 @@
     fi
 fi 
 
+db_input low ssh/enable_x_forwarding || true
+db_go
+
 key=/etc/ssh/ssh_host_key
 export key
 if [ -n "$version" ] && [ -f $key ] && [ ! -x /usr/bin/ssh-keygen ] &&
diff -Nurwd old/openssh-4.7p1/debian/openssh-server.postinst openssh-4.7p1/debian/openssh-server.postinst
--- old/openssh-4.7p1/debian/openssh-server.postinst	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/openssh-server.postinst	2008-04-04 18:15:20.000000000 +0200
@@ -169,6 +169,14 @@
 	fi
 }
 
+check_x_forwarding() {
+    db_get ssh/enable_x_forwarding
+    if [ "$RET" = true ]; then
+        set_config_option X11Forwarding yes
+    else
+        set_conf_option X11Forwarding no
+    fi
+}
 
 move_subsystem_sftp() {
 	subsystem_sftp="$(get_config_option 'Subsystem sftp')"
@@ -227,6 +235,8 @@
 		    remove_obsolete_gssapi
 		fi
 
+        check_x_forwarding
+
 		return 0
 	    fi
 	fi
diff -Nurwd old/openssh-4.7p1/debian/openssh-server.templates openssh-4.7p1/debian/openssh-server.templates
--- old/openssh-4.7p1/debian/openssh-server.templates	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/openssh-server.templates	2008-04-04 18:13:23.000000000 +0200
@@ -62,3 +62,11 @@
  able to log in using passwords. If you leave it enabled (the default
  answer), then the 'PasswordAuthentication no' option will have no useful
  effect unless you also adjust your PAM configuration in /etc/pam.d/ssh.
+
+Template: ssh/enable_x_forwarding
+Type: boolean
+Default: false
+_Description: Enable X Forwarding via ssh?
+ This ssh server is able to forward X connections via ssh to another
+ computer. However this will require more bandtwidth and is therefore
+ disabled by default.
diff -Nurwd old/openssh-4.7p1/debian/po/bg.po openssh-4.7p1/debian/po/bg.po
--- old/openssh-4.7p1/debian/po/bg.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/bg.po	2008-04-04 18:15:28.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-24 11:29+0300\n"
 "Last-Translator: Damyan Ivanov <[EMAIL PROTECTED]>\n"
 "Language-Team: Bulgarian <[EMAIL PROTECTED]>\n"
@@ -148,3 +148,18 @@
 "могат да използват пароли за удостоверяване. Ако е разрешено (по "
 "подразбиране), настройката 'PasswordAuthentication no' няма да има ефект, "
 "освен ако не промените настройките за PAM в /etc/pam.d/ssh."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/ca.po openssh-4.7p1/debian/po/ca.po
--- old/openssh-4.7p1/debian/po/ca.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/ca.po	2008-04-04 18:15:28.000000000 +0200
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: 1:4.6p1-2\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-06-30 01:13+0200\n"
 "Last-Translator: Jordà Polo <[EMAIL PROTECTED]>\n"
 "Language-Team: Català <[EMAIL PROTECTED]>\n"
@@ -157,6 +157,21 @@
 "predeterminada), aleshores «PasswordAuthentication no» no tindrà cap valor a "
 "menys que ajusteu la configuració de PAM a /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Avís: heu de crear una nova clau del servidor central"
 
diff -Nurwd old/openssh-4.7p1/debian/po/cs.po openssh-4.7p1/debian/po/cs.po
--- old/openssh-4.7p1/debian/po/cs.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/cs.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-30 10:22+0200\n"
 "Last-Translator: Miroslav Kure <[EMAIL PROTECTED]>\n"
 "Language-Team: Czech <[EMAIL PROTECTED]>\n"
@@ -157,6 +157,21 @@
 "nebude mít volba 'PasswordAuthentication no' žádný efekt, pokud ovšem "
 "neupravíte nastavení PAM v /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Varování: musíte vytvořit nový serverový klíč"
 
diff -Nurwd old/openssh-4.7p1/debian/po/da.po openssh-4.7p1/debian/po/da.po
--- old/openssh-4.7p1/debian/po/da.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/da.po	2008-04-04 18:15:29.000000000 +0200
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: openssh 3.8.1p1\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2006-10-02 08:53+0200\n"
 "Last-Translator: Claus Hindsgaul <[EMAIL PROTECTED]>\n"
 "Language-Team: Danish\n"
@@ -208,6 +208,21 @@
 "have nogen effekt, medmindre du ogs� redigerer din PAM-ops�tning i /etc/pam."
 "d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Advarsel: du skal oprette en ny v�rtsn�gle"
 
diff -Nurwd old/openssh-4.7p1/debian/po/de.po openssh-4.7p1/debian/po/de.po
--- old/openssh-4.7p1/debian/po/de.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/de.po	2008-04-04 18:15:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: openssh 1:4.3p2-11\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-24 14:42+0200\n"
 "Last-Translator: Helge Kreutzmann <[EMAIL PROTECTED]>\n"
 "Language-Team: German <[EMAIL PROTECTED]>\n"
@@ -156,6 +156,21 @@
 "Einstellung keinen n�tzlichen Effekt haben, es sei denn, sie passen auch "
 "Ihre PAM-Konfiguration in /etc/pam.d/ssh an."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Warnung: Sie m�ssen einen neuen Host-Schl�ssel erzeugen"
 
diff -Nurwd old/openssh-4.7p1/debian/po/el.po openssh-4.7p1/debian/po/el.po
--- old/openssh-4.7p1/debian/po/el.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/el.po	2008-04-04 18:15:29.000000000 +0200
@@ -16,7 +16,7 @@
 msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2004-10-14 21:34+0300\n"
 "Last-Translator: Konstantinos Margaritis <[EMAIL PROTECTED]>\n"
 "Language-Team: Greek <[EMAIL PROTECTED]>\n"
@@ -198,6 +198,21 @@
 "ενεργοποιημένο (προεπιλογή), τότε η επιλογή 'PasswordAuthetication no' δεν "
 "θα επιδρά εκτός και εάν ρυθμίσετε και το PAM στο αρχείο /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr ""
 #~ "Προσοχή: πρέπει να δημιουργήσετε ένα νέο κλειδί για τον υπολογιστή (host "
diff -Nurwd old/openssh-4.7p1/debian/po/es.po openssh-4.7p1/debian/po/es.po
--- old/openssh-4.7p1/debian/po/es.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/es.po	2008-04-04 18:15:29.000000000 +0200
@@ -33,7 +33,7 @@
 msgstr ""
 "Project-Id-Version: openssh 3.6.1p2-11\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-23 21:54+0200\n"
 "Last-Translator: Javier Fernandez-Sanguino Pe�a <[EMAIL PROTECTED]>\n"
 "Language-Team: Debian L10n Spanish <[EMAIL PROTECTED]>\n"
@@ -182,6 +182,21 @@
 "omisi�n) entonces la opci�n �PasswordAuthentication no� no tendr� ninguna "
 "utilidad a menos que ajuste su configuraci�n de PAM en �/etc/pam.d/ssh�."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Aviso: debe crear una nueva clave para su servidor"
 
diff -Nurwd old/openssh-4.7p1/debian/po/eu.po openssh-4.7p1/debian/po/eu.po
--- old/openssh-4.7p1/debian/po/eu.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/eu.po	2008-04-04 18:15:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: openssh-templates\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-27 12:10+0200\n"
 "Last-Translator: Piarres Beobide <[EMAIL PROTECTED]>\n"
 "Language-Team: librezale <[EMAIL PROTECTED]>\n"
@@ -154,3 +154,18 @@
 "pasahitza erabiliaz saio hasteko gai izango. Berau gaiturik utziaz gero "
 "(lehentsiriko erantzuna), 'PasswordAuthentication no' aukerak ez du "
 "ondoriorik izango /etc/pam.d/ssh-eko PAM konfigurazioa doitzen ez baduzu."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/fi.po openssh-4.7p1/debian/po/fi.po
--- old/openssh-4.7p1/debian/po/fi.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/fi.po	2008-04-04 18:15:29.000000000 +0200
@@ -18,7 +18,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2008-02-29 16:21+0200\n"
 "Last-Translator: Esko Arajärvi <[EMAIL PROTECTED]>\n"
 "Language-Team: Finnish <[EMAIL PROTECTED]>\n"
@@ -161,6 +161,21 @@
 "”PasswordAuthentication no” ei ole vaikutusta, ellet muuta myös PAM-"
 "asetuksia tiedostossa /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Varoitus: sinun tulee luoda uusi konekohtainen avain (host key)"
 
diff -Nurwd old/openssh-4.7p1/debian/po/fr.po openssh-4.7p1/debian/po/fr.po
--- old/openssh-4.7p1/debian/po/fr.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/fr.po	2008-04-04 18:15:29.000000000 +0200
@@ -17,7 +17,7 @@
 msgstr ""
 "Project-Id-Version: fr\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-23 18:05+0200\n"
 "Last-Translator: Christian Perrier <[EMAIL PROTECTED]>\n"
 "Language-Team: French <[EMAIL PROTECTED]>\n"
@@ -167,3 +167,18 @@
 "vous la laissez active (ce qui est la valeur par défaut), alors l'option "
 "« PasswordAuthentication no » n'aura d'effet que si vous ajustez aussi la "
 "configuration de PAM dans /etc/pam.d/ssh."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/gl.po openssh-4.7p1/debian/po/gl.po
--- old/openssh-4.7p1/debian/po/gl.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/gl.po	2008-04-04 18:15:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-24 18:09+0200\n"
 "Last-Translator: Jacobo Tarrio <[EMAIL PROTECTED]>\n"
 "Language-Team: Galician <[EMAIL PROTECTED]>\n"
@@ -161,6 +161,21 @@
 "defecto) a opción \"PasswordAuthentication no\" non ha ter ningún efecto "
 "útil a menos que tamén axuste a súa configuración de PAM en /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Aviso: ten que crear unha nove chave de servidor"
 
diff -Nurwd old/openssh-4.7p1/debian/po/it.po openssh-4.7p1/debian/po/it.po
--- old/openssh-4.7p1/debian/po/it.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/it.po	2008-04-04 18:15:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: openssh 4.3p2 italian debconf templates\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-25 11:08+0200\n"
 "Last-Translator: Luca Monducci <[EMAIL PROTECTED]>\n"
 "Language-Team: Italian <[EMAIL PROTECTED]>\n"
@@ -157,3 +157,18 @@
 "dalla configurazione predefinita, è abilitata allora l'opzione "
 "«PasswordAuthentication no» non ha effetto fino a quando non si interviene "
 "anche sulla configurazione di PAM in /etc/pam.d/ssh."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/ja.po openssh-4.7p1/debian/po/ja.po
--- old/openssh-4.7p1/debian/po/ja.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/ja.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-25 21:52+0900\n"
 "Last-Translator: Kenshi Muto <[EMAIL PROTECTED]>\n"
 "Language-Team: Japanese <[EMAIL PROTECTED]>\n"
@@ -156,3 +156,18 @@
 "できなくなります。有効 (デフォルト) のままにしておくと、/etc/pam.d/ssh にあ"
 "る PAM 設定を調節しない限り、'PasswordAuthentication no' オプションは効果を持"
 "たなくなります。"
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/ko.po openssh-4.7p1/debian/po/ko.po
--- old/openssh-4.7p1/debian/po/ko.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/ko.po	2008-04-04 18:15:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-05-15 19:28+0900\n"
 "Last-Translator: Sunjae Park <[EMAIL PROTECTED]>\n"
 "Language-Team: Korean <[EMAIL PROTECTED]>\n"
@@ -148,3 +148,18 @@
 "게 됩니다. (기본 설정대로) 해제하지 않으시면 /etc/pam.d/ssh에 있는 PAM 설정"
 "을 변경하지 않으실 경우 'PasswordAuthentication no' 옵션은 아무런 영향을 주"
 "지 못합니다."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/nb.po openssh-4.7p1/debian/po/nb.po
--- old/openssh-4.7p1/debian/po/nb.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/nb.po	2008-04-04 18:15:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: nb\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-24 19:14+0200\n"
 "Last-Translator: Bjørn Steensrud <[EMAIL PROTECTED]>\n"
 "Language-Team: Norwegian Bokmål <[EMAIL PROTECTED]>\n"
@@ -151,3 +151,18 @@
 "logge inn med passord. Hvis det står på (som er standard), så har det ingen "
 "virkning å sette «PasswordAuthentication no» med mindre PAM-oppsettet i /etc/"
 "pam.d/ssh også justeres."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/nl.po openssh-4.7p1/debian/po/nl.po
--- old/openssh-4.7p1/debian/po/nl.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/nl.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: openssh 3.6.1p2-9\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-28 20:40+0100\n"
 "Last-Translator: Bart Cornelis <[EMAIL PROTECTED]>\n"
 "Language-Team: debian-l10n-dutch <[EMAIL PROTECTED]>\n"
@@ -165,6 +165,21 @@
 "(de standaarwaarde) zal de 'PasswordAuthentication no' optie geen (nuttig) "
 "effect hebben tenzij u ook de PAM-configuratie aanpast in /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr ""
 #~ "Waarschuwing: er dient een nieuwe (encryptie)sleutel aangemaakt te worden "
diff -Nurwd old/openssh-4.7p1/debian/po/pl.po openssh-4.7p1/debian/po/pl.po
--- old/openssh-4.7p1/debian/po/pl.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/pl.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2004-04-08 18:28+0200\n"
 "Last-Translator: Emil Nowak <[EMAIL PROTECTED]>\n"
 "Language-Team: Polish <[EMAIL PROTECTED]>\n"
@@ -175,6 +175,21 @@
 "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
 msgstr ""
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Uwaga: musisz utworzy� nowy klucz hosta"
 
diff -Nurwd old/openssh-4.7p1/debian/po/pt_BR.po openssh-4.7p1/debian/po/pt_BR.po
--- old/openssh-4.7p1/debian/po/pt_BR.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/pt_BR.po	2008-04-04 18:15:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: openssh_1:4.6p1-5\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-08-25 23:24-0300\n"
 "Last-Translator: Eder L. Marques <[EMAIL PROTECTED]>\n"
 "Language-Team: l10n Portuguese <[EMAIL PROTECTED]>\n"
@@ -160,6 +160,21 @@
 "'PasswordAuthentication no' não terá efeito útil a menos que você também "
 "ajuste sua configuração PAM em /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Aviso: você deve criar uma nova host key"
 
diff -Nurwd old/openssh-4.7p1/debian/po/pt.po openssh-4.7p1/debian/po/pt.po
--- old/openssh-4.7p1/debian/po/pt.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/pt.po	2008-04-04 18:15:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: openssh 4.3p2-3\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-05-09 22:21+0100\n"
 "Last-Translator: Ricardo Silva <[EMAIL PROTECTED]>\n"
 "Language-Team: Native Portuguese <[EMAIL PROTECTED]>\n"
@@ -151,3 +151,18 @@
 "capazes de se ligar usando palavras-chave. Se deixar activado (a resposta "
 "por omissão), então a opção 'PasswordAuthentication no' não terá efeito a "
 "não ser que também ajuste a configuração do PAM em /etc/pam.d/ssh."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/ro.po openssh-4.7p1/debian/po/ro.po
--- old/openssh-4.7p1/debian/po/ro.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/ro.po	2008-04-04 18:15:29.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: openssh 1.4\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-05-01 05:45+0300\n"
 "Last-Translator: Igor Stirbu <[EMAIL PROTECTED]>\n"
 "Language-Team: Romanian <[EMAIL PROTECTED]>\n"
@@ -158,6 +158,21 @@
 "(răspunsul implicit), aunci opțiunea 'PasswordAuthentification no' va fi "
 "utilizabilă doar dacă modificați și configurația PAM din /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Avertizare: trebuie să creați o nouă cheie pentru sistem"
 
diff -Nurwd old/openssh-4.7p1/debian/po/ru.po openssh-4.7p1/debian/po/ru.po
--- old/openssh-4.7p1/debian/po/ru.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/ru.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: openssh_ru\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-05-08 12:11+0300\n"
 "Last-Translator: Yuriy Talakan' <[EMAIL PROTECTED]>\n"
 "Language-Team: Russian <[EMAIL PROTECTED]>\n"
@@ -163,3 +163,18 @@
 "с использованием паролей. Если вы оставите её разрешенной (ответ по "
 "умолчанию), то параметр 'PasswordAuthentication no' не будет иметь силы, до "
 "тех пор, пока вы также не откорректируете настройки PAM в /etc/pam.d/ssh."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/sk.po openssh-4.7p1/debian/po/sk.po
--- old/openssh-4.7p1/debian/po/sk.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/sk.po	2008-04-04 18:15:29.000000000 +0200
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: openssh 1_4.6p1-5\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-09-10 22:15+0100\n"
 "Last-Translator: Ivan Masár <[EMAIL PROTECTED]>\n"
 "Language-Team: Slovak <[EMAIL PROTECTED]>\n"
@@ -146,3 +146,18 @@
 "prihlasovať pomocou hesiel. Ak ju necháte zapnutú (štandardná odpoveď), "
 "potom nebude mať voľba „PasswordAuthentication no“ žiadny účinok v prípade, "
 "že tiež vhodne nenastavíte vašu konfiguráciu PAM v /etc/pam.d/ssh."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/sv.po openssh-4.7p1/debian/po/sv.po
--- old/openssh-4.7p1/debian/po/sv.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/sv.po	2008-04-04 18:15:29.000000000 +0200
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: openssh 1:4.3p2-1\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-26 15:55+0100\n"
 "Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
 "Language-Team: Swedish <[EMAIL PROTECTED]>\n"
@@ -162,6 +162,21 @@
 "kommer \"PasswordAuthentication no\" inte att ha n�gon effekt om du inte "
 "justerar din PAM-konfiguration i /etc/pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Varning: du m�ste skapa en ny v�rdnyckel"
 
diff -Nurwd old/openssh-4.7p1/debian/po/ta.po openssh-4.7p1/debian/po/ta.po
--- old/openssh-4.7p1/debian/po/ta.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/ta.po	2008-04-04 18:15:29.000000000 +0200
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: openssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-04-24 20:52+0530\n"
 "Last-Translator: Dr.T.Vasudevan <[EMAIL PROTECTED]>\n"
 "Language-Team: TAMIL <[EMAIL PROTECTED]>\n"
@@ -150,3 +150,18 @@
 "உள் நுழைய இயலாது. அதை செயல் படச்செய்தால் (கடவுச்சொல் உறுதிப்படுத்தல் தேர்வு இல்லை) "
 "'PasswordAuthentication no'  தேர்வு /etc/pam.d/ssh இல் பாம் வடிவமைப்பை சரி "
 "செய்தால் ஒழிய பயன் தராது."
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/templates.pot openssh-4.7p1/debian/po/templates.pot
--- old/openssh-4.7p1/debian/po/templates.pot	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/templates.pot	2008-04-04 18:15:28.000000000 +0200
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
 "Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
@@ -123,3 +123,18 @@
 "answer), then the 'PasswordAuthentication no' option will have no useful "
 "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
 msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
diff -Nurwd old/openssh-4.7p1/debian/po/tr.po openssh-4.7p1/debian/po/tr.po
--- old/openssh-4.7p1/debian/po/tr.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/tr.po	2008-04-04 18:15:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: ssh\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2004-04-27 06:50+0300\n"
 "Last-Translator: Recai Oktaş <[EMAIL PROTECTED]>\n"
 "Language-Team: Turkish <[EMAIL PROTECTED]>\n"
@@ -168,6 +168,21 @@
 "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
 msgstr ""
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Uyarı: yeni bir makine anahtarı oluşturmalısınız"
 
diff -Nurwd old/openssh-4.7p1/debian/po/uk.po openssh-4.7p1/debian/po/uk.po
--- old/openssh-4.7p1/debian/po/uk.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/uk.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: openssh-uk\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2005-03-28 22:28+0300\n"
 "Last-Translator: Eugeniy Meshcheryakov <[EMAIL PROTECTED]>\n"
 "Language-Team: Ukrainian\n"
@@ -196,6 +196,21 @@
 "мати корисного ефекту доки ви не пристосуєте також налаштування PAM в /etc/"
 "pam.d/ssh."
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Попередження: ви повинні створити новий ключ вузла"
 
diff -Nurwd old/openssh-4.7p1/debian/po/vi.po openssh-4.7p1/debian/po/vi.po
--- old/openssh-4.7p1/debian/po/vi.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/vi.po	2008-04-04 18:15:29.000000000 +0200
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: openssh 1/4.1p1-4\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2007-06-10 14:47+0930\n"
 "Last-Translator: Clytie Siddall <[EMAIL PROTECTED]>\n"
 "Language-Team: Vietnamese <[EMAIL PROTECTED]"
@@ -175,6 +175,21 @@
 "PasswordAuthentication no » (xác thực bằng mật khẩu : không) sẽ không có tác "
 "động thật, nếu bạn không điều chỉnh cấu hình PAM trong « /etc/pam.d/ssh »"
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "Cảnh báo: bạn phải tạo một khóa máy mới"
 
diff -Nurwd old/openssh-4.7p1/debian/po/zh_CN.po openssh-4.7p1/debian/po/zh_CN.po
--- old/openssh-4.7p1/debian/po/zh_CN.po	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/po/zh_CN.po	2008-04-04 18:15:29.000000000 +0200
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: openssh 3.6.1p2-11\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
-"POT-Creation-Date: 2008-01-11 00:10+0000\n"
+"POT-Creation-Date: 2008-04-04 18:15+0200\n"
 "PO-Revision-Date: 2004-02-02 18:48+1300\n"
 "Last-Translator: Hiei Xu <[EMAIL PROTECTED]>\n"
 "Language-Team: Chinese/Simplified <[EMAIL PROTECTED]>\n"
@@ -168,6 +168,21 @@
 "effect unless you also adjust your PAM configuration in /etc/pam.d/ssh."
 msgstr ""
 
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid "Enable X Forwarding via ssh?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../openssh-server.templates:5001
+msgid ""
+"This ssh server is able to forward X connections via ssh to another "
+"computer. However this will require more bandtwidth and is therefore "
+"disabled by default."
+msgstr ""
+
 #~ msgid "Warning: you must create a new host key"
 #~ msgstr "警告:您必须创建一个新的主机密钥"
 
diff -Nurwd old/openssh-4.7p1/debian/rules openssh-4.7p1/debian/rules
--- old/openssh-4.7p1/debian/rules	2008-04-04 18:19:59.000000000 +0200
+++ openssh-4.7p1/debian/rules	2008-04-04 17:44:11.000000000 +0200
@@ -150,6 +150,7 @@
 	(cat debian/copyright.head; iconv -f ISO-8859-1 -t UTF-8 LICENCE) \
 		> debian/copyright
 	dh_clean
+	debconf-updatepo
 
 install: DH_OPTIONS=-a
 install: build

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to