You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some old recap_emailprocessingqueue rows have status_message "Not a valid notification email. No message content.", and status 6 ("INVALID_CONTENT").
This was triggered because we couldn't parse data out of the email (see code below). However, when manually testing some old emails on currenct code, we wouldn't trigger the condition.
I was looking at emails from bankruptcy courts. For example, this email from cacb. The case on CL
Data that would be parsed:
{'court_id': 'cacb',
'appellate': False,
'dockets': [{'case_name': 'Ayse Necla Necar',
'docket_number': '8:22-bk-11711',
'date_filed': None,
'docket_entries': [{'date_filed': datetime.date(2022, 10, 5),
'description': 'Chapter 7 Voluntary Petition for Individuals . Fee Amount $338 Filed by Ayse Necla Necar Statement of Intention for Individuals Filing Under Chapter 7 (Form 108) due 11/4/2022. Summary of Assets and Liabilities (Form 106Sum or 206Sum ) due 10/19/2022. Schedule A/B: Property (Form 106A/B or 206A/B) due 10/19/2022. Schedule C: The Property You Claim as Exempt (Form 106C) due 10/19/2022. Schedule D: Creditors Who Have Claims Secured by Property (Form 106D or 206D) due 10/19/2022. Schedule E/F: Creditors Who Have Unsecured Claims (Form 106E/F or 206E/F) due 10/19/2022. Schedule G: Executory Contracts and Unexpired Leases (Form 106G or 206G) due 10/19/2022. Schedule H: Your Codebtors (Form 106H or 206H) due 10/19/2022. Schedule I: Your Income (Form 106I) due 10/19/2022. Schedule J: Your Expenses (Form 106J) due 10/19/2022. Declaration Under Penalty of Perjury for Non-Individual Debtors (Form 202) due 10/19/2022. Statement of Financial Affairs (Form 107 or 207) due 10/19/2022. Chapter 7 Statement of Your Current Monthly Income (Form 122A-1) Due: 10/19/2022. Statement of Exemption from Presumption of Abuse (Form 122A-1Supp) Due: 10/19/2022. Chapter 7 Means Test Calculation (Form 122A-2) Due: 10/19/2022. Incomplete Filings due by 10/19/2022. (Heston, Benjamin)',
'short_description': 'Voluntary Petition (Chapter 7)',
'document_url': 'https://ecf.cacb.uscourts.gov/doc1/9730105877663?pdf_header=&magic_num=76185394&de_seq_num=2&caseid=1952572',
'document_number': '1',
'pacer_doc_id': '9730105877663',
'pacer_case_id': '1952572',
'pacer_seq_no': '2',
'pacer_magic_num': '76185394'}],
'federal_dn_office_code': '8',
'federal_dn_case_type': 'bk',
'federal_dn_judge_initials_assigned': None,
'federal_dn_judge_initials_referred': None,
'federal_defendant_number': None}],
'contains_attachments': False,
'email_recipients': [{'name': '',
'email_addresses': ['[email protected]',
'...',
'[email protected]']}]}
Which would add at least the DocketEntry.description to the current DocketEntry
The text was updated successfully, but these errors were encountered:
grossir
changed the title
Reprocess INVALID_CONTENT recap_emailprocessingqueue rows
Reprocess recap_emailprocessingqueue rows with INVALID_CONTENT status
Jan 6, 2025
Some old
recap_emailprocessingqueue
rows havestatus_message
"Not a valid notification email. No message content.", andstatus
6 ("INVALID_CONTENT").This was triggered because we couldn't parse data out of the email (see code below). However, when manually testing some old emails on currenct code, we wouldn't trigger the condition.
courtlistener/cl/recap/tasks.py
Lines 2536 to 2548 in f6bc9e1
I was looking at emails from bankruptcy courts. For example, this email from
cacb
. The case on CLData that would be parsed:
Which would add at least the
DocketEntry.description
to the current DocketEntryThe text was updated successfully, but these errors were encountered: