use human-readable variable names (issue #1003)

pull/1006/head
Thomas Mayer 2015-03-29 18:18:30 +02:00
parent 675c3a7c95
commit 923d807ef8
1 changed files with 2 additions and 1 deletions

View File

@ -15,9 +15,10 @@ _whois = whois <ip> || echo "missing whois program"
# use heuristics to convert charset of whois output to a target # use heuristics to convert charset of whois output to a target
# character set before sending it to a mail program # character set before sending it to a mail program
# make sure you have 'file' and 'iconv' commands installed when opting for that
_whois_target_charset = UTF-8 _whois_target_charset = UTF-8
_whois_convert_charset = whois <ip> | _whois_convert_charset = whois <ip> |
{ c=$(cat) ; cs=$(printf %%b "$c" | file -b --mime-encoding -) ; printf %%b "$c" | iconv -f $cs -t %(_whois_target_charset)s//TRANSLIT - ; } { WHOIS_OUTPUT=$(cat) ; WHOIS_CHARSET=$(printf %%b "$WHOIS_OUTPUT" | file -b --mime-encoding -) ; printf %%b "$WHOIS_OUTPUT" | iconv -f $WHOIS_CHARSET -t %(_whois_target_charset)s//TRANSLIT - ; }
# choose between _whois and _whois_convert_charset in mail-whois-common.local # choose between _whois and _whois_convert_charset in mail-whois-common.local
# or other *.local which include mail-whois-common.conf. # or other *.local which include mail-whois-common.conf.