From 6a48cdcdf351832762aa92ed634e114d3a2453e9 Mon Sep 17 00:00:00 2001 From: c0h1b4 Date: Tue, 1 Mar 2016 10:40:39 -0300 Subject: [PATCH 1/2] Fix for putty Line Drawing issues Fix for putty (Windows) Line Drawing characters to be shown correctly. --- setup/start.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/start.sh b/setup/start.sh index 3a93ac22..3bd01898 100755 --- a/setup/start.sh +++ b/setup/start.sh @@ -24,6 +24,8 @@ export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LC_TYPE=en_US.UTF-8 +# Fix for putty Line Drawing characters to be shown correctly +export NCURSES_NO_UTF8_ACS=1 # Recall the last settings used if we're running this a second time. if [ -f /etc/mailinabox.conf ]; then # Run any system migrations before proceeding. Since this is a second run, From c01f903413a54d0fc25d957a20a282c866ab0fcb Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Wed, 23 Mar 2016 16:50:27 -0400 Subject: [PATCH 2/2] edit NCURSES_NO_UTF8_ACS's comment, add changelog entry --- CHANGELOG.md | 2 ++ setup/start.sh | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c99020b..5277a980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ CHANGELOG ========= +* Setup dialogs did not appear correctly when connecting to SSH using Putty on Windows. + v0.17b (March 1, 2016) ---------------------- diff --git a/setup/start.sh b/setup/start.sh index 3bd01898..09dc8956 100755 --- a/setup/start.sh +++ b/setup/start.sh @@ -24,8 +24,9 @@ export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LC_TYPE=en_US.UTF-8 -# Fix for putty Line Drawing characters to be shown correctly +# Fix so line drawing characters are shown correctly in Putty on Windows. See #744. export NCURSES_NO_UTF8_ACS=1 + # Recall the last settings used if we're running this a second time. if [ -f /etc/mailinabox.conf ]; then # Run any system migrations before proceeding. Since this is a second run,