git: escape string values in configuration
This should handle the special characters that typically occur. Fixes #1206
This commit is contained in:
parent
8b82f52e75
commit
642d9ffe24
6 changed files with 42 additions and 30 deletions
|
|
@ -1,15 +1,15 @@
|
|||
[sendemail "hm-account"]
|
||||
from = hm@example.org
|
||||
smtpEncryption = tls
|
||||
smtpServer = smtp.example.org
|
||||
smtpUser = home.manager.jr
|
||||
from = "hm@example.org"
|
||||
smtpEncryption = "tls"
|
||||
smtpServer = "smtp.example.org"
|
||||
smtpUser = "home.manager.jr"
|
||||
|
||||
[sendemail "hm@example.com"]
|
||||
from = hm@example.com
|
||||
smtpEncryption = tls
|
||||
smtpServer = smtp.example.com
|
||||
smtpUser = home.manager
|
||||
from = "hm@example.com"
|
||||
smtpEncryption = "tls"
|
||||
smtpServer = "smtp.example.com"
|
||||
smtpUser = "home.manager"
|
||||
|
||||
[user]
|
||||
email = hm@example.com
|
||||
name = H. M. Test
|
||||
email = "hm@example.com"
|
||||
name = "H. M. Test"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue