-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
passwords with spaces not supported in .sendxmpprc #9
Comments
Are you sure? Have you tried quotation: "password" or 'password' ? |
I am sure. Adding quotes just makes things worse, the quotes get included as part of the password. [ben@Nyx:~/projects/sendxmpp] cat [ben@Nyx:~/projects/sendxmpp] cat [ben@Nyx:~/projects/sendxmpp] cat It comes down to the regex here: The password (\S+) matches non-whitespace characters. No quoting or escaping is checked for. Adding support for quoting in the regex would be difficult without breaking passwords with quotation marks in them. Probably the best option would be to put each field on a seperate line, like: |
Hi all, I will check this issue this week and provide a patch. The biggest problem Thanks for your report. Regards,
|
Fixed |
Since the fields in .sendxmpprc are whitespace seperated, there is no way to enter a password with a space in it.
The text was updated successfully, but these errors were encountered: