Displaying 4 results from an estimated 4 matches for "x01rauth".
2016 Jul 29
2
Dict protocol changes string
...Pass: %w^MAuth-Protocol:
%s^MClient-IP: %r
format = json
}
(^M is an \r character, inserted with vi CTRL-v + enter)
Until 2.2.24 this has worked, but 2.2.25 seems to convert that ASCII 13
into an ASCII 1 and an "r".
Python printout from what I get with 2.2.25:
'Lshared/passdb\x01rAuth-User: user\x01rAuth-Pass:
pass\x01rAuth-Protocol: pop3\x01rClient-IP: 1.2.3.4'
Is this change intentional? Why?
2017 Feb 28
2
Dict protocol changes string
...> (^M is an \r character, inserted with vi CTRL-v + enter)
>>
>> Until 2.2.24 this has worked, but 2.2.25 seems to convert that ASCII
>> 13 into an ASCII 1 and an "r".
>>
>> Python printout from what I get with 2.2.25:
>>
>> 'Lshared/passdb\x01rAuth-User: user\x01rAuth-Pass:
>> pass\x01rAuth-Protocol: pop3\x01rClient-IP: 1.2.3.4'
>>
>> Is this change intentional? Why?
> Hi!
>
> Dict protocol escapes you newlines. You are expected to de-escape them
> yourself.
>
> Following escapes are done, you can de-es...
2016 Sep 23
0
Dict protocol changes string
...format = json
> }
>
> (^M is an \r character, inserted with vi CTRL-v + enter)
>
> Until 2.2.24 this has worked, but 2.2.25 seems to convert that ASCII
> 13 into an ASCII 1 and an "r".
>
> Python printout from what I get with 2.2.25:
>
> 'Lshared/passdb\x01rAuth-User: user\x01rAuth-Pass:
> pass\x01rAuth-Protocol: pop3\x01rClient-IP: 1.2.3.4'
>
> Is this change intentional? Why?
Hi!
Dict protocol escapes you newlines. You are expected to de-escape them
yourself.
Following escapes are done, you can de-escape them with your client.
\x00 =>...
2017 Mar 13
0
Dict protocol changes string
...inserted with vi CTRL-v + enter)
>>>
>>> Until 2.2.24 this has worked, but 2.2.25 seems to convert that ASCII
>>> 13 into an ASCII 1 and an "r".
>>>
>>> Python printout from what I get with 2.2.25:
>>>
>>> 'Lshared/passdb\x01rAuth-User: user\x01rAuth-Pass:
>>> pass\x01rAuth-Protocol: pop3\x01rClient-IP: 1.2.3.4'
>>>
>>> Is this change intentional? Why?
>> Hi!
>>
>> Dict protocol escapes you newlines. You are expected to de-escape them
>> yourself.
>>
>> Follo...