Thanks for elaborating and the reference to rfc2440 - I now understand where that stray mail (between [RFC2822] and name-addr) in rfc4880 comes from...
Anyway, I'll treat it as if it says RFC 2822 mailbox and will treat angle brackets with bare addresses as optional.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Feed Advanced Search
Advanced Search
Advanced Search
Thu, Jun 5
Thu, Jun 5
jap added a comment to T7675: a user-id with just an email address (and not a display name) has no angle brackets surrounding the email address.
Wed, Jun 4
Wed, Jun 4
May 11 2023
May 11 2023
Anyway, thanks for fixing this.
It does work indeed!
Aug 8 2022
Aug 8 2022
jap added a comment to T6060: segfault (NULL-pointer) when inspecting gpg Context after exception (python).
Not sure if that is the complete fix - if you do something like:
with gpg.Context(...) as context: ... ... cause an exception after the context has been closed ...
then context will still be a valid reference to the gpg.Context instance, and may cause segfaults when something tries to access things inside it (f.e. for serialisation).
I like your previous solution with the accessor checks, because that actually fixes the issue.
Stylistically, maybe __del__ should just be renamed to cleanup or free, and then make sure to call that function from both __exit__ and __del__.
jap added a comment to T6060: segfault (NULL-pointer) when inspecting gpg Context after exception (python).
Can confirm, we've been running into this as well, but never filed a bug report. Our solution is to have this in our codebase:
Feb 21 2022
Feb 21 2022
Feb 10 2022
Feb 10 2022
jap added projects to T5825: [gpgme] [python] possible dangling reference to passphrase: gpgme, patch.
0001-Drop-the-reference-to-passphrase-callback-when-no-lo.patch2 KBDownload
Feb 9 2021
Feb 9 2021
jap added a comment to T5292: regression: no longer possible to get signatures from decrypt from unknown keys.
0001-python-Allow-returning-signatures-made-by-unknown-ke.patch2 KBDownload
Feb 1 2021
Feb 1 2021
Not exactly the answer I was hoping for..