diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/openssh-server.postinst | 3 | ||||
-rw-r--r-- | ssh_config | 3 |
3 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 546a0c4f2..a9c7327de 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -3,6 +3,11 @@ openssh (1:3.9p1-1) UNRELEASED; urgency=low | |||
3 | * New upstream release. | 3 | * New upstream release. |
4 | - PAM password authentication implemented again (closes: #238699, | 4 | - PAM password authentication implemented again (closes: #238699, |
5 | #242119). | 5 | #242119). |
6 | - Implemented the ability to pass selected environment variables between | ||
7 | the client and the server. | ||
8 | * Pass LANG and LC_* environment variables from the client by default, and | ||
9 | accept them to the server by default in new installs, although not on | ||
10 | upgrade (closes: #264024). | ||
6 | * Build ssh in binary-indep, not binary-arch (thanks, LaMont Jones). | 11 | * Build ssh in binary-indep, not binary-arch (thanks, LaMont Jones). |
7 | 12 | ||
8 | -- Colin Watson <cjwatson@debian.org> Wed, 1 Dec 2004 16:23:23 +0000 | 13 | -- Colin Watson <cjwatson@debian.org> Wed, 1 Dec 2004 16:23:23 +0000 |
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst index 1da6cdfc5..15e43f1a4 100644 --- a/debian/openssh-server.postinst +++ b/debian/openssh-server.postinst | |||
@@ -256,6 +256,9 @@ KeepAlive yes | |||
256 | #MaxStartups 10:30:60 | 256 | #MaxStartups 10:30:60 |
257 | #Banner /etc/issue.net | 257 | #Banner /etc/issue.net |
258 | 258 | ||
259 | # Allow client to pass locale environment variables | ||
260 | AcceptEnv LANG LC_* | ||
261 | |||
259 | Subsystem sftp /usr/lib/sftp-server | 262 | Subsystem sftp /usr/lib/sftp-server |
260 | 263 | ||
261 | UsePAM yes | 264 | UsePAM yes |
diff --git a/ssh_config b/ssh_config index f72394b4e..f3e1e8b04 100644 --- a/ssh_config +++ b/ssh_config | |||
@@ -15,7 +15,7 @@ | |||
15 | 15 | ||
16 | # Site-wide defaults for various options | 16 | # Site-wide defaults for various options |
17 | 17 | ||
18 | # Host * | 18 | Host * |
19 | # ForwardAgent no | 19 | # ForwardAgent no |
20 | # ForwardX11 no | 20 | # ForwardX11 no |
21 | # ForwardX11Trusted yes | 21 | # ForwardX11Trusted yes |
@@ -36,3 +36,4 @@ | |||
36 | # Cipher 3des | 36 | # Cipher 3des |
37 | # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc | 37 | # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc |
38 | # EscapeChar ~ | 38 | # EscapeChar ~ |
39 | SendEnv LANG LC_ALL | ||