This repository was archived by the owner on Oct 8, 2024. It is now read-only.
5 files changed
+718
-84
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
5 | 15 |
| |
6 | 16 |
| |
7 | 17 |
| |
|
+706-81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
10 |
| - | |
| 10 | + | |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
9 | 8 |
| |
10 | 9 |
| |
11 | 10 |
| |
|
- CHANGELOG.md+12
- Cargo.lock+625-11
- README.md+1-1
- crates/cli/Cargo.toml+1-1
- crates/cli/src/modules/export.rs+18-4
- crates/cli/src/modules/import.rs+76-54
- crates/cli/src/modules/mod.rs+2
- crates/directory/src/lib.rs+3-3
- crates/imap/Cargo.toml+1-1
- crates/imap/src/op/append.rs+1
- crates/install/Cargo.toml+1-1
- crates/jmap/Cargo.toml+12-3
- crates/jmap/src/api/config.rs+2
- crates/jmap/src/api/http.rs+12
- crates/jmap/src/auth/oauth/device_auth.rs+8-9
- crates/jmap/src/auth/oauth/mod.rs+67-39
- crates/jmap/src/auth/oauth/token.rs+5-8
- crates/jmap/src/auth/oauth/user_code.rs+4-4
- crates/jmap/src/email/crypto.rs+686
- crates/jmap/src/email/import.rs+1
- crates/jmap/src/email/ingest.rs+122-68
- crates/jmap/src/email/mod.rs+1
- crates/jmap/src/email/set.rs+1
- crates/jmap/src/lib.rs+3
- crates/jmap/src/services/ingest.rs+1
- crates/jmap/src/sieve/ingest.rs+1
- crates/main/Cargo.toml+1-1
- crates/smtp/Cargo.toml+1-1
- crates/smtp/src/config/auth.rs+19-12
- crates/smtp/src/config/if_block.rs+4-47
- crates/smtp/src/config/mod.rs+3-3
- crates/smtp/src/config/queue.rs+5-1
- crates/smtp/src/config/report.rs+6-2
- crates/smtp/src/config/session.rs+20-4
- crates/smtp/src/core/if_block.rs+36-75
- crates/smtp/src/core/mod.rs+1-34
- crates/smtp/src/core/params.rs+1-1
- crates/smtp/src/core/throttle.rs+36-22
- crates/smtp/src/inbound/data.rs+2-2
- crates/smtp/src/inbound/mail.rs+3-2
- crates/smtp/src/inbound/rcpt.rs+4-3
- crates/smtp/src/inbound/session.rs+58-68
- crates/smtp/src/inbound/vrfy.rs+2-2
- crates/smtp/src/outbound/lookup.rs+5-3
- crates/smtp/src/queue/mod.rs+79-150
- crates/smtp/src/queue/quota.rs+4-3
- crates/smtp/src/queue/throttle.rs+7-4
- crates/smtp/src/reporting/dmarc.rs+35-10
- crates/smtp/src/reporting/mod.rs+1-1
- crates/smtp/src/reporting/scheduler.rs+18-3
- crates/smtp/src/reporting/tls.rs+19-7
- crates/utils/src/config/dynvalue.rs+72-29
- crates/utils/src/config/mod.rs+36-3
- resources/config/jmap.toml+4
- resources/htx/crypto_disabled.htx+1
- resources/htx/crypto_error.htx+1
- resources/htx/crypto_footer.htx+1
- resources/htx/crypto_form.htx+1
- resources/htx/crypto_header.htx+1
- resources/htx/crypto_success.htx+1
- resources/htx/error.htx
- resources/htx/footer.htx
- resources/htx/header.htx+1
- resources/htx/login.htx+1-1
- resources/htx/login_code.htx
- resources/htx/login_code_hidden.htx
- resources/htx/login_hdr_client.htx+1
- resources/htx/login_hdr_device.htx
- resources/htx/login_hdr_failed.htx
- resources/htx/login_success.htx
- resources/htx/oauth.htx+2-2
- resources/oauth/header.htx-1
- resources/oauth/login_hdr_client.htx-1
- tests/Cargo.toml+1-1
- tests/resources/crypto/cert_mixed.pem+35
- tests/resources/crypto/cert_pgp.der
- tests/resources/crypto/cert_pgp.pem+69
- tests/resources/crypto/cert_smime.der
- tests/resources/crypto/cert_smime.pem+98
- tests/resources/crypto/is_encrypted.txt+101
- tests/resources/smtp/config/rules-dynvalue.toml+17-1
- tests/resources/test_config.toml+30-3
- tests/src/imap/mod.rs+2-1
- tests/src/jmap/auth_oauth.rs+1-1
- tests/src/jmap/crypto.rs+308
- tests/src/jmap/mod.rs+5-1
- tests/src/smtp/config.rs+49-52
- tests/src/smtp/inbound/auth.rs+2-2
- tests/src/smtp/inbound/dmarc.rs+6-4
- tests/src/smtp/inbound/rewrite.rs+10-2
- tests/src/smtp/inbound/sign.rs+5-3
- tests/src/smtp/lookup/sql.rs+3-3
- tests/src/smtp/lookup/utils.rs+11-2
- tests/src/smtp/queue/dsn.rs+3-3
- tests/src/smtp/reporting/dmarc.rs+2-2
- tests/src/smtp/reporting/tls.rs+2-2
0 commit comments