In the README.md file it shows a config file possibility for multiple accounts.
It shows "; required" after lines that are required. However, the parser doesn't actually skip comments with the ";" token as implied by the example. You need to remove those lines after the password for example.
When I modified for password, the program tried to enter the entire line, with all the spaces and ";" items as the password, which obviously failed.
Either modify the config file parser to ignore spaces and ";", or change the README.md for a better example.
In the README.md file it shows a config file possibility for multiple accounts.
It shows "; required" after lines that are required. However, the parser doesn't actually skip comments with the ";" token as implied by the example. You need to remove those lines after the password for example.
When I modified for password, the program tried to enter the entire line, with all the spaces and ";" items as the password, which obviously failed.
Either modify the config file parser to ignore spaces and ";", or change the README.md for a better example.