├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── IMAP_related_RFCs.txt ├── _repo_mirror.txt ├── dev_notes.txt ├── dev_requirements.txt ├── donate.rst ├── full_docs.rst ├── packaging_notes.txt ├── release_notes.rst └── todo.txt ├── examples ├── basic.py ├── email_attachments_to_files.py ├── email_edit.py ├── email_from_eml.py ├── email_parse_eml_attachments.py ├── email_size.py ├── email_to_file.py ├── fetch_by_pages.py ├── idle.py ├── keyword_criteria_and_custom_flags.py ├── oauth2.py ├── pysocks_proxy.py ├── search.py └── starttls.py ├── imap_tools ├── __init__.py ├── consts.py ├── errors.py ├── folder.py ├── idle.py ├── imap_utf7.py ├── mailbox.py ├── message.py ├── py.typed ├── query.py └── utils.py ├── setup.py ├── tests ├── __init__.py ├── _disabled │ ├── raw_email_multiple_from.eml │ └── raw_email_multiple_from.py ├── messages │ ├── .gitattributes │ ├── address_quoted_newlines.eml │ ├── att_name_in_content_type.eml │ ├── attachment_2_base64.eml │ ├── attachment_7bit.eml │ ├── attachment_8bit.eml │ ├── attachment_emails │ │ ├── attachment_content_disposition.eml │ │ ├── attachment_content_location.eml │ │ ├── attachment_message_rfc822.eml │ │ ├── attachment_nonascii_filename.eml │ │ ├── attachment_only_email.eml │ │ ├── attachment_pdf.eml │ │ ├── attachment_pdf_lf.eml │ │ ├── attachment_with_base64_encoded_name.eml │ │ ├── attachment_with_encoded_name.eml │ │ ├── attachment_with_quoted_filename.eml │ │ └── attachment_with_unquoted_name.eml │ ├── attachment_inline1.eml │ ├── attachment_inline2.eml │ ├── base.eml │ ├── double_fields.eml │ ├── error_emails │ │ ├── InvalidMultipartContentTransferEncodingDefect.eml │ │ ├── bad_date_header.eml │ │ ├── bad_date_header2.eml │ │ ├── bad_encoded_subject.eml │ │ ├── bad_subject.eml │ │ ├── cant_parse_from.eml │ │ ├── content_transfer_encoding_7-bit.eml │ │ ├── content_transfer_encoding_empty.eml │ │ ├── content_transfer_encoding_plain.eml │ │ ├── content_transfer_encoding_qp_with_space.eml │ │ ├── content_transfer_encoding_spam.eml │ │ ├── content_transfer_encoding_text-html.eml │ │ ├── content_transfer_encoding_with_8bits.eml │ │ ├── content_transfer_encoding_with_semi_colon.eml │ │ ├── content_transfer_encoding_x_uuencode.eml │ │ ├── empty_group_lists.eml │ │ ├── empty_in_reply_to.eml │ │ ├── encoding_madness.eml │ │ ├── header_fields_with_empty_values.eml │ │ ├── invalid_subject_characters.eml │ │ ├── missing_body.eml │ │ ├── missing_content_disposition.eml │ │ ├── multiple_content_types.eml │ │ ├── multiple_invalid_content_dispositions.eml │ │ ├── multiple_references_with_one_invalid.eml │ │ ├── must_supply_encoding.eml │ │ ├── new_line_in_to_header.eml │ │ ├── trademark_character_in_subject.eml │ │ └── weird_to_header.eml │ ├── forwarded_message.eml │ ├── mime_emails │ │ ├── email_with_similar_boundaries.eml │ │ ├── raw_email11.eml │ │ ├── raw_email12.eml │ │ ├── raw_email2.eml │ │ ├── raw_email4.eml │ │ ├── raw_email7.eml │ │ ├── raw_email_encoded_stack_level_too_deep.eml │ │ ├── raw_email_with_binary_encoded.eml │ │ ├── raw_email_with_illegal_boundary.eml │ │ ├── raw_email_with_mimepart_without_content_type.eml │ │ ├── raw_email_with_multipart_mixed_quoted_boundary.eml │ │ ├── raw_email_with_nested_attachment.eml │ │ ├── raw_email_with_quoted_illegal_boundary.eml │ │ ├── sig_only_email.eml │ │ └── two_from_in_message.eml │ ├── multi_charset │ │ ├── japanese.eml │ │ ├── japanese_attachment.eml │ │ ├── japanese_attachment_long_name.eml │ │ ├── japanese_iso_2022.eml │ │ ├── japanese_shift_jis.eml │ │ └── ks_c_5601-1987.eml │ ├── multipart_report_emails │ │ ├── multi_address_bounce1.eml │ │ ├── multi_address_bounce2.eml │ │ ├── multipart_report_multiple_status.eml │ │ ├── report_422.eml │ │ └── report_530.eml │ ├── plain_emails │ │ ├── basic_email.eml │ │ ├── basic_email_lf.eml │ │ ├── mix_caps_content_type.eml │ │ ├── raw_email.eml │ │ ├── raw_email10.eml │ │ ├── raw_email5.eml │ │ ├── raw_email6.eml │ │ ├── raw_email8.eml │ │ ├── raw_email_bad_time.eml │ │ ├── raw_email_double_at_in_header.eml │ │ ├── raw_email_incorrect_header.eml │ │ ├── raw_email_quoted_with_0d0a.eml │ │ ├── raw_email_reply.eml │ │ ├── raw_email_simple.eml │ │ ├── raw_email_string_in_date_field.eml │ │ ├── raw_email_trailing_dot.eml │ │ ├── raw_email_with_at_display_name.eml │ │ ├── raw_email_with_bad_date.eml │ │ ├── raw_email_with_partially_quoted_content_id.eml │ │ └── raw_email_with_partially_quoted_subject.eml │ ├── rfc2822 │ │ ├── example01.eml │ │ ├── example02.eml │ │ ├── example03.eml │ │ ├── example04.eml │ │ ├── example05.eml │ │ ├── example06.eml │ │ ├── example07.eml │ │ ├── example08.eml │ │ ├── example09.eml │ │ ├── example10.eml │ │ ├── example11.eml │ │ ├── example12.eml │ │ ├── example13.eml │ │ └── example14.eml │ ├── rfc6532 │ │ └── utf8_headers.eml │ ├── simple.eml │ └── text_with_content_id.eml ├── messages_data │ ├── address_quoted_newlines.py │ ├── att_name_in_content_type.py │ ├── attachment_2_base64.py │ ├── attachment_7bit.py │ ├── attachment_8bit.py │ ├── attachment_emails │ │ ├── attachment_content_disposition.py │ │ ├── attachment_content_location.py │ │ ├── attachment_message_rfc822.py │ │ ├── attachment_nonascii_filename.py │ │ ├── attachment_only_email.py │ │ ├── attachment_pdf.py │ │ ├── attachment_pdf_lf.py │ │ ├── attachment_with_base64_encoded_name.py │ │ ├── attachment_with_encoded_name.py │ │ ├── attachment_with_quoted_filename.py │ │ └── attachment_with_unquoted_name.py │ ├── attachment_inline1.py │ ├── attachment_inline2.py │ ├── base.py │ ├── double_fields.py │ ├── error_emails │ │ ├── InvalidMultipartContentTransferEncodingDefect.py │ │ ├── bad_date_header.py │ │ ├── bad_date_header2.py │ │ ├── bad_encoded_subject.py │ │ ├── bad_subject.py │ │ ├── cant_parse_from.py │ │ ├── content_transfer_encoding_7-bit.py │ │ ├── content_transfer_encoding_empty.py │ │ ├── content_transfer_encoding_plain.py │ │ ├── content_transfer_encoding_qp_with_space.py │ │ ├── content_transfer_encoding_spam.py │ │ ├── content_transfer_encoding_text-html.py │ │ ├── content_transfer_encoding_with_8bits.py │ │ ├── content_transfer_encoding_with_semi_colon.py │ │ ├── content_transfer_encoding_x_uuencode.py │ │ ├── empty_group_lists.py │ │ ├── empty_in_reply_to.py │ │ ├── encoding_madness.py │ │ ├── header_fields_with_empty_values.py │ │ ├── invalid_subject_characters.py │ │ ├── missing_body.py │ │ ├── missing_content_disposition.py │ │ ├── multiple_content_types.py │ │ ├── multiple_invalid_content_dispositions.py │ │ ├── multiple_references_with_one_invalid.py │ │ ├── must_supply_encoding.py │ │ ├── new_line_in_to_header.py │ │ ├── trademark_character_in_subject.py │ │ └── weird_to_header.py │ ├── forwarded_message.py │ ├── mime_emails │ │ ├── email_with_similar_boundaries.py │ │ ├── raw_email11.py │ │ ├── raw_email12.py │ │ ├── raw_email2.py │ │ ├── raw_email4.py │ │ ├── raw_email7.py │ │ ├── raw_email_encoded_stack_level_too_deep.py │ │ ├── raw_email_with_binary_encoded.py │ │ ├── raw_email_with_illegal_boundary.py │ │ ├── raw_email_with_mimepart_without_content_type.py │ │ ├── raw_email_with_multipart_mixed_quoted_boundary.py │ │ ├── raw_email_with_nested_attachment.py │ │ ├── raw_email_with_quoted_illegal_boundary.py │ │ ├── sig_only_email.py │ │ └── two_from_in_message.py │ ├── multi_charset │ │ ├── japanese.py │ │ ├── japanese_attachment.py │ │ ├── japanese_attachment_long_name.py │ │ ├── japanese_iso_2022.py │ │ ├── japanese_shift_jis.py │ │ └── ks_c_5601-1987.py │ ├── multipart_report_emails │ │ ├── multi_address_bounce1.py │ │ ├── multi_address_bounce2.py │ │ ├── multipart_report_multiple_status.py │ │ ├── report_422.py │ │ └── report_530.py │ ├── plain_emails │ │ ├── basic_email.py │ │ ├── basic_email_lf.py │ │ ├── mix_caps_content_type.py │ │ ├── raw_email.py │ │ ├── raw_email10.py │ │ ├── raw_email5.py │ │ ├── raw_email6.py │ │ ├── raw_email8.py │ │ ├── raw_email_bad_time.py │ │ ├── raw_email_double_at_in_header.py │ │ ├── raw_email_incorrect_header.py │ │ ├── raw_email_quoted_with_0d0a.py │ │ ├── raw_email_reply.py │ │ ├── raw_email_simple.py │ │ ├── raw_email_string_in_date_field.py │ │ ├── raw_email_trailing_dot.py │ │ ├── raw_email_with_at_display_name.py │ │ ├── raw_email_with_bad_date.py │ │ ├── raw_email_with_partially_quoted_content_id.py │ │ └── raw_email_with_partially_quoted_subject.py │ ├── rfc2822 │ │ ├── example01.py │ │ ├── example02.py │ │ ├── example03.py │ │ ├── example04.py │ │ ├── example05.py │ │ ├── example06.py │ │ ├── example07.py │ │ ├── example08.py │ │ ├── example09.py │ │ ├── example10.py │ │ ├── example11.py │ │ ├── example12.py │ │ ├── example13.py │ │ └── example14.py │ ├── rfc6532 │ │ └── utf8_headers.py │ ├── simple.py │ └── text_with_content_id.py ├── test_connection.py ├── test_folders.py ├── test_idle.py ├── test_imap_utf7.py ├── test_mailbox.py ├── test_message.py ├── test_query.py ├── test_utils.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/README.rst -------------------------------------------------------------------------------- /docs/IMAP_related_RFCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/IMAP_related_RFCs.txt -------------------------------------------------------------------------------- /docs/_repo_mirror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/_repo_mirror.txt -------------------------------------------------------------------------------- /docs/dev_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/dev_notes.txt -------------------------------------------------------------------------------- /docs/dev_requirements.txt: -------------------------------------------------------------------------------- 1 | # build 2 | setuptools 3 | twine 4 | wheel 5 | 6 | # test 7 | tox 8 | -------------------------------------------------------------------------------- /docs/donate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/donate.rst -------------------------------------------------------------------------------- /docs/full_docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/full_docs.rst -------------------------------------------------------------------------------- /docs/packaging_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/packaging_notes.txt -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/docs/todo.txt -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/basic.py -------------------------------------------------------------------------------- /examples/email_attachments_to_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/email_attachments_to_files.py -------------------------------------------------------------------------------- /examples/email_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/email_edit.py -------------------------------------------------------------------------------- /examples/email_from_eml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/email_from_eml.py -------------------------------------------------------------------------------- /examples/email_parse_eml_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/email_parse_eml_attachments.py -------------------------------------------------------------------------------- /examples/email_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/email_size.py -------------------------------------------------------------------------------- /examples/email_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/email_to_file.py -------------------------------------------------------------------------------- /examples/fetch_by_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/fetch_by_pages.py -------------------------------------------------------------------------------- /examples/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/idle.py -------------------------------------------------------------------------------- /examples/keyword_criteria_and_custom_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/keyword_criteria_and_custom_flags.py -------------------------------------------------------------------------------- /examples/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/oauth2.py -------------------------------------------------------------------------------- /examples/pysocks_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/pysocks_proxy.py -------------------------------------------------------------------------------- /examples/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/search.py -------------------------------------------------------------------------------- /examples/starttls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/examples/starttls.py -------------------------------------------------------------------------------- /imap_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/__init__.py -------------------------------------------------------------------------------- /imap_tools/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/consts.py -------------------------------------------------------------------------------- /imap_tools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/errors.py -------------------------------------------------------------------------------- /imap_tools/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/folder.py -------------------------------------------------------------------------------- /imap_tools/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/idle.py -------------------------------------------------------------------------------- /imap_tools/imap_utf7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/imap_utf7.py -------------------------------------------------------------------------------- /imap_tools/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/mailbox.py -------------------------------------------------------------------------------- /imap_tools/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/message.py -------------------------------------------------------------------------------- /imap_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imap_tools/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/query.py -------------------------------------------------------------------------------- /imap_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/imap_tools/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_disabled/raw_email_multiple_from.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/_disabled/raw_email_multiple_from.eml -------------------------------------------------------------------------------- /tests/_disabled/raw_email_multiple_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/_disabled/raw_email_multiple_from.py -------------------------------------------------------------------------------- /tests/messages/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/messages/address_quoted_newlines.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/address_quoted_newlines.eml -------------------------------------------------------------------------------- /tests/messages/att_name_in_content_type.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/att_name_in_content_type.eml -------------------------------------------------------------------------------- /tests/messages/attachment_2_base64.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_2_base64.eml -------------------------------------------------------------------------------- /tests/messages/attachment_7bit.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_7bit.eml -------------------------------------------------------------------------------- /tests/messages/attachment_8bit.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_8bit.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_content_disposition.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_content_disposition.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_content_location.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_content_location.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_message_rfc822.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_message_rfc822.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_nonascii_filename.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_nonascii_filename.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_only_email.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_only_email.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_pdf.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_pdf.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_pdf_lf.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_pdf_lf.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_with_base64_encoded_name.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_with_base64_encoded_name.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_with_encoded_name.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_with_encoded_name.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_with_quoted_filename.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_with_quoted_filename.eml -------------------------------------------------------------------------------- /tests/messages/attachment_emails/attachment_with_unquoted_name.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_emails/attachment_with_unquoted_name.eml -------------------------------------------------------------------------------- /tests/messages/attachment_inline1.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_inline1.eml -------------------------------------------------------------------------------- /tests/messages/attachment_inline2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/attachment_inline2.eml -------------------------------------------------------------------------------- /tests/messages/base.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/base.eml -------------------------------------------------------------------------------- /tests/messages/double_fields.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/double_fields.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/InvalidMultipartContentTransferEncodingDefect.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/InvalidMultipartContentTransferEncodingDefect.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/bad_date_header.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/bad_date_header.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/bad_date_header2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/bad_date_header2.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/bad_encoded_subject.eml: -------------------------------------------------------------------------------- 1 | Subject: =?NONE?B?VEVTVA=?= 2 | 3 | TEST 4 | -------------------------------------------------------------------------------- /tests/messages/error_emails/bad_subject.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/bad_subject.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/cant_parse_from.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/cant_parse_from.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_7-bit.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_7-bit.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_empty.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_empty.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_plain.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_plain.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_qp_with_space.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_qp_with_space.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_spam.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_spam.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_text-html.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_text-html.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_with_8bits.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_with_8bits.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_with_semi_colon.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_with_semi_colon.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/content_transfer_encoding_x_uuencode.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/content_transfer_encoding_x_uuencode.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/empty_group_lists.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/empty_group_lists.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/empty_in_reply_to.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/empty_in_reply_to.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/encoding_madness.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/encoding_madness.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/header_fields_with_empty_values.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/header_fields_with_empty_values.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/invalid_subject_characters.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/invalid_subject_characters.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/missing_body.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/missing_body.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/missing_content_disposition.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/missing_content_disposition.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/multiple_content_types.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/multiple_content_types.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/multiple_invalid_content_dispositions.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/multiple_invalid_content_dispositions.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/multiple_references_with_one_invalid.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/multiple_references_with_one_invalid.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/must_supply_encoding.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/must_supply_encoding.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/new_line_in_to_header.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/new_line_in_to_header.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/trademark_character_in_subject.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/trademark_character_in_subject.eml -------------------------------------------------------------------------------- /tests/messages/error_emails/weird_to_header.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/error_emails/weird_to_header.eml -------------------------------------------------------------------------------- /tests/messages/forwarded_message.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/forwarded_message.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/email_with_similar_boundaries.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/email_with_similar_boundaries.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email11.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email11.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email12.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email12.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email2.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email4.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email4.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email7.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email7.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_encoded_stack_level_too_deep.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_encoded_stack_level_too_deep.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_with_binary_encoded.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_with_binary_encoded.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_with_illegal_boundary.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_with_illegal_boundary.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_with_mimepart_without_content_type.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_with_mimepart_without_content_type.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_with_nested_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_with_nested_attachment.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/raw_email_with_quoted_illegal_boundary.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/raw_email_with_quoted_illegal_boundary.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/sig_only_email.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/sig_only_email.eml -------------------------------------------------------------------------------- /tests/messages/mime_emails/two_from_in_message.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/mime_emails/two_from_in_message.eml -------------------------------------------------------------------------------- /tests/messages/multi_charset/japanese.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multi_charset/japanese.eml -------------------------------------------------------------------------------- /tests/messages/multi_charset/japanese_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multi_charset/japanese_attachment.eml -------------------------------------------------------------------------------- /tests/messages/multi_charset/japanese_attachment_long_name.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multi_charset/japanese_attachment_long_name.eml -------------------------------------------------------------------------------- /tests/messages/multi_charset/japanese_iso_2022.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multi_charset/japanese_iso_2022.eml -------------------------------------------------------------------------------- /tests/messages/multi_charset/japanese_shift_jis.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multi_charset/japanese_shift_jis.eml -------------------------------------------------------------------------------- /tests/messages/multi_charset/ks_c_5601-1987.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multi_charset/ks_c_5601-1987.eml -------------------------------------------------------------------------------- /tests/messages/multipart_report_emails/multi_address_bounce1.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multipart_report_emails/multi_address_bounce1.eml -------------------------------------------------------------------------------- /tests/messages/multipart_report_emails/multi_address_bounce2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multipart_report_emails/multi_address_bounce2.eml -------------------------------------------------------------------------------- /tests/messages/multipart_report_emails/multipart_report_multiple_status.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multipart_report_emails/multipart_report_multiple_status.eml -------------------------------------------------------------------------------- /tests/messages/multipart_report_emails/report_422.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multipart_report_emails/report_422.eml -------------------------------------------------------------------------------- /tests/messages/multipart_report_emails/report_530.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/multipart_report_emails/report_530.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/basic_email.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/basic_email.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/basic_email_lf.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/basic_email_lf.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/mix_caps_content_type.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/mix_caps_content_type.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email10.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email10.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email5.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email5.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email6.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email6.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email8.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email8.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_bad_time.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_bad_time.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_double_at_in_header.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_double_at_in_header.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_incorrect_header.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_incorrect_header.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_quoted_with_0d0a.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_quoted_with_0d0a.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_reply.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_reply.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_simple.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_simple.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_string_in_date_field.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_string_in_date_field.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_trailing_dot.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_trailing_dot.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_with_at_display_name.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_with_at_display_name.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_with_bad_date.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_with_bad_date.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_with_partially_quoted_content_id.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_with_partially_quoted_content_id.eml -------------------------------------------------------------------------------- /tests/messages/plain_emails/raw_email_with_partially_quoted_subject.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/plain_emails/raw_email_with_partially_quoted_subject.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example01.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example01.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example02.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example02.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example03.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example03.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example04.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example04.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example05.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example05.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example06.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example06.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example07.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example07.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example08.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example08.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example09.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example09.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example10.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example10.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example11.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example11.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example12.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example12.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example13.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example13.eml -------------------------------------------------------------------------------- /tests/messages/rfc2822/example14.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc2822/example14.eml -------------------------------------------------------------------------------- /tests/messages/rfc6532/utf8_headers.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/rfc6532/utf8_headers.eml -------------------------------------------------------------------------------- /tests/messages/simple.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/simple.eml -------------------------------------------------------------------------------- /tests/messages/text_with_content_id.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages/text_with_content_id.eml -------------------------------------------------------------------------------- /tests/messages_data/address_quoted_newlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/address_quoted_newlines.py -------------------------------------------------------------------------------- /tests/messages_data/att_name_in_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/att_name_in_content_type.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_2_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_2_base64.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_7bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_7bit.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_8bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_8bit.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_content_disposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_content_disposition.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_content_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_content_location.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_message_rfc822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_message_rfc822.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_nonascii_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_nonascii_filename.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_only_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_only_email.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_pdf.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_pdf_lf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_pdf_lf.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_with_base64_encoded_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_with_base64_encoded_name.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_with_encoded_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_with_encoded_name.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_with_quoted_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_with_quoted_filename.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_emails/attachment_with_unquoted_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_emails/attachment_with_unquoted_name.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_inline1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_inline1.py -------------------------------------------------------------------------------- /tests/messages_data/attachment_inline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/attachment_inline2.py -------------------------------------------------------------------------------- /tests/messages_data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/base.py -------------------------------------------------------------------------------- /tests/messages_data/double_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/double_fields.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/InvalidMultipartContentTransferEncodingDefect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/InvalidMultipartContentTransferEncodingDefect.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/bad_date_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/bad_date_header.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/bad_date_header2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/bad_date_header2.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/bad_encoded_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/bad_encoded_subject.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/bad_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/bad_subject.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/cant_parse_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/cant_parse_from.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_7-bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_7-bit.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_empty.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_plain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_plain.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_qp_with_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_qp_with_space.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_spam.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_text-html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_text-html.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_with_8bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_with_8bits.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_with_semi_colon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_with_semi_colon.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/content_transfer_encoding_x_uuencode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/content_transfer_encoding_x_uuencode.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/empty_group_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/empty_group_lists.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/empty_in_reply_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/empty_in_reply_to.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/encoding_madness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/encoding_madness.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/header_fields_with_empty_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/header_fields_with_empty_values.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/invalid_subject_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/invalid_subject_characters.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/missing_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/missing_body.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/missing_content_disposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/missing_content_disposition.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/multiple_content_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/multiple_content_types.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/multiple_invalid_content_dispositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/multiple_invalid_content_dispositions.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/multiple_references_with_one_invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/multiple_references_with_one_invalid.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/must_supply_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/must_supply_encoding.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/new_line_in_to_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/new_line_in_to_header.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/trademark_character_in_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/trademark_character_in_subject.py -------------------------------------------------------------------------------- /tests/messages_data/error_emails/weird_to_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/error_emails/weird_to_header.py -------------------------------------------------------------------------------- /tests/messages_data/forwarded_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/forwarded_message.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/email_with_similar_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/email_with_similar_boundaries.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email11.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email12.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email2.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email4.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email7.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_encoded_stack_level_too_deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_encoded_stack_level_too_deep.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_with_binary_encoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_with_binary_encoded.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_with_illegal_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_with_illegal_boundary.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_with_mimepart_without_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_with_mimepart_without_content_type.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_with_multipart_mixed_quoted_boundary.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_with_nested_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_with_nested_attachment.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/raw_email_with_quoted_illegal_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/raw_email_with_quoted_illegal_boundary.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/sig_only_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/sig_only_email.py -------------------------------------------------------------------------------- /tests/messages_data/mime_emails/two_from_in_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/mime_emails/two_from_in_message.py -------------------------------------------------------------------------------- /tests/messages_data/multi_charset/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multi_charset/japanese.py -------------------------------------------------------------------------------- /tests/messages_data/multi_charset/japanese_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multi_charset/japanese_attachment.py -------------------------------------------------------------------------------- /tests/messages_data/multi_charset/japanese_attachment_long_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multi_charset/japanese_attachment_long_name.py -------------------------------------------------------------------------------- /tests/messages_data/multi_charset/japanese_iso_2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multi_charset/japanese_iso_2022.py -------------------------------------------------------------------------------- /tests/messages_data/multi_charset/japanese_shift_jis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multi_charset/japanese_shift_jis.py -------------------------------------------------------------------------------- /tests/messages_data/multi_charset/ks_c_5601-1987.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multi_charset/ks_c_5601-1987.py -------------------------------------------------------------------------------- /tests/messages_data/multipart_report_emails/multi_address_bounce1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multipart_report_emails/multi_address_bounce1.py -------------------------------------------------------------------------------- /tests/messages_data/multipart_report_emails/multi_address_bounce2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multipart_report_emails/multi_address_bounce2.py -------------------------------------------------------------------------------- /tests/messages_data/multipart_report_emails/multipart_report_multiple_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multipart_report_emails/multipart_report_multiple_status.py -------------------------------------------------------------------------------- /tests/messages_data/multipart_report_emails/report_422.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multipart_report_emails/report_422.py -------------------------------------------------------------------------------- /tests/messages_data/multipart_report_emails/report_530.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/multipart_report_emails/report_530.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/basic_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/basic_email.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/basic_email_lf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/basic_email_lf.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/mix_caps_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/mix_caps_content_type.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email10.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email5.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email6.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email8.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_bad_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_bad_time.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_double_at_in_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_double_at_in_header.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_incorrect_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_incorrect_header.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_quoted_with_0d0a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_quoted_with_0d0a.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_reply.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_simple.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_string_in_date_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_string_in_date_field.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_trailing_dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_trailing_dot.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_with_at_display_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_with_at_display_name.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_with_bad_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_with_bad_date.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_with_partially_quoted_content_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_with_partially_quoted_content_id.py -------------------------------------------------------------------------------- /tests/messages_data/plain_emails/raw_email_with_partially_quoted_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/plain_emails/raw_email_with_partially_quoted_subject.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example01.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example02.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example03.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example04.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example05.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example06.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example07.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example08.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example09.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example10.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example11.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example12.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example13.py -------------------------------------------------------------------------------- /tests/messages_data/rfc2822/example14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc2822/example14.py -------------------------------------------------------------------------------- /tests/messages_data/rfc6532/utf8_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/rfc6532/utf8_headers.py -------------------------------------------------------------------------------- /tests/messages_data/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/simple.py -------------------------------------------------------------------------------- /tests/messages_data/text_with_content_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/messages_data/text_with_content_id.py -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_folders.py -------------------------------------------------------------------------------- /tests/test_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_idle.py -------------------------------------------------------------------------------- /tests/test_imap_utf7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_imap_utf7.py -------------------------------------------------------------------------------- /tests/test_mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_mailbox.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikvk/imap_tools/HEAD/tox.ini --------------------------------------------------------------------------------