Skip to content

Commit

Permalink
feat(core): Update default MAIL-FROM and HELO
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Jan 9, 2023
1 parent 09215a1 commit 743a811
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ In your own Rust project, you can add `check-if-email-exists` in your `Cargo.tom
```toml
[dependencies]
check-if-email-exists = "0.8"
check-if-email-exists = "0.9"
```
And use it in your code as follows:
Expand Down Expand Up @@ -147,7 +147,7 @@ The output will be a JSON with the below format, the fields should be self-expla
|| **Full inbox** | Is the inbox of this mailbox full? | `smtp.has_full_inbox` |
|| **Catch-all address** | Is this email address a [catch-all](https://debounce.io/blog/help/what-is-a-catch-all-or-accept-all/) address? | `smtp.is_catch_all` |
|| **Role account validation** | Is the email address a well-known role account? | `misc.is_role_account` |
|| **Gravatar Url** | The url of the [Gravatar](https://gravatar.com/) email address profile picture | `misc.gravatar_url` |
|| **Gravatar Url** | The url of the [Gravatar](https://gravatar.com/) email address profile picture | `misc.gravatar_url` |
| 🔜 | **Free email provider check** | Is the email address bound to a known free email provider? | [Issue #89](https://github.com/reacherhq/check-if-email-exists/issues/89) |
| 🔜 | **Syntax validation, provider-specific** | According to the syntactic rules of the target mail provider, is the address syntactically valid? | [Issue #90](https://github.com/reacherhq/check-if-email-exists/issues/90) |
| 🔜 | **Honeypot detection** | Does email address under test hide a [honeypot](https://en.wikipedia.org/wiki/Spamtrap)? | [Issue #91](https://github.com/reacherhq/check-if-email-exists/issues/91) |
Expand Down
4 changes: 2 additions & 2 deletions core/src/util/input_output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ impl Default for CheckEmailInput {
fn default() -> Self {
CheckEmailInput {
to_email: "".into(),
from_email: "user@example.org".into(),
hello_name: "example.org".into(),
from_email: "reacher.email@gmail.com".into(), // Unused, owned by Reacher
hello_name: "gmail.com".into(),
#[cfg(feature = "headless")]
hotmail_use_headless: None,
proxy: None,
Expand Down

0 comments on commit 743a811

Please sign in to comment.