├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── general-help-request.md ├── docker │ ├── Dockerfile │ └── dovecot_setup.sh └── workflows │ └── tests.yaml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSE.md ├── README.md ├── _config.yml ├── composer.json ├── examples ├── custom_attachment_mask.php ├── custom_message_mask.php ├── folder_structure.blade.php └── message_table.blade.php ├── phpunit.xml.dist ├── src ├── Address.php ├── Attachment.php ├── Attribute.php ├── Client.php ├── ClientManager.php ├── Config.php ├── Connection │ └── Protocols │ │ ├── ImapProtocol.php │ │ ├── LegacyProtocol.php │ │ ├── Protocol.php │ │ ├── ProtocolInterface.php │ │ └── Response.php ├── Decoder │ ├── AttachmentDecoder.php │ ├── Decoder.php │ ├── DecoderInterface.php │ ├── HeaderDecoder.php │ └── MessageDecoder.php ├── EncodingAliases.php ├── Events │ ├── Event.php │ ├── FlagDeletedEvent.php │ ├── FlagNewEvent.php │ ├── FolderDeletedEvent.php │ ├── FolderMovedEvent.php │ ├── FolderNewEvent.php │ ├── MessageCopiedEvent.php │ ├── MessageDeletedEvent.php │ ├── MessageMovedEvent.php │ ├── MessageNewEvent.php │ └── MessageRestoredEvent.php ├── Exceptions │ ├── AuthFailedException.php │ ├── ConnectionFailedException.php │ ├── DecoderNotFoundException.php │ ├── EventNotFoundException.php │ ├── FolderFetchingException.php │ ├── GetMessagesFailedException.php │ ├── ImapBadRequestException.php │ ├── ImapServerErrorException.php │ ├── InvalidMessageDateException.php │ ├── InvalidWhereQueryCriteriaException.php │ ├── MaskNotFoundException.php │ ├── MessageContentFetchingException.php │ ├── MessageFlagException.php │ ├── MessageHeaderFetchingException.php │ ├── MessageNotFoundException.php │ ├── MessageSearchValidationException.php │ ├── MessageSizeFetchingException.php │ ├── MethodNotFoundException.php │ ├── MethodNotSupportedException.php │ ├── NotSupportedCapabilityException.php │ ├── ProtocolNotSupportedException.php │ ├── ResponseException.php │ ├── RuntimeException.php │ └── SpoofingAttemptDetectedException.php ├── Folder.php ├── Header.php ├── IMAP.php ├── Message.php ├── Part.php ├── Query │ ├── Query.php │ └── WhereQuery.php ├── Structure.php ├── Support │ ├── AttachmentCollection.php │ ├── FlagCollection.php │ ├── FolderCollection.php │ ├── Masks │ │ ├── AttachmentMask.php │ │ ├── Mask.php │ │ └── MessageMask.php │ ├── MessageCollection.php │ └── PaginatedCollection.php ├── Traits │ └── HasEvents.php └── config │ └── imap.php └── tests ├── AddressTest.php ├── AttachmentTest.php ├── AttributeTest.php ├── ClientManagerTest.php ├── ClientTest.php ├── HeaderTest.php ├── ImapProtocolTest.php ├── MessageTest.php ├── PartTest.php ├── StructureTest.php ├── fixtures ├── AttachmentEncodedFilenameTest.php ├── AttachmentLongFilenameTest.php ├── AttachmentNoDispositionTest.php ├── BccTest.php ├── BooleanDecodedContentTest.php ├── DateTemplateTest.php ├── EmailAddressTest.php ├── EmbeddedEmailTest.php ├── EmbeddedEmailWithoutContentDispositionEmbeddedTest.php ├── EmbeddedEmailWithoutContentDispositionTest.php ├── ExampleBounceTest.php ├── FixtureTestCase.php ├── FourNestedEmailsTest.php ├── GbkCharsetTest.php ├── HtmlOnlyTest.php ├── ImapMimeHeaderDecodeReturnsFalseTest.php ├── InlineAttachmentTest.php ├── KsC56011987HeadersTest.php ├── MailThatIsAttachmentTest.php ├── MissingDateTest.php ├── MissingFromTest.php ├── MixedFilenameTest.php ├── MultipartWithoutBodyTest.php ├── MultipleHtmlPartsAndAttachmentsTest.php ├── MultipleNestedAttachmentsTest.php ├── NestesEmbeddedWithAttachmentTest.php ├── NullContentCharsetTest.php ├── PecTest.php ├── PlainOnlyTest.php ├── PlainTextAttachmentTest.php ├── ReferencesTest.php ├── SimpleMultipartTest.php ├── StructuredWithAttachmentTest.php ├── UndefinedCharsetHeaderTest.php ├── UndisclosedRecipientsMinusTest.php ├── UndisclosedRecipientsSpaceTest.php ├── UndisclosedRecipientsTest.php ├── UnknownEncodingTest.php ├── WithoutCharsetPlainOnlyTest.php └── WithoutCharsetSimpleMultipartTest.php ├── issues ├── Issue275Test.php ├── Issue355Test.php ├── Issue379Test.php ├── Issue382Test.php ├── Issue383Test.php ├── Issue393Test.php ├── Issue401Test.php ├── Issue407Test.php ├── Issue40Test.php ├── Issue410Test.php ├── Issue412Test.php ├── Issue413Test.php ├── Issue414Test.php ├── Issue420Test.php ├── Issue462Test.php ├── Issue469Test.php ├── Issue511Test.php └── Issue544Test.php ├── live ├── ClientTest.php ├── FolderTest.php ├── LegacyTest.php ├── LiveMailboxTestCase.php ├── MessageTest.php └── QueryTest.php └── messages ├── 1366671050@github.com.eml ├── attachment_encoded_filename.eml ├── attachment_long_filename.eml ├── attachment_no_disposition.eml ├── bcc.eml ├── boolean_decoded_content.eml ├── date-template.eml ├── email_address.eml ├── embedded_email.eml ├── embedded_email_without_content_disposition-embedded.eml ├── embedded_email_without_content_disposition.eml ├── example_attachment.eml ├── example_bounce.eml ├── four_nested_emails.eml ├── gbk_charset.eml ├── html_only.eml ├── imap_mime_header_decode_returns_false.eml ├── inline_attachment.eml ├── issue-275-2.eml ├── issue-275.eml ├── issue-348.eml ├── issue-382.eml ├── issue-40.eml ├── issue-401.eml ├── issue-410.eml ├── issue-410b.eml ├── issue-410symbols.eml ├── issue-412.eml ├── issue-413.eml ├── issue-414.eml ├── issue-462.eml ├── issue-511.eml ├── issue-544.eml ├── ks_c_5601-1987_headers.eml ├── mail_that_is_attachment.eml ├── missing_date.eml ├── missing_from.eml ├── mixed_filename.eml ├── multipart_without_body.eml ├── multiple_html_parts_and_attachments.eml ├── multiple_nested_attachments.eml ├── nestes_embedded_with_attachment.eml ├── null_content_charset.eml ├── pec.eml ├── plain.eml ├── plain_only.eml ├── plain_text_attachment.eml ├── references.eml ├── simple_multipart.eml ├── structured_with_attachment.eml ├── thread_my_topic.eml ├── thread_re_my_topic.eml ├── thread_unrelated.eml ├── undefined_charset_header.eml ├── undisclosed_recipients.eml ├── undisclosed_recipients_minus.eml ├── undisclosed_recipients_space.eml ├── unknown_encoding.eml ├── without_charset_plain_only.eml └── without_charset_simple_multipart.eml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-help-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/ISSUE_TEMPLATE/general-help-request.md -------------------------------------------------------------------------------- /.github/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/docker/Dockerfile -------------------------------------------------------------------------------- /.github/docker/dovecot_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/docker/dovecot_setup.sh -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/_config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/composer.json -------------------------------------------------------------------------------- /examples/custom_attachment_mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/examples/custom_attachment_mask.php -------------------------------------------------------------------------------- /examples/custom_message_mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/examples/custom_message_mask.php -------------------------------------------------------------------------------- /examples/folder_structure.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/examples/folder_structure.blade.php -------------------------------------------------------------------------------- /examples/message_table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/examples/message_table.blade.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Address.php -------------------------------------------------------------------------------- /src/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Attachment.php -------------------------------------------------------------------------------- /src/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Attribute.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/ClientManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/ClientManager.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Connection/Protocols/ImapProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Connection/Protocols/ImapProtocol.php -------------------------------------------------------------------------------- /src/Connection/Protocols/LegacyProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Connection/Protocols/LegacyProtocol.php -------------------------------------------------------------------------------- /src/Connection/Protocols/Protocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Connection/Protocols/Protocol.php -------------------------------------------------------------------------------- /src/Connection/Protocols/ProtocolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Connection/Protocols/ProtocolInterface.php -------------------------------------------------------------------------------- /src/Connection/Protocols/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Connection/Protocols/Response.php -------------------------------------------------------------------------------- /src/Decoder/AttachmentDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Decoder/AttachmentDecoder.php -------------------------------------------------------------------------------- /src/Decoder/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Decoder/Decoder.php -------------------------------------------------------------------------------- /src/Decoder/DecoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Decoder/DecoderInterface.php -------------------------------------------------------------------------------- /src/Decoder/HeaderDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Decoder/HeaderDecoder.php -------------------------------------------------------------------------------- /src/Decoder/MessageDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Decoder/MessageDecoder.php -------------------------------------------------------------------------------- /src/EncodingAliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/EncodingAliases.php -------------------------------------------------------------------------------- /src/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/Event.php -------------------------------------------------------------------------------- /src/Events/FlagDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/FlagDeletedEvent.php -------------------------------------------------------------------------------- /src/Events/FlagNewEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/FlagNewEvent.php -------------------------------------------------------------------------------- /src/Events/FolderDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/FolderDeletedEvent.php -------------------------------------------------------------------------------- /src/Events/FolderMovedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/FolderMovedEvent.php -------------------------------------------------------------------------------- /src/Events/FolderNewEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/FolderNewEvent.php -------------------------------------------------------------------------------- /src/Events/MessageCopiedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/MessageCopiedEvent.php -------------------------------------------------------------------------------- /src/Events/MessageDeletedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/MessageDeletedEvent.php -------------------------------------------------------------------------------- /src/Events/MessageMovedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/MessageMovedEvent.php -------------------------------------------------------------------------------- /src/Events/MessageNewEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/MessageNewEvent.php -------------------------------------------------------------------------------- /src/Events/MessageRestoredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Events/MessageRestoredEvent.php -------------------------------------------------------------------------------- /src/Exceptions/AuthFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/AuthFailedException.php -------------------------------------------------------------------------------- /src/Exceptions/ConnectionFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/ConnectionFailedException.php -------------------------------------------------------------------------------- /src/Exceptions/DecoderNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/DecoderNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/EventNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/EventNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/FolderFetchingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/FolderFetchingException.php -------------------------------------------------------------------------------- /src/Exceptions/GetMessagesFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/GetMessagesFailedException.php -------------------------------------------------------------------------------- /src/Exceptions/ImapBadRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/ImapBadRequestException.php -------------------------------------------------------------------------------- /src/Exceptions/ImapServerErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/ImapServerErrorException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidMessageDateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/InvalidMessageDateException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidWhereQueryCriteriaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/InvalidWhereQueryCriteriaException.php -------------------------------------------------------------------------------- /src/Exceptions/MaskNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MaskNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/MessageContentFetchingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MessageContentFetchingException.php -------------------------------------------------------------------------------- /src/Exceptions/MessageFlagException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MessageFlagException.php -------------------------------------------------------------------------------- /src/Exceptions/MessageHeaderFetchingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MessageHeaderFetchingException.php -------------------------------------------------------------------------------- /src/Exceptions/MessageNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MessageNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/MessageSearchValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MessageSearchValidationException.php -------------------------------------------------------------------------------- /src/Exceptions/MessageSizeFetchingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MessageSizeFetchingException.php -------------------------------------------------------------------------------- /src/Exceptions/MethodNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MethodNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/MethodNotSupportedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/MethodNotSupportedException.php -------------------------------------------------------------------------------- /src/Exceptions/NotSupportedCapabilityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/NotSupportedCapabilityException.php -------------------------------------------------------------------------------- /src/Exceptions/ProtocolNotSupportedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/ProtocolNotSupportedException.php -------------------------------------------------------------------------------- /src/Exceptions/ResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/ResponseException.php -------------------------------------------------------------------------------- /src/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/RuntimeException.php -------------------------------------------------------------------------------- /src/Exceptions/SpoofingAttemptDetectedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Exceptions/SpoofingAttemptDetectedException.php -------------------------------------------------------------------------------- /src/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Folder.php -------------------------------------------------------------------------------- /src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Header.php -------------------------------------------------------------------------------- /src/IMAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/IMAP.php -------------------------------------------------------------------------------- /src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Message.php -------------------------------------------------------------------------------- /src/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Part.php -------------------------------------------------------------------------------- /src/Query/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Query/Query.php -------------------------------------------------------------------------------- /src/Query/WhereQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Query/WhereQuery.php -------------------------------------------------------------------------------- /src/Structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Structure.php -------------------------------------------------------------------------------- /src/Support/AttachmentCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/AttachmentCollection.php -------------------------------------------------------------------------------- /src/Support/FlagCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/FlagCollection.php -------------------------------------------------------------------------------- /src/Support/FolderCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/FolderCollection.php -------------------------------------------------------------------------------- /src/Support/Masks/AttachmentMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/Masks/AttachmentMask.php -------------------------------------------------------------------------------- /src/Support/Masks/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/Masks/Mask.php -------------------------------------------------------------------------------- /src/Support/Masks/MessageMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/Masks/MessageMask.php -------------------------------------------------------------------------------- /src/Support/MessageCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/MessageCollection.php -------------------------------------------------------------------------------- /src/Support/PaginatedCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Support/PaginatedCollection.php -------------------------------------------------------------------------------- /src/Traits/HasEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/Traits/HasEvents.php -------------------------------------------------------------------------------- /src/config/imap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/src/config/imap.php -------------------------------------------------------------------------------- /tests/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/AddressTest.php -------------------------------------------------------------------------------- /tests/AttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/AttachmentTest.php -------------------------------------------------------------------------------- /tests/AttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/AttributeTest.php -------------------------------------------------------------------------------- /tests/ClientManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/ClientManagerTest.php -------------------------------------------------------------------------------- /tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/ClientTest.php -------------------------------------------------------------------------------- /tests/HeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/HeaderTest.php -------------------------------------------------------------------------------- /tests/ImapProtocolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/ImapProtocolTest.php -------------------------------------------------------------------------------- /tests/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/MessageTest.php -------------------------------------------------------------------------------- /tests/PartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/PartTest.php -------------------------------------------------------------------------------- /tests/StructureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/StructureTest.php -------------------------------------------------------------------------------- /tests/fixtures/AttachmentEncodedFilenameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/AttachmentEncodedFilenameTest.php -------------------------------------------------------------------------------- /tests/fixtures/AttachmentLongFilenameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/AttachmentLongFilenameTest.php -------------------------------------------------------------------------------- /tests/fixtures/AttachmentNoDispositionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/AttachmentNoDispositionTest.php -------------------------------------------------------------------------------- /tests/fixtures/BccTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/BccTest.php -------------------------------------------------------------------------------- /tests/fixtures/BooleanDecodedContentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/BooleanDecodedContentTest.php -------------------------------------------------------------------------------- /tests/fixtures/DateTemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/DateTemplateTest.php -------------------------------------------------------------------------------- /tests/fixtures/EmailAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/EmailAddressTest.php -------------------------------------------------------------------------------- /tests/fixtures/EmbeddedEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/EmbeddedEmailTest.php -------------------------------------------------------------------------------- /tests/fixtures/EmbeddedEmailWithoutContentDispositionEmbeddedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/EmbeddedEmailWithoutContentDispositionEmbeddedTest.php -------------------------------------------------------------------------------- /tests/fixtures/EmbeddedEmailWithoutContentDispositionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/EmbeddedEmailWithoutContentDispositionTest.php -------------------------------------------------------------------------------- /tests/fixtures/ExampleBounceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/ExampleBounceTest.php -------------------------------------------------------------------------------- /tests/fixtures/FixtureTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/FixtureTestCase.php -------------------------------------------------------------------------------- /tests/fixtures/FourNestedEmailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/FourNestedEmailsTest.php -------------------------------------------------------------------------------- /tests/fixtures/GbkCharsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/GbkCharsetTest.php -------------------------------------------------------------------------------- /tests/fixtures/HtmlOnlyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/HtmlOnlyTest.php -------------------------------------------------------------------------------- /tests/fixtures/ImapMimeHeaderDecodeReturnsFalseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/ImapMimeHeaderDecodeReturnsFalseTest.php -------------------------------------------------------------------------------- /tests/fixtures/InlineAttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/InlineAttachmentTest.php -------------------------------------------------------------------------------- /tests/fixtures/KsC56011987HeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/KsC56011987HeadersTest.php -------------------------------------------------------------------------------- /tests/fixtures/MailThatIsAttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MailThatIsAttachmentTest.php -------------------------------------------------------------------------------- /tests/fixtures/MissingDateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MissingDateTest.php -------------------------------------------------------------------------------- /tests/fixtures/MissingFromTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MissingFromTest.php -------------------------------------------------------------------------------- /tests/fixtures/MixedFilenameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MixedFilenameTest.php -------------------------------------------------------------------------------- /tests/fixtures/MultipartWithoutBodyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MultipartWithoutBodyTest.php -------------------------------------------------------------------------------- /tests/fixtures/MultipleHtmlPartsAndAttachmentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MultipleHtmlPartsAndAttachmentsTest.php -------------------------------------------------------------------------------- /tests/fixtures/MultipleNestedAttachmentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/MultipleNestedAttachmentsTest.php -------------------------------------------------------------------------------- /tests/fixtures/NestesEmbeddedWithAttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/NestesEmbeddedWithAttachmentTest.php -------------------------------------------------------------------------------- /tests/fixtures/NullContentCharsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/NullContentCharsetTest.php -------------------------------------------------------------------------------- /tests/fixtures/PecTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/PecTest.php -------------------------------------------------------------------------------- /tests/fixtures/PlainOnlyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/PlainOnlyTest.php -------------------------------------------------------------------------------- /tests/fixtures/PlainTextAttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/PlainTextAttachmentTest.php -------------------------------------------------------------------------------- /tests/fixtures/ReferencesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/ReferencesTest.php -------------------------------------------------------------------------------- /tests/fixtures/SimpleMultipartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/SimpleMultipartTest.php -------------------------------------------------------------------------------- /tests/fixtures/StructuredWithAttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/StructuredWithAttachmentTest.php -------------------------------------------------------------------------------- /tests/fixtures/UndefinedCharsetHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/UndefinedCharsetHeaderTest.php -------------------------------------------------------------------------------- /tests/fixtures/UndisclosedRecipientsMinusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/UndisclosedRecipientsMinusTest.php -------------------------------------------------------------------------------- /tests/fixtures/UndisclosedRecipientsSpaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/UndisclosedRecipientsSpaceTest.php -------------------------------------------------------------------------------- /tests/fixtures/UndisclosedRecipientsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/UndisclosedRecipientsTest.php -------------------------------------------------------------------------------- /tests/fixtures/UnknownEncodingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/UnknownEncodingTest.php -------------------------------------------------------------------------------- /tests/fixtures/WithoutCharsetPlainOnlyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/WithoutCharsetPlainOnlyTest.php -------------------------------------------------------------------------------- /tests/fixtures/WithoutCharsetSimpleMultipartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/fixtures/WithoutCharsetSimpleMultipartTest.php -------------------------------------------------------------------------------- /tests/issues/Issue275Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue275Test.php -------------------------------------------------------------------------------- /tests/issues/Issue355Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue355Test.php -------------------------------------------------------------------------------- /tests/issues/Issue379Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue379Test.php -------------------------------------------------------------------------------- /tests/issues/Issue382Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue382Test.php -------------------------------------------------------------------------------- /tests/issues/Issue383Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue383Test.php -------------------------------------------------------------------------------- /tests/issues/Issue393Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue393Test.php -------------------------------------------------------------------------------- /tests/issues/Issue401Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue401Test.php -------------------------------------------------------------------------------- /tests/issues/Issue407Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue407Test.php -------------------------------------------------------------------------------- /tests/issues/Issue40Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue40Test.php -------------------------------------------------------------------------------- /tests/issues/Issue410Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue410Test.php -------------------------------------------------------------------------------- /tests/issues/Issue412Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue412Test.php -------------------------------------------------------------------------------- /tests/issues/Issue413Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue413Test.php -------------------------------------------------------------------------------- /tests/issues/Issue414Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue414Test.php -------------------------------------------------------------------------------- /tests/issues/Issue420Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue420Test.php -------------------------------------------------------------------------------- /tests/issues/Issue462Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue462Test.php -------------------------------------------------------------------------------- /tests/issues/Issue469Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue469Test.php -------------------------------------------------------------------------------- /tests/issues/Issue511Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue511Test.php -------------------------------------------------------------------------------- /tests/issues/Issue544Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/issues/Issue544Test.php -------------------------------------------------------------------------------- /tests/live/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/live/ClientTest.php -------------------------------------------------------------------------------- /tests/live/FolderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/live/FolderTest.php -------------------------------------------------------------------------------- /tests/live/LegacyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/live/LegacyTest.php -------------------------------------------------------------------------------- /tests/live/LiveMailboxTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/live/LiveMailboxTestCase.php -------------------------------------------------------------------------------- /tests/live/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/live/MessageTest.php -------------------------------------------------------------------------------- /tests/live/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/live/QueryTest.php -------------------------------------------------------------------------------- /tests/messages/1366671050@github.com.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/1366671050@github.com.eml -------------------------------------------------------------------------------- /tests/messages/attachment_encoded_filename.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/attachment_encoded_filename.eml -------------------------------------------------------------------------------- /tests/messages/attachment_long_filename.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/attachment_long_filename.eml -------------------------------------------------------------------------------- /tests/messages/attachment_no_disposition.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/attachment_no_disposition.eml -------------------------------------------------------------------------------- /tests/messages/bcc.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/bcc.eml -------------------------------------------------------------------------------- /tests/messages/boolean_decoded_content.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/boolean_decoded_content.eml -------------------------------------------------------------------------------- /tests/messages/date-template.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/date-template.eml -------------------------------------------------------------------------------- /tests/messages/email_address.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/email_address.eml -------------------------------------------------------------------------------- /tests/messages/embedded_email.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/embedded_email.eml -------------------------------------------------------------------------------- /tests/messages/embedded_email_without_content_disposition-embedded.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/embedded_email_without_content_disposition-embedded.eml -------------------------------------------------------------------------------- /tests/messages/embedded_email_without_content_disposition.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/embedded_email_without_content_disposition.eml -------------------------------------------------------------------------------- /tests/messages/example_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/example_attachment.eml -------------------------------------------------------------------------------- /tests/messages/example_bounce.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/example_bounce.eml -------------------------------------------------------------------------------- /tests/messages/four_nested_emails.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/four_nested_emails.eml -------------------------------------------------------------------------------- /tests/messages/gbk_charset.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/gbk_charset.eml -------------------------------------------------------------------------------- /tests/messages/html_only.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/html_only.eml -------------------------------------------------------------------------------- /tests/messages/imap_mime_header_decode_returns_false.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/imap_mime_header_decode_returns_false.eml -------------------------------------------------------------------------------- /tests/messages/inline_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/inline_attachment.eml -------------------------------------------------------------------------------- /tests/messages/issue-275-2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-275-2.eml -------------------------------------------------------------------------------- /tests/messages/issue-275.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-275.eml -------------------------------------------------------------------------------- /tests/messages/issue-348.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-348.eml -------------------------------------------------------------------------------- /tests/messages/issue-382.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-382.eml -------------------------------------------------------------------------------- /tests/messages/issue-40.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-40.eml -------------------------------------------------------------------------------- /tests/messages/issue-401.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-401.eml -------------------------------------------------------------------------------- /tests/messages/issue-410.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-410.eml -------------------------------------------------------------------------------- /tests/messages/issue-410b.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-410b.eml -------------------------------------------------------------------------------- /tests/messages/issue-410symbols.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-410symbols.eml -------------------------------------------------------------------------------- /tests/messages/issue-412.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-412.eml -------------------------------------------------------------------------------- /tests/messages/issue-413.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-413.eml -------------------------------------------------------------------------------- /tests/messages/issue-414.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-414.eml -------------------------------------------------------------------------------- /tests/messages/issue-462.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-462.eml -------------------------------------------------------------------------------- /tests/messages/issue-511.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-511.eml -------------------------------------------------------------------------------- /tests/messages/issue-544.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/issue-544.eml -------------------------------------------------------------------------------- /tests/messages/ks_c_5601-1987_headers.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/ks_c_5601-1987_headers.eml -------------------------------------------------------------------------------- /tests/messages/mail_that_is_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/mail_that_is_attachment.eml -------------------------------------------------------------------------------- /tests/messages/missing_date.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/missing_date.eml -------------------------------------------------------------------------------- /tests/messages/missing_from.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/missing_from.eml -------------------------------------------------------------------------------- /tests/messages/mixed_filename.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/mixed_filename.eml -------------------------------------------------------------------------------- /tests/messages/multipart_without_body.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/multipart_without_body.eml -------------------------------------------------------------------------------- /tests/messages/multiple_html_parts_and_attachments.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/multiple_html_parts_and_attachments.eml -------------------------------------------------------------------------------- /tests/messages/multiple_nested_attachments.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/multiple_nested_attachments.eml -------------------------------------------------------------------------------- /tests/messages/nestes_embedded_with_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/nestes_embedded_with_attachment.eml -------------------------------------------------------------------------------- /tests/messages/null_content_charset.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/null_content_charset.eml -------------------------------------------------------------------------------- /tests/messages/pec.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/pec.eml -------------------------------------------------------------------------------- /tests/messages/plain.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/plain.eml -------------------------------------------------------------------------------- /tests/messages/plain_only.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/plain_only.eml -------------------------------------------------------------------------------- /tests/messages/plain_text_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/plain_text_attachment.eml -------------------------------------------------------------------------------- /tests/messages/references.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/references.eml -------------------------------------------------------------------------------- /tests/messages/simple_multipart.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/simple_multipart.eml -------------------------------------------------------------------------------- /tests/messages/structured_with_attachment.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/structured_with_attachment.eml -------------------------------------------------------------------------------- /tests/messages/thread_my_topic.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/thread_my_topic.eml -------------------------------------------------------------------------------- /tests/messages/thread_re_my_topic.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/thread_re_my_topic.eml -------------------------------------------------------------------------------- /tests/messages/thread_unrelated.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/thread_unrelated.eml -------------------------------------------------------------------------------- /tests/messages/undefined_charset_header.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/undefined_charset_header.eml -------------------------------------------------------------------------------- /tests/messages/undisclosed_recipients.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/undisclosed_recipients.eml -------------------------------------------------------------------------------- /tests/messages/undisclosed_recipients_minus.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/undisclosed_recipients_minus.eml -------------------------------------------------------------------------------- /tests/messages/undisclosed_recipients_space.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/undisclosed_recipients_space.eml -------------------------------------------------------------------------------- /tests/messages/unknown_encoding.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/unknown_encoding.eml -------------------------------------------------------------------------------- /tests/messages/without_charset_plain_only.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/without_charset_plain_only.eml -------------------------------------------------------------------------------- /tests/messages/without_charset_simple_multipart.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Webklex/php-imap/HEAD/tests/messages/without_charset_simple_multipart.eml --------------------------------------------------------------------------------