An open API service indexing awesome lists of open source software.

https://github.com/hubertkuch/ovh-mail-creator

CLI for automated email creation on OVH
https://github.com/hubertkuch/ovh-mail-creator

automation bot cli email java ovh ovh-api

Last synced: 10 months ago
JSON representation

CLI for automated email creation on OVH

Awesome Lists containing this project

README

          

## CLI for emails automation on OVH

### Requirements

Java 17 or higher

### Build

Linux/MacOS

```bash
git clone https://github.com/HubertKuch/ovh-mail-creator.git
cd ovh-mail-creator
./mvnw clean && ./mvnw install
```

Windows

```bash
git clone https://github.com/HubertKuch/ovh-mail-creator.git
cd ovh-mail-creator
.\mvnw.cmd clean && .\mvnw.cmd install
```

### Configuration

```yaml
ovh:
app-secret: <>
app-key: <>
consumer-key: <>
endpoint: <>
```

### Available commands

create-email
Create X emails on specify domain

### Options

*`--count` How many emails create

*`--domain` OVH domain

*`--password` Password for emails

*`--base` Base email name for example `test` and everyone mail will be created with
`test_{random ten letters}`

`--size` Size in bytes

`--description` Description

get-emails
Get all emails

### Options

*`--domain` OVH domain

delete-emails
Delete all emails from domain

### Options

*`--domain` OVH domain

### Generate json sample

```json
[
{
"id": 24142,
"name": "test",
"email": "test@test.com",
"domain": "test.com",
"password": "test"
}
]
```