Ver código fonte

Convert domain to lower case

Bob Mottram 7 anos atrás
pai
commit
2e8a796946
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      src/freedombone-app-bdsmail

+ 1
- 1
src/freedombone-app-bdsmail Ver arquivo

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