version Rust minimum rustc version

Licence is AGPL-3.0 in accordance with https://github.com/reacherhq/check-if-email-exists

Information

This CLI will either accept string input of email addresses or a file(s) input(s) or a directory containing .csv files, omitting duplicates and then it will determine if the email is valid based on logic inside email check source. It will write to output with duplicates, valid and invalid emails amongst other useful information.

A run of 6000 emails across 4 csv files peaked ~190MB RAM, allowing 200 concurrent tasks across all threads. Note: careful with --concurrency, on a linux machine running systemd-resolved caused DDOS as of 2023-09-22, running unbound DNS server worked fine, this might also saturate your internet connection.

Usage/Installation

Subcommand check-string

```shell $ cargo run -- check-string --help

Usage: email-validate check-string [OPTIONS] --input

Options: --input separated by space, coma or semicolon --concurrency [default: 25] --timeout-seconds per item [default: 120] -h, --help Print help -V, --version Print version ```

Alt text

     

Subcommand check-file

```shell cargo run -- check-file --help

Usage: email-validate check-file [OPTIONS] --file-input --dir-output

Options: --file-input separated by newline, space, coma or semicolon --dir-output Directory to output {input-file}-timeout.csv {input-file}-invalid.csv {input-file}-valid.csv {input-file}-timing.json --concurrency [default: 25] --timeout-seconds per item [default: 120] -h, --help Print help -V, --version Print version ```

--file-input may be repeat for multiple files. Hitting Esc/CTRL+C/q will abort quit the CLI progress. The output will be a TUI progress screen identical like the subcommand check-dir.

     

Subcommand check-dir

```shell cargo run -- check-dir --help

Usage: email-validate check-dir [OPTIONS] --dir-input --dir-output

Options: --dir-input Directory containing .cvs files, it's walked recursively, the emails may be separated by newline, space, coma or semicolon --dir-output Directory to output {input-file}-timeout.csv {input-file}-invalid.csv {input-file}-valid.csv {input-file}-timing.json --concurrency [default: 25] --timeout-seconds per item [default: 120] -h, --help Print help -V, --version Print version ```

Hitting Esc/CTRL+c/q will process abort the CLI progress.

Alt text