Convert domain to lower case

This commit is contained in:
Bob Mottram 2018-02-12 22:13:31 +00:00
parent 0dc6df1095
commit 2e8a796946
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ function install_bdsmail {
echo 'if [ ! -f bdsmail-privkey.dat ]; then' >> /usr/bin/bdsmail_domain
echo ' exit 1' >> /usr/bin/bdsmail_domain
echo 'fi' >> /usr/bin/bdsmail_domain
echo 'python2 get_address bdsmail-privkey.dat' >> /usr/bin/bdsmail_domain
echo "python2 get_address bdsmail-privkey.dat | tr '[:upper:]' '[:lower:]'" >> /usr/bin/bdsmail_domain
chmod +x /usr/bin/bdsmail_domain
echo ''