├── .albatros ├── .gitattributes ├── .gitignore ├── Cargo.lock ├── Cargo.nix ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── aero-bayou ├── Cargo.toml └── src │ ├── lib.rs │ └── timestamp.rs ├── aero-collections ├── Cargo.toml └── src │ ├── calendar │ ├── mod.rs │ └── namespace.rs │ ├── davdag.rs │ ├── lib.rs │ ├── mail │ ├── incoming.rs │ ├── mailbox.rs │ ├── mod.rs │ ├── namespace.rs │ ├── query.rs │ ├── snapshot.rs │ └── uidindex.rs │ ├── unique_ident.rs │ └── user.rs ├── aero-dav ├── .gitignore ├── Cargo.toml ├── fuzz │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── dav.dict │ └── fuzz_targets │ │ └── dav.rs └── src │ ├── acldecoder.rs │ ├── aclencoder.rs │ ├── acltypes.rs │ ├── caldecoder.rs │ ├── calencoder.rs │ ├── caltypes.rs │ ├── decoder.rs │ ├── encoder.rs │ ├── error.rs │ ├── lib.rs │ ├── realization.rs │ ├── syncdecoder.rs │ ├── syncencoder.rs │ ├── synctypes.rs │ ├── types.rs │ ├── versioningdecoder.rs │ ├── versioningencoder.rs │ ├── versioningtypes.rs │ └── xml.rs ├── aero-ical ├── Cargo.toml └── src │ ├── lib.rs │ ├── parser.rs │ ├── prune.rs │ └── query.rs ├── aero-proto ├── Cargo.toml └── src │ ├── dav │ ├── codec.rs │ ├── controller.rs │ ├── middleware.rs │ ├── mod.rs │ ├── node.rs │ └── resource.rs │ ├── imap │ ├── attributes.rs │ ├── capability.rs │ ├── command │ │ ├── anonymous.rs │ │ ├── anystate.rs │ │ ├── authenticated.rs │ │ ├── mod.rs │ │ └── selected.rs │ ├── flags.rs │ ├── flow.rs │ ├── imf_view.rs │ ├── index.rs │ ├── mail_view.rs │ ├── mailbox_view.rs │ ├── mime_view.rs │ ├── mod.rs │ ├── request.rs │ ├── response.rs │ ├── search.rs │ └── session.rs │ ├── lib.rs │ ├── lmtp.rs │ └── sasl.rs ├── aero-sasl ├── Cargo.toml └── src │ ├── decode.rs │ ├── encode.rs │ ├── flow.rs │ ├── lib.rs │ └── types.rs ├── aero-user ├── Cargo.toml └── src │ ├── config.rs │ ├── cryptoblob.rs │ ├── lib.rs │ ├── login │ ├── demo_provider.rs │ ├── ldap_provider.rs │ ├── mod.rs │ └── static_provider.rs │ └── storage │ ├── garage.rs │ ├── in_memory.rs │ └── mod.rs ├── aerogramme ├── Cargo.toml ├── src │ ├── main.rs │ └── server.rs └── tests │ ├── behavior.rs │ └── common │ ├── constants.rs │ ├── fragments.rs │ └── mod.rs ├── flake.lock ├── flake.nix ├── rust-toolchain.toml └── tests ├── emails ├── .gitattributes ├── .gitignore ├── COPYING ├── aero100.mbox.zstd ├── dxflrs │ ├── 0001_simple.cyrus.body │ ├── 0001_simple.cyrus.bodystructure │ ├── 0001_simple.dovecot.body │ ├── 0001_simple.dovecot.bodystructure │ ├── 0001_simple.eml │ ├── 0001_simple.maddy.body │ ├── 0001_simple.maddy.bodystructure │ ├── 0001_simple.stalwart.0.2.0.body │ ├── 0001_simple.stalwart.0.2.0.bodystructure │ ├── 0002_mime.cyrus.body │ ├── 0002_mime.cyrus.bodystructure │ ├── 0002_mime.dovecot.body │ ├── 0002_mime.dovecot.bodystructure │ ├── 0002_mime.eml │ ├── 0002_mime.maddy.body │ ├── 0002_mime.maddy.bodystructure │ ├── 0002_mime.stalwart.0.2.0.body │ ├── 0002_mime.stalwart.0.2.0.bodystructure │ ├── 0003_mime-in-mime.cyrus.body │ ├── 0003_mime-in-mime.cyrus.bodystructure │ ├── 0003_mime-in-mime.dovecot.body │ ├── 0003_mime-in-mime.dovecot.bodystructure │ ├── 0003_mime-in-mime.eml │ ├── 0003_mime-in-mime.maddy.body │ ├── 0003_mime-in-mime.maddy.bodystructure │ ├── 0003_mime-in-mime.stalwart.0.2.0.body │ ├── 0003_mime-in-mime.stalwart.0.2.0.bodystructure │ ├── 0004_msg-in-msg.cyrus.body │ ├── 0004_msg-in-msg.cyrus.bodystructure │ ├── 0004_msg-in-msg.dovecot.body │ ├── 0004_msg-in-msg.dovecot.bodystructure │ ├── 0004_msg-in-msg.eml │ ├── 0004_msg-in-msg.maddy.body │ ├── 0004_msg-in-msg.maddy.bodystructure │ ├── 0004_msg-in-msg.stalwart.0.2.0.body │ ├── 0004_msg-in-msg.stalwart.0.2.0.bodystructure │ ├── 0005_mail-parser-readme.cyrus.body │ ├── 0005_mail-parser-readme.cyrus.bodystructure │ ├── 0005_mail-parser-readme.dovecot.body │ ├── 0005_mail-parser-readme.dovecot.bodystructure │ ├── 0005_mail-parser-readme.eml │ ├── 0005_mail-parser-readme.maddy.body │ ├── 0005_mail-parser-readme.maddy.bodystructure │ ├── 0005_mail-parser-readme.stalwart.0.2.0.body │ ├── 0005_mail-parser-readme.stalwart.0.2.0.bodystructure │ ├── 0006_single-mime.cyrus.body │ ├── 0006_single-mime.cyrus.bodystructure │ ├── 0006_single-mime.dovecot.body │ ├── 0006_single-mime.dovecot.bodystructure │ ├── 0006_single-mime.eml │ ├── 0006_single-mime.maddy.body │ ├── 0006_single-mime.maddy.bodystructure │ ├── 0006_single-mime.stalwart.0.2.0.body │ ├── 0006_single-mime.stalwart.0.2.0.bodystructure │ ├── 0007_raw_msg_in_rfc822.cyrus.body │ ├── 0007_raw_msg_in_rfc822.cyrus.bodystructure │ ├── 0007_raw_msg_in_rfc822.dovecot.body │ ├── 0007_raw_msg_in_rfc822.dovecot.bodystructure │ ├── 0007_raw_msg_in_rfc822.eml │ ├── 0007_raw_msg_in_rfc822.maddy.body │ ├── 0007_raw_msg_in_rfc822.maddy.bodystructure │ ├── 0007_raw_msg_in_rfc822.stalwart.0.2.0.body │ └── 0007_raw_msg_in_rfc822.stalwart.0.2.0.bodystructure ├── imap_commands_dataset.log ├── imap_commands_summary.csv ├── legacy │ ├── 000.cyrus.body │ ├── 000.cyrus.bodystructure │ ├── 000.dovecot.body │ ├── 000.dovecot.bodystructure │ ├── 000.eml │ ├── 000.maddy.body │ ├── 000.maddy.bodystructure │ ├── 000.stalwart.0.2.0.body │ ├── 000.stalwart.0.2.0.bodystructure │ ├── 001.cyrus.body │ ├── 001.cyrus.bodystructure │ ├── 001.dovecot.body │ ├── 001.dovecot.bodystructure │ ├── 001.eml │ ├── 001.maddy.body │ ├── 001.maddy.bodystructure │ ├── 001.stalwart.0.2.0.body │ ├── 001.stalwart.0.2.0.bodystructure │ ├── 002.cyrus.body │ ├── 002.cyrus.bodystructure │ ├── 002.dovecot.body │ ├── 002.dovecot.bodystructure │ ├── 002.eml │ ├── 002.maddy.body │ ├── 002.maddy.bodystructure │ ├── 002.stalwart.0.2.0.body │ ├── 002.stalwart.0.2.0.bodystructure │ ├── 003.cyrus.body │ ├── 003.cyrus.bodystructure │ ├── 003.dovecot.body │ ├── 003.dovecot.bodystructure │ ├── 003.eml │ ├── 003.maddy.body │ ├── 003.maddy.bodystructure │ ├── 003.stalwart.0.2.0.body │ ├── 003.stalwart.0.2.0.bodystructure │ ├── 004.cyrus.body │ ├── 004.cyrus.bodystructure │ ├── 004.dovecot.body │ ├── 004.dovecot.bodystructure │ ├── 004.eml │ ├── 004.maddy.body │ ├── 004.maddy.bodystructure │ ├── 004.stalwart.0.2.0.body │ ├── 004.stalwart.0.2.0.bodystructure │ ├── 005.cyrus.body │ ├── 005.cyrus.bodystructure │ ├── 005.dovecot.body │ ├── 005.dovecot.bodystructure │ ├── 005.eml │ ├── 005.maddy.body │ ├── 005.maddy.bodystructure │ ├── 005.stalwart.0.2.0.body │ ├── 005.stalwart.0.2.0.bodystructure │ ├── 006.cyrus.body │ ├── 006.cyrus.bodystructure │ ├── 006.dovecot.body │ ├── 006.dovecot.bodystructure │ ├── 006.eml │ ├── 006.maddy.body │ ├── 006.maddy.bodystructure │ ├── 006.stalwart.0.2.0.body │ ├── 006.stalwart.0.2.0.bodystructure │ ├── 007.cyrus.body │ ├── 007.cyrus.bodystructure │ ├── 007.dovecot.body │ ├── 007.dovecot.bodystructure │ ├── 007.eml │ ├── 007.maddy.body │ ├── 007.maddy.bodystructure │ ├── 007.stalwart.0.2.0.body │ ├── 007.stalwart.0.2.0.bodystructure │ ├── 008.cyrus.body │ ├── 008.cyrus.bodystructure │ ├── 008.dovecot.body │ ├── 008.dovecot.bodystructure │ ├── 008.eml │ ├── 008.maddy.body │ ├── 008.maddy.bodystructure │ ├── 008.stalwart.0.2.0.body │ ├── 008.stalwart.0.2.0.bodystructure │ ├── 009.cyrus.body │ ├── 009.cyrus.bodystructure │ ├── 009.dovecot.body │ ├── 009.dovecot.bodystructure │ ├── 009.eml │ ├── 009.maddy.body │ ├── 009.maddy.bodystructure │ ├── 009.stalwart.0.2.0.body │ ├── 009.stalwart.0.2.0.bodystructure │ ├── 010.cyrus.body │ ├── 010.cyrus.bodystructure │ ├── 010.dovecot.body │ ├── 010.dovecot.bodystructure │ ├── 010.eml │ ├── 010.maddy.body │ ├── 010.maddy.bodystructure │ ├── 010.stalwart.0.2.0.body │ ├── 010.stalwart.0.2.0.bodystructure │ ├── 011.cyrus.body │ ├── 011.cyrus.bodystructure │ ├── 011.dovecot.body │ ├── 011.dovecot.bodystructure │ ├── 011.eml │ ├── 011.maddy.body │ ├── 011.maddy.bodystructure │ ├── 011.stalwart.0.2.0.body │ ├── 011.stalwart.0.2.0.bodystructure │ ├── 012.cyrus.body │ ├── 012.cyrus.bodystructure │ ├── 012.dovecot.body │ ├── 012.dovecot.bodystructure │ ├── 012.eml │ ├── 012.maddy.body │ ├── 012.maddy.bodystructure │ ├── 012.stalwart.0.2.0.body │ ├── 012.stalwart.0.2.0.bodystructure │ ├── 013.cyrus.body │ ├── 013.cyrus.bodystructure │ ├── 013.dovecot.body │ ├── 013.dovecot.bodystructure │ ├── 013.eml │ ├── 013.maddy.body │ ├── 013.maddy.bodystructure │ ├── 013.stalwart.0.2.0.body │ ├── 013.stalwart.0.2.0.bodystructure │ ├── 014.cyrus.body │ ├── 014.cyrus.bodystructure │ ├── 014.dovecot.body │ ├── 014.dovecot.bodystructure │ ├── 014.eml │ ├── 014.maddy.body │ ├── 014.maddy.bodystructure │ ├── 014.stalwart.0.2.0.body │ ├── 014.stalwart.0.2.0.bodystructure │ ├── 015.cyrus.body │ ├── 015.cyrus.bodystructure │ ├── 015.dovecot.body │ ├── 015.dovecot.bodystructure │ ├── 015.eml │ ├── 015.maddy.body │ ├── 015.maddy.bodystructure │ ├── 015.stalwart.0.2.0.body │ ├── 015.stalwart.0.2.0.bodystructure │ ├── 016.cyrus.body │ ├── 016.cyrus.bodystructure │ ├── 016.dovecot.body │ ├── 016.dovecot.bodystructure │ ├── 016.eml │ ├── 016.maddy.body │ ├── 016.maddy.bodystructure │ ├── 016.stalwart.0.2.0.body │ ├── 016.stalwart.0.2.0.bodystructure │ ├── 017.cyrus.body │ ├── 017.cyrus.bodystructure │ ├── 017.dovecot.body │ ├── 017.dovecot.bodystructure │ ├── 017.eml │ ├── 017.maddy.body │ ├── 017.maddy.bodystructure │ ├── 017.stalwart.0.2.0.body │ ├── 017.stalwart.0.2.0.bodystructure │ ├── 018.cyrus.body │ ├── 018.cyrus.bodystructure │ ├── 018.dovecot.body │ ├── 018.dovecot.bodystructure │ ├── 018.eml │ ├── 018.maddy.body │ ├── 018.maddy.bodystructure │ ├── 018.stalwart.0.2.0.body │ ├── 018.stalwart.0.2.0.bodystructure │ ├── 019.cyrus.body │ ├── 019.cyrus.bodystructure │ ├── 019.dovecot.body │ ├── 019.dovecot.bodystructure │ ├── 019.eml │ ├── 019.maddy.body │ ├── 019.maddy.bodystructure │ ├── 019.stalwart.0.2.0.body │ ├── 019.stalwart.0.2.0.bodystructure │ ├── 020.cyrus.body │ ├── 020.cyrus.bodystructure │ ├── 020.dovecot.body │ ├── 020.dovecot.bodystructure │ ├── 020.eml │ ├── 020.maddy.body │ ├── 020.maddy.bodystructure │ ├── 020.stalwart.0.2.0.body │ ├── 020.stalwart.0.2.0.bodystructure │ ├── 021.cyrus.body │ ├── 021.cyrus.bodystructure │ ├── 021.dovecot.body │ ├── 021.dovecot.bodystructure │ ├── 021.eml │ ├── 021.maddy.body │ ├── 021.maddy.bodystructure │ ├── 021.stalwart.0.2.0.body │ ├── 021.stalwart.0.2.0.bodystructure │ ├── 022.cyrus.body │ ├── 022.cyrus.bodystructure │ ├── 022.dovecot.body │ ├── 022.dovecot.bodystructure │ ├── 022.eml │ ├── 022.maddy.body │ ├── 022.maddy.bodystructure │ ├── 022.stalwart.0.2.0.body │ ├── 022.stalwart.0.2.0.bodystructure │ ├── 023.cyrus.body │ ├── 023.cyrus.bodystructure │ ├── 023.dovecot.body │ ├── 023.dovecot.bodystructure │ ├── 023.eml │ ├── 023.maddy.body │ ├── 023.maddy.bodystructure │ ├── 023.stalwart.0.2.0.body │ ├── 023.stalwart.0.2.0.bodystructure │ ├── 024.cyrus.body │ ├── 024.cyrus.bodystructure │ ├── 024.dovecot.body │ ├── 024.dovecot.bodystructure │ ├── 024.eml │ ├── 024.maddy.body │ ├── 024.maddy.bodystructure │ ├── 024.stalwart.0.2.0.body │ ├── 024.stalwart.0.2.0.bodystructure │ ├── 025.cyrus.body │ ├── 025.cyrus.bodystructure │ ├── 025.dovecot.body │ ├── 025.dovecot.bodystructure │ ├── 025.eml │ ├── 025.maddy.body │ ├── 025.maddy.bodystructure │ ├── 025.stalwart.0.2.0.body │ ├── 025.stalwart.0.2.0.bodystructure │ ├── 026.cyrus.body │ ├── 026.cyrus.bodystructure │ ├── 026.dovecot.body │ ├── 026.dovecot.bodystructure │ ├── 026.eml │ ├── 026.maddy.body │ ├── 026.maddy.bodystructure │ ├── 026.stalwart.0.2.0.body │ ├── 026.stalwart.0.2.0.bodystructure │ ├── 027.cyrus.body │ ├── 027.cyrus.bodystructure │ ├── 027.dovecot.body │ ├── 027.dovecot.bodystructure │ ├── 027.eml │ ├── 027.maddy.body │ ├── 027.maddy.bodystructure │ ├── 027.stalwart.0.2.0.body │ ├── 027.stalwart.0.2.0.bodystructure │ ├── 028.cyrus.body │ ├── 028.cyrus.bodystructure │ ├── 028.dovecot.body │ ├── 028.dovecot.bodystructure │ ├── 028.eml │ ├── 028.maddy.body │ ├── 028.maddy.bodystructure │ ├── 028.stalwart.0.2.0.body │ ├── 028.stalwart.0.2.0.bodystructure │ ├── 029.cyrus.body │ ├── 029.cyrus.bodystructure │ ├── 029.dovecot.body │ ├── 029.dovecot.bodystructure │ ├── 029.eml │ ├── 029.maddy.body │ ├── 029.maddy.bodystructure │ ├── 029.stalwart.0.2.0.body │ ├── 029.stalwart.0.2.0.bodystructure │ ├── 030.cyrus.body │ ├── 030.cyrus.bodystructure │ ├── 030.dovecot.body │ ├── 030.dovecot.bodystructure │ ├── 030.eml │ ├── 030.maddy.body │ ├── 030.maddy.bodystructure │ ├── 030.stalwart.0.2.0.body │ ├── 030.stalwart.0.2.0.bodystructure │ ├── 031.cyrus.body │ ├── 031.cyrus.bodystructure │ ├── 031.dovecot.body │ ├── 031.dovecot.bodystructure │ ├── 031.eml │ ├── 031.maddy.body │ ├── 031.maddy.bodystructure │ ├── 031.stalwart.0.2.0.body │ ├── 031.stalwart.0.2.0.bodystructure │ ├── 032.cyrus.body │ ├── 032.cyrus.bodystructure │ ├── 032.dovecot.body │ ├── 032.dovecot.bodystructure │ ├── 032.eml │ ├── 032.maddy.body │ ├── 032.maddy.bodystructure │ ├── 032.stalwart.0.2.0.body │ ├── 032.stalwart.0.2.0.bodystructure │ ├── 033.cyrus.body │ ├── 033.cyrus.bodystructure │ ├── 033.dovecot.body │ ├── 033.dovecot.bodystructure │ ├── 033.eml │ ├── 033.maddy.body │ ├── 033.maddy.bodystructure │ ├── 033.stalwart.0.2.0.body │ ├── 033.stalwart.0.2.0.bodystructure │ ├── 034.cyrus.body │ ├── 034.cyrus.bodystructure │ ├── 034.dovecot.body │ ├── 034.dovecot.bodystructure │ ├── 034.eml │ ├── 034.maddy.body │ ├── 034.maddy.bodystructure │ ├── 034.stalwart.0.2.0.body │ ├── 034.stalwart.0.2.0.bodystructure │ ├── 035.cyrus.body │ ├── 035.cyrus.bodystructure │ ├── 035.dovecot.body │ ├── 035.dovecot.bodystructure │ ├── 035.eml │ ├── 035.maddy.body │ ├── 035.maddy.bodystructure │ ├── 035.stalwart.0.2.0.body │ ├── 035.stalwart.0.2.0.bodystructure │ ├── 036.cyrus.body │ ├── 036.cyrus.bodystructure │ ├── 036.dovecot.body │ ├── 036.dovecot.bodystructure │ ├── 036.eml │ ├── 036.maddy.body │ ├── 036.maddy.bodystructure │ ├── 036.stalwart.0.2.0.body │ ├── 036.stalwart.0.2.0.bodystructure │ ├── 037.cyrus.body │ ├── 037.cyrus.bodystructure │ ├── 037.dovecot.body │ ├── 037.dovecot.bodystructure │ ├── 037.eml │ ├── 037.maddy.body │ ├── 037.maddy.bodystructure │ ├── 037.stalwart.0.2.0.body │ ├── 037.stalwart.0.2.0.bodystructure │ ├── 038.cyrus.body │ ├── 038.cyrus.bodystructure │ ├── 038.dovecot.body │ ├── 038.dovecot.bodystructure │ ├── 038.eml │ ├── 038.maddy.body │ ├── 038.maddy.bodystructure │ ├── 038.stalwart.0.2.0.body │ ├── 038.stalwart.0.2.0.bodystructure │ ├── 039.cyrus.body │ ├── 039.cyrus.bodystructure │ ├── 039.dovecot.body │ ├── 039.dovecot.bodystructure │ ├── 039.eml │ ├── 039.maddy.body │ ├── 039.maddy.bodystructure │ ├── 039.stalwart.0.2.0.body │ ├── 039.stalwart.0.2.0.bodystructure │ ├── 040.cyrus.body │ ├── 040.cyrus.bodystructure │ ├── 040.dovecot.body │ ├── 040.dovecot.bodystructure │ ├── 040.eml │ ├── 040.maddy.body │ ├── 040.maddy.bodystructure │ ├── 040.stalwart.0.2.0.body │ ├── 040.stalwart.0.2.0.bodystructure │ ├── 041.cyrus.body │ ├── 041.cyrus.bodystructure │ ├── 041.dovecot.body │ ├── 041.dovecot.bodystructure │ ├── 041.eml │ ├── 041.maddy.body │ ├── 041.maddy.bodystructure │ ├── 041.stalwart.0.2.0.body │ ├── 041.stalwart.0.2.0.bodystructure │ ├── 042.cyrus.body │ ├── 042.cyrus.bodystructure │ ├── 042.dovecot.body │ ├── 042.dovecot.bodystructure │ ├── 042.eml │ ├── 042.maddy.body │ ├── 042.maddy.bodystructure │ ├── 042.stalwart.0.2.0.body │ ├── 042.stalwart.0.2.0.bodystructure │ ├── 043.cyrus.body │ ├── 043.cyrus.bodystructure │ ├── 043.dovecot.body │ ├── 043.dovecot.bodystructure │ ├── 043.eml │ ├── 043.maddy.body │ ├── 043.maddy.bodystructure │ ├── 043.stalwart.0.2.0.body │ ├── 043.stalwart.0.2.0.bodystructure │ ├── 044.cyrus.body │ ├── 044.cyrus.bodystructure │ ├── 044.dovecot.body │ ├── 044.dovecot.bodystructure │ ├── 044.eml │ ├── 044.maddy.body │ ├── 044.maddy.bodystructure │ ├── 044.stalwart.0.2.0.body │ ├── 044.stalwart.0.2.0.bodystructure │ ├── 045.cyrus.body │ ├── 045.cyrus.bodystructure │ ├── 045.dovecot.body │ ├── 045.dovecot.bodystructure │ ├── 045.eml │ ├── 045.maddy.body │ ├── 045.maddy.bodystructure │ ├── 045.stalwart.0.2.0.body │ ├── 045.stalwart.0.2.0.bodystructure │ ├── 046.cyrus.body │ ├── 046.cyrus.bodystructure │ ├── 046.dovecot.body │ ├── 046.dovecot.bodystructure │ ├── 046.eml │ ├── 046.maddy.body │ ├── 046.maddy.bodystructure │ ├── 046.stalwart.0.2.0.body │ ├── 046.stalwart.0.2.0.bodystructure │ ├── 047.cyrus.body │ ├── 047.cyrus.bodystructure │ ├── 047.dovecot.body │ ├── 047.dovecot.bodystructure │ ├── 047.eml │ ├── 047.maddy.body │ ├── 047.maddy.bodystructure │ ├── 047.stalwart.0.2.0.body │ ├── 047.stalwart.0.2.0.bodystructure │ ├── 048.cyrus.body │ ├── 048.cyrus.bodystructure │ ├── 048.dovecot.body │ ├── 048.dovecot.bodystructure │ ├── 048.eml │ ├── 048.maddy.body │ ├── 048.maddy.bodystructure │ ├── 048.stalwart.0.2.0.body │ ├── 048.stalwart.0.2.0.bodystructure │ ├── 049.cyrus.body │ ├── 049.cyrus.bodystructure │ ├── 049.dovecot.body │ ├── 049.dovecot.bodystructure │ ├── 049.eml │ ├── 049.maddy.body │ ├── 049.maddy.bodystructure │ ├── 049.stalwart.0.2.0.body │ ├── 049.stalwart.0.2.0.bodystructure │ ├── 050.cyrus.body │ ├── 050.cyrus.bodystructure │ ├── 050.dovecot.body │ ├── 050.dovecot.bodystructure │ ├── 050.eml │ ├── 050.maddy.body │ ├── 050.maddy.bodystructure │ ├── 050.stalwart.0.2.0.body │ ├── 050.stalwart.0.2.0.bodystructure │ ├── 051.cyrus.body │ ├── 051.cyrus.bodystructure │ ├── 051.dovecot.body │ ├── 051.dovecot.bodystructure │ ├── 051.eml │ ├── 051.maddy.body │ ├── 051.maddy.bodystructure │ ├── 051.stalwart.0.2.0.body │ ├── 051.stalwart.0.2.0.bodystructure │ ├── 052.cyrus.body │ ├── 052.cyrus.bodystructure │ ├── 052.dovecot.body │ ├── 052.dovecot.bodystructure │ ├── 052.eml │ ├── 052.maddy.body │ ├── 052.maddy.bodystructure │ ├── 052.stalwart.0.2.0.body │ ├── 052.stalwart.0.2.0.bodystructure │ ├── 053.cyrus.body │ ├── 053.cyrus.bodystructure │ ├── 053.dovecot.body │ ├── 053.dovecot.bodystructure │ ├── 053.eml │ ├── 053.maddy.body │ ├── 053.maddy.bodystructure │ ├── 053.stalwart.0.2.0.body │ ├── 053.stalwart.0.2.0.bodystructure │ └── COPYING ├── mailbox_email_sizes.csv ├── malformed │ ├── 000.eml │ ├── 000.stalwart.0.2.0.body │ ├── 000.stalwart.0.2.0.bodystructure │ ├── 001.eml │ ├── 001.stalwart.0.2.0.body │ ├── 001.stalwart.0.2.0.bodystructure │ ├── 002.eml │ ├── 002.stalwart.0.2.0.body │ ├── 002.stalwart.0.2.0.bodystructure │ ├── 003.eml │ ├── 003.stalwart.0.2.0.body │ ├── 003.stalwart.0.2.0.bodystructure │ ├── 004.eml │ ├── 004.stalwart.0.2.0.body │ ├── 004.stalwart.0.2.0.bodystructure │ ├── 005.eml │ ├── 005.stalwart.0.2.0.body │ ├── 005.stalwart.0.2.0.bodystructure │ ├── 006.eml │ ├── 006.stalwart.0.2.0.body │ ├── 006.stalwart.0.2.0.bodystructure │ ├── 007.eml │ ├── 007.stalwart.0.2.0.body │ ├── 007.stalwart.0.2.0.bodystructure │ ├── 008.eml │ ├── 008.stalwart.0.2.0.body │ ├── 008.stalwart.0.2.0.bodystructure │ ├── 009.eml │ ├── 009.stalwart.0.2.0.body │ ├── 010.eml │ ├── 010.stalwart.0.2.0.body │ ├── 010.stalwart.0.2.0.bodystructure │ ├── 011.eml │ ├── 011.stalwart.0.2.0.body │ ├── 011.stalwart.0.2.0.bodystructure │ ├── 012.eml │ ├── 012.stalwart.0.2.0.body │ ├── 012.stalwart.0.2.0.bodystructure │ ├── 013.eml │ ├── 013.stalwart.0.2.0.body │ ├── 013.stalwart.0.2.0.bodystructure │ ├── 014.eml │ ├── 014.stalwart.0.2.0.body │ ├── 014.stalwart.0.2.0.bodystructure │ ├── 015.eml │ ├── 015.stalwart.0.2.0.body │ ├── 015.stalwart.0.2.0.bodystructure │ ├── 016.eml │ ├── 016.stalwart.0.2.0.body │ ├── 016.stalwart.0.2.0.bodystructure │ └── COPYING ├── report.R ├── rfc │ ├── 000.cyrus.body │ ├── 000.cyrus.bodystructure │ ├── 000.dovecot.body │ ├── 000.dovecot.bodystructure │ ├── 000.eml │ ├── 000.maddy.body │ ├── 000.maddy.bodystructure │ ├── 000.stalwart.0.2.0.body │ ├── 000.stalwart.0.2.0.bodystructure │ ├── 001.cyrus.body │ ├── 001.cyrus.bodystructure │ ├── 001.dovecot.body │ ├── 001.dovecot.bodystructure │ ├── 001.eml │ ├── 001.maddy.body │ ├── 001.maddy.bodystructure │ ├── 001.stalwart.0.2.0.body │ ├── 001.stalwart.0.2.0.bodystructure │ ├── 002.cyrus.body │ ├── 002.cyrus.bodystructure │ ├── 002.dovecot.body │ ├── 002.dovecot.bodystructure │ ├── 002.eml │ ├── 002.maddy.body │ ├── 002.maddy.bodystructure │ ├── 002.stalwart.0.2.0.body │ ├── 002.stalwart.0.2.0.bodystructure │ ├── 003.cyrus.body │ ├── 003.cyrus.bodystructure │ ├── 003.dovecot.body │ ├── 003.dovecot.bodystructure │ ├── 003.eml │ ├── 003.maddy.body │ ├── 003.maddy.bodystructure │ ├── 003.stalwart.0.2.0.body │ ├── 003.stalwart.0.2.0.bodystructure │ ├── 004.cyrus.body │ ├── 004.cyrus.bodystructure │ ├── 004.dovecot.body │ ├── 004.dovecot.bodystructure │ ├── 004.eml │ ├── 004.maddy.body │ ├── 004.maddy.bodystructure │ ├── 004.stalwart.0.2.0.body │ ├── 004.stalwart.0.2.0.bodystructure │ ├── 005.cyrus.body │ ├── 005.cyrus.bodystructure │ ├── 005.dovecot.body │ ├── 005.dovecot.bodystructure │ ├── 005.eml │ ├── 005.maddy.body │ ├── 005.maddy.bodystructure │ ├── 005.stalwart.0.2.0.body │ ├── 005.stalwart.0.2.0.bodystructure │ ├── 006.cyrus.body │ ├── 006.cyrus.bodystructure │ ├── 006.dovecot.body │ ├── 006.dovecot.bodystructure │ ├── 006.eml │ ├── 006.maddy.body │ ├── 006.maddy.bodystructure │ ├── 006.stalwart.0.2.0.body │ ├── 006.stalwart.0.2.0.bodystructure │ ├── 007.cyrus.body │ ├── 007.cyrus.bodystructure │ ├── 007.dovecot.body │ ├── 007.dovecot.bodystructure │ ├── 007.eml │ ├── 007.maddy.body │ ├── 007.maddy.bodystructure │ ├── 007.stalwart.0.2.0.body │ ├── 007.stalwart.0.2.0.bodystructure │ ├── 008.cyrus.body │ ├── 008.cyrus.bodystructure │ ├── 008.dovecot.body │ ├── 008.dovecot.bodystructure │ ├── 008.eml │ ├── 008.stalwart.0.2.0.body │ └── 008.stalwart.0.2.0.bodystructure └── thirdparty │ ├── 000.cyrus.body │ ├── 000.cyrus.bodystructure │ ├── 000.dovecot.body │ ├── 000.dovecot.bodystructure │ ├── 000.eml │ ├── 000.maddy.body │ ├── 000.maddy.bodystructure │ ├── 000.stalwart.0.2.0.body │ ├── 000.stalwart.0.2.0.bodystructure │ ├── 001.cyrus.body │ ├── 001.cyrus.bodystructure │ ├── 001.dovecot.body │ ├── 001.dovecot.bodystructure │ ├── 001.eml │ ├── 001.maddy.body │ ├── 001.maddy.bodystructure │ ├── 001.stalwart.0.2.0.body │ ├── 001.stalwart.0.2.0.bodystructure │ ├── 002.cyrus.body │ ├── 002.cyrus.bodystructure │ ├── 002.dovecot.body │ ├── 002.dovecot.bodystructure │ ├── 002.eml │ ├── 002.maddy.body │ ├── 002.maddy.bodystructure │ ├── 002.stalwart.0.2.0.body │ ├── 002.stalwart.0.2.0.bodystructure │ ├── 003.cyrus.body │ ├── 003.cyrus.bodystructure │ ├── 003.dovecot.body │ ├── 003.dovecot.bodystructure │ ├── 003.eml │ ├── 003.maddy.body │ ├── 003.maddy.bodystructure │ ├── 003.stalwart.0.2.0.body │ ├── 003.stalwart.0.2.0.bodystructure │ ├── 004.cyrus.body │ ├── 004.cyrus.bodystructure │ ├── 004.dovecot.body │ ├── 004.dovecot.bodystructure │ ├── 004.eml │ ├── 004.maddy.body │ ├── 004.maddy.bodystructure │ ├── 004.stalwart.0.2.0.body │ ├── 004.stalwart.0.2.0.bodystructure │ ├── 005.dovecot.body │ ├── 005.dovecot.bodystructure │ ├── 005.eml │ ├── 005.stalwart.0.2.0.body │ ├── 005.stalwart.0.2.0.bodystructure │ ├── 006.cyrus.body │ ├── 006.cyrus.bodystructure │ ├── 006.dovecot.body │ ├── 006.dovecot.bodystructure │ ├── 006.eml │ ├── 006.maddy.body │ ├── 006.maddy.bodystructure │ ├── 006.stalwart.0.2.0.body │ ├── 006.stalwart.0.2.0.bodystructure │ ├── 007.cyrus.body │ ├── 007.cyrus.bodystructure │ ├── 007.dovecot.body │ ├── 007.dovecot.bodystructure │ ├── 007.eml │ ├── 007.maddy.body │ ├── 007.maddy.bodystructure │ ├── 007.stalwart.0.2.0.body │ ├── 007.stalwart.0.2.0.bodystructure │ ├── 008.cyrus.body │ ├── 008.cyrus.bodystructure │ ├── 008.dovecot.body │ ├── 008.dovecot.bodystructure │ ├── 008.eml │ ├── 008.stalwart.0.2.0.body │ ├── 008.stalwart.0.2.0.bodystructure │ ├── 009.cyrus.body │ ├── 009.cyrus.bodystructure │ ├── 009.dovecot.body │ ├── 009.dovecot.bodystructure │ ├── 009.eml │ ├── 009.maddy.body │ ├── 009.maddy.bodystructure │ ├── 009.stalwart.0.2.0.body │ ├── 009.stalwart.0.2.0.bodystructure │ ├── 010.cyrus.body │ ├── 010.cyrus.bodystructure │ ├── 010.dovecot.body │ ├── 010.dovecot.bodystructure │ ├── 010.eml │ ├── 010.maddy.body │ ├── 010.maddy.bodystructure │ ├── 010.stalwart.0.2.0.body │ ├── 010.stalwart.0.2.0.bodystructure │ └── COPYING └── instrumentation ├── README.md ├── docker-compose.yml ├── docker ├── courier │ ├── Dockerfile │ └── entrypoint.sh ├── cyrus │ ├── Dockerfile │ └── entrypoint.sh └── maddy │ ├── Dockerfile │ └── entrypoint.sh ├── inject_emails.sh ├── mbox-to-imap.py ├── rm-mail-parser-expected-struct.py ├── send-to-imap.py └── unix2dos.py /.albatros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/.albatros -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/Cargo.nix -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clear; cargo build --all-features 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/README.md -------------------------------------------------------------------------------- /aero-bayou/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-bayou/Cargo.toml -------------------------------------------------------------------------------- /aero-bayou/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-bayou/src/lib.rs -------------------------------------------------------------------------------- /aero-bayou/src/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-bayou/src/timestamp.rs -------------------------------------------------------------------------------- /aero-collections/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/Cargo.toml -------------------------------------------------------------------------------- /aero-collections/src/calendar/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/calendar/mod.rs -------------------------------------------------------------------------------- /aero-collections/src/calendar/namespace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/calendar/namespace.rs -------------------------------------------------------------------------------- /aero-collections/src/davdag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/davdag.rs -------------------------------------------------------------------------------- /aero-collections/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/lib.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/incoming.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/incoming.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/mailbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/mailbox.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/mod.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/namespace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/namespace.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/query.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/snapshot.rs -------------------------------------------------------------------------------- /aero-collections/src/mail/uidindex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/mail/uidindex.rs -------------------------------------------------------------------------------- /aero-collections/src/unique_ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/unique_ident.rs -------------------------------------------------------------------------------- /aero-collections/src/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-collections/src/user.rs -------------------------------------------------------------------------------- /aero-dav/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /aero-dav/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/Cargo.toml -------------------------------------------------------------------------------- /aero-dav/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | coverage 5 | -------------------------------------------------------------------------------- /aero-dav/fuzz/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/fuzz/Cargo.lock -------------------------------------------------------------------------------- /aero-dav/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/fuzz/Cargo.toml -------------------------------------------------------------------------------- /aero-dav/fuzz/dav.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/fuzz/dav.dict -------------------------------------------------------------------------------- /aero-dav/fuzz/fuzz_targets/dav.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/fuzz/fuzz_targets/dav.rs -------------------------------------------------------------------------------- /aero-dav/src/acldecoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/acldecoder.rs -------------------------------------------------------------------------------- /aero-dav/src/aclencoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/aclencoder.rs -------------------------------------------------------------------------------- /aero-dav/src/acltypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/acltypes.rs -------------------------------------------------------------------------------- /aero-dav/src/caldecoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/caldecoder.rs -------------------------------------------------------------------------------- /aero-dav/src/calencoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/calencoder.rs -------------------------------------------------------------------------------- /aero-dav/src/caltypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/caltypes.rs -------------------------------------------------------------------------------- /aero-dav/src/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/decoder.rs -------------------------------------------------------------------------------- /aero-dav/src/encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/encoder.rs -------------------------------------------------------------------------------- /aero-dav/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/error.rs -------------------------------------------------------------------------------- /aero-dav/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/lib.rs -------------------------------------------------------------------------------- /aero-dav/src/realization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/realization.rs -------------------------------------------------------------------------------- /aero-dav/src/syncdecoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/syncdecoder.rs -------------------------------------------------------------------------------- /aero-dav/src/syncencoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/syncencoder.rs -------------------------------------------------------------------------------- /aero-dav/src/synctypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/synctypes.rs -------------------------------------------------------------------------------- /aero-dav/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/types.rs -------------------------------------------------------------------------------- /aero-dav/src/versioningdecoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/versioningdecoder.rs -------------------------------------------------------------------------------- /aero-dav/src/versioningencoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/versioningencoder.rs -------------------------------------------------------------------------------- /aero-dav/src/versioningtypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/versioningtypes.rs -------------------------------------------------------------------------------- /aero-dav/src/xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-dav/src/xml.rs -------------------------------------------------------------------------------- /aero-ical/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-ical/Cargo.toml -------------------------------------------------------------------------------- /aero-ical/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-ical/src/lib.rs -------------------------------------------------------------------------------- /aero-ical/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-ical/src/parser.rs -------------------------------------------------------------------------------- /aero-ical/src/prune.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-ical/src/prune.rs -------------------------------------------------------------------------------- /aero-ical/src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-ical/src/query.rs -------------------------------------------------------------------------------- /aero-proto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/Cargo.toml -------------------------------------------------------------------------------- /aero-proto/src/dav/codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/dav/codec.rs -------------------------------------------------------------------------------- /aero-proto/src/dav/controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/dav/controller.rs -------------------------------------------------------------------------------- /aero-proto/src/dav/middleware.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/dav/middleware.rs -------------------------------------------------------------------------------- /aero-proto/src/dav/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/dav/mod.rs -------------------------------------------------------------------------------- /aero-proto/src/dav/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/dav/node.rs -------------------------------------------------------------------------------- /aero-proto/src/dav/resource.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/dav/resource.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/attributes.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/capability.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/capability.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/command/anonymous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/command/anonymous.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/command/anystate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/command/anystate.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/command/authenticated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/command/authenticated.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/command/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/command/mod.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/command/selected.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/command/selected.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/flags.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/flow.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/imf_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/imf_view.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/index.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/mail_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/mail_view.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/mailbox_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/mailbox_view.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/mime_view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/mime_view.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/mod.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/request.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/response.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/search.rs -------------------------------------------------------------------------------- /aero-proto/src/imap/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/imap/session.rs -------------------------------------------------------------------------------- /aero-proto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/lib.rs -------------------------------------------------------------------------------- /aero-proto/src/lmtp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/lmtp.rs -------------------------------------------------------------------------------- /aero-proto/src/sasl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-proto/src/sasl.rs -------------------------------------------------------------------------------- /aero-sasl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-sasl/Cargo.toml -------------------------------------------------------------------------------- /aero-sasl/src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-sasl/src/decode.rs -------------------------------------------------------------------------------- /aero-sasl/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-sasl/src/encode.rs -------------------------------------------------------------------------------- /aero-sasl/src/flow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-sasl/src/flow.rs -------------------------------------------------------------------------------- /aero-sasl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-sasl/src/lib.rs -------------------------------------------------------------------------------- /aero-sasl/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-sasl/src/types.rs -------------------------------------------------------------------------------- /aero-user/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/Cargo.toml -------------------------------------------------------------------------------- /aero-user/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/config.rs -------------------------------------------------------------------------------- /aero-user/src/cryptoblob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/cryptoblob.rs -------------------------------------------------------------------------------- /aero-user/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/lib.rs -------------------------------------------------------------------------------- /aero-user/src/login/demo_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/login/demo_provider.rs -------------------------------------------------------------------------------- /aero-user/src/login/ldap_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/login/ldap_provider.rs -------------------------------------------------------------------------------- /aero-user/src/login/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/login/mod.rs -------------------------------------------------------------------------------- /aero-user/src/login/static_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/login/static_provider.rs -------------------------------------------------------------------------------- /aero-user/src/storage/garage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/storage/garage.rs -------------------------------------------------------------------------------- /aero-user/src/storage/in_memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/storage/in_memory.rs -------------------------------------------------------------------------------- /aero-user/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aero-user/src/storage/mod.rs -------------------------------------------------------------------------------- /aerogramme/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/Cargo.toml -------------------------------------------------------------------------------- /aerogramme/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/src/main.rs -------------------------------------------------------------------------------- /aerogramme/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/src/server.rs -------------------------------------------------------------------------------- /aerogramme/tests/behavior.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/tests/behavior.rs -------------------------------------------------------------------------------- /aerogramme/tests/common/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/tests/common/constants.rs -------------------------------------------------------------------------------- /aerogramme/tests/common/fragments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/tests/common/fragments.rs -------------------------------------------------------------------------------- /aerogramme/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/aerogramme/tests/common/mod.rs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/flake.nix -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /tests/emails/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/.gitattributes -------------------------------------------------------------------------------- /tests/emails/.gitignore: -------------------------------------------------------------------------------- 1 | *.mbox 2 | -------------------------------------------------------------------------------- /tests/emails/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/COPYING -------------------------------------------------------------------------------- /tests/emails/aero100.mbox.zstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/aero100.mbox.zstd -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.cyrus.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.dovecot.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.maddy.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/dxflrs/0001_simple.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0001_simple.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.cyrus.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.dovecot.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.maddy.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/dxflrs/0002_mime.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0002_mime.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0003_mime-in-mime.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0003_mime-in-mime.cyrus.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0003_mime-in-mime.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0003_mime-in-mime.dovecot.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0003_mime-in-mime.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0003_mime-in-mime.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0003_mime-in-mime.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0003_mime-in-mime.maddy.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0004_msg-in-msg.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0004_msg-in-msg.cyrus.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0004_msg-in-msg.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0004_msg-in-msg.dovecot.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0004_msg-in-msg.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0004_msg-in-msg.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0004_msg-in-msg.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0004_msg-in-msg.maddy.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0005_mail-parser-readme.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0005_mail-parser-readme.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0006_single-mime.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0006_single-mime.cyrus.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0006_single-mime.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0006_single-mime.dovecot.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0006_single-mime.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0006_single-mime.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0006_single-mime.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0006_single-mime.maddy.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0007_raw_msg_in_rfc822.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0007_raw_msg_in_rfc822.cyrus.body -------------------------------------------------------------------------------- /tests/emails/dxflrs/0007_raw_msg_in_rfc822.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0007_raw_msg_in_rfc822.eml -------------------------------------------------------------------------------- /tests/emails/dxflrs/0007_raw_msg_in_rfc822.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/dxflrs/0007_raw_msg_in_rfc822.maddy.body -------------------------------------------------------------------------------- /tests/emails/imap_commands_dataset.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/imap_commands_dataset.log -------------------------------------------------------------------------------- /tests/emails/imap_commands_summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/imap_commands_summary.csv -------------------------------------------------------------------------------- /tests/emails/legacy/000.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/000.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/000.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/000.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/000.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.eml -------------------------------------------------------------------------------- /tests/emails/legacy/000.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/000.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/000.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/000.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/000.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/001.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/001.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/001.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/001.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/001.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.eml -------------------------------------------------------------------------------- /tests/emails/legacy/001.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/001.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/001.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/001.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/001.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/002.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/002.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/002.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/002.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/002.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.eml -------------------------------------------------------------------------------- /tests/emails/legacy/002.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/002.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/002.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/002.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/002.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/003.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/003.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/003.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/003.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/003.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.eml -------------------------------------------------------------------------------- /tests/emails/legacy/003.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/003.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/003.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/003.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/003.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/004.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/004.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/004.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/004.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/004.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.eml -------------------------------------------------------------------------------- /tests/emails/legacy/004.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/004.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/004.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/004.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/004.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/005.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/005.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/005.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/005.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/005.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.eml -------------------------------------------------------------------------------- /tests/emails/legacy/005.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/005.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/005.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/005.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/005.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/006.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/006.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/006.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/006.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/006.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.eml -------------------------------------------------------------------------------- /tests/emails/legacy/006.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/006.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/006.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/006.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/006.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/007.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/007.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/007.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/007.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/007.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.eml -------------------------------------------------------------------------------- /tests/emails/legacy/007.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/007.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/007.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/007.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/007.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/008.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/008.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/008.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/008.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/008.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.eml -------------------------------------------------------------------------------- /tests/emails/legacy/008.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/008.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/008.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/008.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/008.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/009.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/009.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/009.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/009.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/009.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.eml -------------------------------------------------------------------------------- /tests/emails/legacy/009.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/009.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/009.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/009.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/009.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/010.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/010.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/010.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/010.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/010.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.eml -------------------------------------------------------------------------------- /tests/emails/legacy/010.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/010.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/010.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/010.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/010.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/011.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/011.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/011.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/011.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/011.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.eml -------------------------------------------------------------------------------- /tests/emails/legacy/011.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/011.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/011.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/011.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/011.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/012.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/012.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/012.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/012.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/012.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.eml -------------------------------------------------------------------------------- /tests/emails/legacy/012.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/012.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/012.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/012.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/012.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/013.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/013.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/013.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/013.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/013.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.eml -------------------------------------------------------------------------------- /tests/emails/legacy/013.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/013.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/013.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/013.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/013.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/014.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/014.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/014.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/014.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/014.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.eml -------------------------------------------------------------------------------- /tests/emails/legacy/014.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/014.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/014.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/014.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/015.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/015.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/015.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/015.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/015.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.eml -------------------------------------------------------------------------------- /tests/emails/legacy/015.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/015.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/015.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/015.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/016.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/016.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/016.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/016.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/016.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.eml -------------------------------------------------------------------------------- /tests/emails/legacy/016.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/016.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/016.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/016.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/017.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/017.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/017.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/017.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/017.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.eml -------------------------------------------------------------------------------- /tests/emails/legacy/017.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/017.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/017.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/017.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/018.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/018.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/018.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/018.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/018.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.eml -------------------------------------------------------------------------------- /tests/emails/legacy/018.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/018.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/018.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/018.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/019.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/019.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/019.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/019.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/019.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.eml -------------------------------------------------------------------------------- /tests/emails/legacy/019.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/019.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/019.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/019.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/020.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/020.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/020.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/020.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/020.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.eml -------------------------------------------------------------------------------- /tests/emails/legacy/020.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/020.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/020.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/020.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/021.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/021.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/021.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/021.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/021.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.eml -------------------------------------------------------------------------------- /tests/emails/legacy/021.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/021.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/021.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/021.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/022.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/022.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/022.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/022.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/022.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.eml -------------------------------------------------------------------------------- /tests/emails/legacy/022.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/022.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/022.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/022.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/023.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/023.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/023.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/023.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/023.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.eml -------------------------------------------------------------------------------- /tests/emails/legacy/023.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/023.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/023.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/023.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/024.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/024.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/024.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/024.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/024.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.eml -------------------------------------------------------------------------------- /tests/emails/legacy/024.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/024.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/024.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/024.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/025.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/025.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/025.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/025.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/025.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.eml -------------------------------------------------------------------------------- /tests/emails/legacy/025.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/025.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/025.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/025.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/026.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/026.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/026.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/026.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/026.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.eml -------------------------------------------------------------------------------- /tests/emails/legacy/026.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/026.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/026.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/026.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/027.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/027.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/027.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/027.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/027.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.eml -------------------------------------------------------------------------------- /tests/emails/legacy/027.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/027.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/027.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/027.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/028.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/028.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/028.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/028.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/028.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.eml -------------------------------------------------------------------------------- /tests/emails/legacy/028.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/028.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/028.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/028.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/029.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/029.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/029.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/029.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/029.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.eml -------------------------------------------------------------------------------- /tests/emails/legacy/029.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/029.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/029.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/029.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/030.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/030.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/030.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/030.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/030.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.eml -------------------------------------------------------------------------------- /tests/emails/legacy/030.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/030.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/030.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/030.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/031.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/031.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/031.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/031.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/031.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.eml -------------------------------------------------------------------------------- /tests/emails/legacy/031.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/031.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/031.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/031.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/032.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/032.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/032.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/032.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/032.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.eml -------------------------------------------------------------------------------- /tests/emails/legacy/032.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/032.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/032.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/032.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/033.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/033.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/033.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/033.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/033.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.eml -------------------------------------------------------------------------------- /tests/emails/legacy/033.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/033.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/033.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/033.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/034.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/034.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/034.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/034.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/034.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.eml -------------------------------------------------------------------------------- /tests/emails/legacy/034.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/034.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/034.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/034.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/035.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/035.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/035.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/035.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/035.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.eml -------------------------------------------------------------------------------- /tests/emails/legacy/035.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/035.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/035.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/035.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/036.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/036.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/036.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/036.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/036.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.eml -------------------------------------------------------------------------------- /tests/emails/legacy/036.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/036.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/036.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/036.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/037.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/037.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/037.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/037.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/037.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.eml -------------------------------------------------------------------------------- /tests/emails/legacy/037.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/037.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/037.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/037.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/038.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/038.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/038.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/038.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/038.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.eml -------------------------------------------------------------------------------- /tests/emails/legacy/038.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/038.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/038.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/038.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/039.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/039.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/039.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/039.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/039.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.eml -------------------------------------------------------------------------------- /tests/emails/legacy/039.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/039.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/039.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/039.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/040.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/040.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/040.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/040.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/040.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.eml -------------------------------------------------------------------------------- /tests/emails/legacy/040.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/040.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/040.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/040.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/041.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/041.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/041.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/041.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/041.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.eml -------------------------------------------------------------------------------- /tests/emails/legacy/041.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/041.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/041.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/041.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/042.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/042.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/042.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/042.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/042.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.eml -------------------------------------------------------------------------------- /tests/emails/legacy/042.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/042.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/042.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/042.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/043.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/043.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/043.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/043.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/043.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.eml -------------------------------------------------------------------------------- /tests/emails/legacy/043.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/043.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/043.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/043.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/044.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/044.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/044.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/044.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/044.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.eml -------------------------------------------------------------------------------- /tests/emails/legacy/044.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/044.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/044.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/044.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/045.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/045.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/045.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/045.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/045.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.eml -------------------------------------------------------------------------------- /tests/emails/legacy/045.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/045.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/045.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/045.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/046.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/046.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/046.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/046.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/046.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.eml -------------------------------------------------------------------------------- /tests/emails/legacy/046.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/046.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/046.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/046.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/047.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/047.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/047.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/047.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/047.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.eml -------------------------------------------------------------------------------- /tests/emails/legacy/047.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/047.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/047.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/047.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/048.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/048.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/048.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/048.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/048.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.eml -------------------------------------------------------------------------------- /tests/emails/legacy/048.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/048.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/048.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/048.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/049.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/049.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/049.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/049.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/049.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.eml -------------------------------------------------------------------------------- /tests/emails/legacy/049.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/049.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/049.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/049.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/050.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/050.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/050.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/050.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/050.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.eml -------------------------------------------------------------------------------- /tests/emails/legacy/050.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/050.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/050.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/050.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/051.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/051.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/051.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/051.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/051.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.eml -------------------------------------------------------------------------------- /tests/emails/legacy/051.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/051.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/051.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/051.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/052.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/052.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/052.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/052.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/052.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.eml -------------------------------------------------------------------------------- /tests/emails/legacy/052.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/052.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/052.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/052.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/053.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.cyrus.body -------------------------------------------------------------------------------- /tests/emails/legacy/053.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/053.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.dovecot.body -------------------------------------------------------------------------------- /tests/emails/legacy/053.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/053.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.eml -------------------------------------------------------------------------------- /tests/emails/legacy/053.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.maddy.body -------------------------------------------------------------------------------- /tests/emails/legacy/053.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/legacy/053.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/053.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/legacy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/legacy/COPYING -------------------------------------------------------------------------------- /tests/emails/mailbox_email_sizes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/mailbox_email_sizes.csv -------------------------------------------------------------------------------- /tests/emails/malformed/000.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/000.eml -------------------------------------------------------------------------------- /tests/emails/malformed/000.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/000.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/001.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/001.eml -------------------------------------------------------------------------------- /tests/emails/malformed/001.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/001.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/002.eml: -------------------------------------------------------------------------------- 1 | Content-Type: multipart/mixed; boundary="ab" 2 | 3 | body 4 | 5 | -------------------------------------------------------------------------------- /tests/emails/malformed/002.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/002.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/003.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/003.eml -------------------------------------------------------------------------------- /tests/emails/malformed/003.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/003.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/004.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/004.eml -------------------------------------------------------------------------------- /tests/emails/malformed/004.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/004.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/005.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/005.eml -------------------------------------------------------------------------------- /tests/emails/malformed/005.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/005.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/006.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/006.eml -------------------------------------------------------------------------------- /tests/emails/malformed/006.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/006.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/007.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/007.eml -------------------------------------------------------------------------------- /tests/emails/malformed/007.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/007.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/008.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/008.eml -------------------------------------------------------------------------------- /tests/emails/malformed/008.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/008.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/009.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/009.eml -------------------------------------------------------------------------------- /tests/emails/malformed/009.stalwart.0.2.0.body: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/emails/malformed/010.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/010.eml -------------------------------------------------------------------------------- /tests/emails/malformed/010.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/010.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/011.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/011.eml -------------------------------------------------------------------------------- /tests/emails/malformed/011.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/011.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/012.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/012.eml -------------------------------------------------------------------------------- /tests/emails/malformed/012.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/012.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/013.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/013.eml -------------------------------------------------------------------------------- /tests/emails/malformed/013.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/013.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/014.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/014.eml -------------------------------------------------------------------------------- /tests/emails/malformed/014.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/014.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/015.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/015.eml -------------------------------------------------------------------------------- /tests/emails/malformed/015.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/015.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/016.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/016.eml -------------------------------------------------------------------------------- /tests/emails/malformed/016.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/016.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/malformed/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/malformed/COPYING -------------------------------------------------------------------------------- /tests/emails/report.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/report.R -------------------------------------------------------------------------------- /tests/emails/rfc/000.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/000.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/000.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/000.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/000.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.eml -------------------------------------------------------------------------------- /tests/emails/rfc/000.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/000.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/000.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/000.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/000.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/001.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/001.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/001.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/001.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/001.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.eml -------------------------------------------------------------------------------- /tests/emails/rfc/001.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/001.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/001.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/001.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/001.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/002.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/002.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/002.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/002.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/002.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.eml -------------------------------------------------------------------------------- /tests/emails/rfc/002.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/002.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/002.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/002.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/002.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/003.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/003.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/003.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/003.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/003.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.eml -------------------------------------------------------------------------------- /tests/emails/rfc/003.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/003.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/003.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/003.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/003.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/004.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/004.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/004.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/004.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/004.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.eml -------------------------------------------------------------------------------- /tests/emails/rfc/004.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/004.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/004.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/004.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/004.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/005.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/005.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/005.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/005.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/005.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.eml -------------------------------------------------------------------------------- /tests/emails/rfc/005.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/005.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/005.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/005.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/005.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/006.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/006.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/006.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/006.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/006.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.eml -------------------------------------------------------------------------------- /tests/emails/rfc/006.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/006.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/006.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/006.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/006.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/007.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/007.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/007.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/007.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/007.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.eml -------------------------------------------------------------------------------- /tests/emails/rfc/007.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.maddy.body -------------------------------------------------------------------------------- /tests/emails/rfc/007.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/007.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/007.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/007.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/008.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.cyrus.body -------------------------------------------------------------------------------- /tests/emails/rfc/008.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/008.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.dovecot.body -------------------------------------------------------------------------------- /tests/emails/rfc/008.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/rfc/008.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.eml -------------------------------------------------------------------------------- /tests/emails/rfc/008.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/rfc/008.stalwart.0.2.0.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/rfc/008.stalwart.0.2.0.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/000.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/000.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/001.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/001.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/002.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/002.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/003.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/003.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/004.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/004.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/005.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/005.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/005.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/005.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/005.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/005.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/005.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/005.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/006.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/006.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/007.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/007.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/008.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/008.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/008.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/008.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/008.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/008.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/008.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/008.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/008.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/008.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/008.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/008.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/009.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/009.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.cyrus.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.cyrus.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.cyrus.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.cyrus.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.dovecot.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.dovecot.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.dovecot.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.dovecot.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.eml -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.maddy.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.maddy.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.maddy.bodystructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.maddy.bodystructure -------------------------------------------------------------------------------- /tests/emails/thirdparty/010.stalwart.0.2.0.body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/010.stalwart.0.2.0.body -------------------------------------------------------------------------------- /tests/emails/thirdparty/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/emails/thirdparty/COPYING -------------------------------------------------------------------------------- /tests/instrumentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/README.md -------------------------------------------------------------------------------- /tests/instrumentation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker-compose.yml -------------------------------------------------------------------------------- /tests/instrumentation/docker/courier/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker/courier/Dockerfile -------------------------------------------------------------------------------- /tests/instrumentation/docker/courier/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker/courier/entrypoint.sh -------------------------------------------------------------------------------- /tests/instrumentation/docker/cyrus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker/cyrus/Dockerfile -------------------------------------------------------------------------------- /tests/instrumentation/docker/cyrus/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker/cyrus/entrypoint.sh -------------------------------------------------------------------------------- /tests/instrumentation/docker/maddy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker/maddy/Dockerfile -------------------------------------------------------------------------------- /tests/instrumentation/docker/maddy/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/docker/maddy/entrypoint.sh -------------------------------------------------------------------------------- /tests/instrumentation/inject_emails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/inject_emails.sh -------------------------------------------------------------------------------- /tests/instrumentation/mbox-to-imap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/mbox-to-imap.py -------------------------------------------------------------------------------- /tests/instrumentation/send-to-imap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/send-to-imap.py -------------------------------------------------------------------------------- /tests/instrumentation/unix2dos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuxfleurs-org/aerogramme/HEAD/tests/instrumentation/unix2dos.py --------------------------------------------------------------------------------