We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63088eb commit 2076bf7Copy full SHA for 2076bf7
file2mail.sh
@@ -17,7 +17,9 @@ fi
17
message=`mktemp -t file2kindle`
18
trap "rm -f $message" INT EXIT TERM
19
20
-ascii_file_name=$(basename $FILE | iconv -s -f UTF-8 -t KOI7-SWITCHED )
+# XXX beteer to encode non ASCII filename but it is not easy to do in shell
21
+# and I'm don't need it
22
+ascii_file_name=$(basename "$FILE" | iconv -s -f UTF-8 -t US-ASCII)
23
file_mime_type=`file --brief --mime-type "$FILE"`
24
rfc822_date=$(date -R)
25
message_id="$(date +%s).$$@$(hostname)"
0 commit comments