docs: add MXRoute email API credentials
This commit is contained in:
parent
16b0273fb5
commit
4cf2694093
3 changed files with 73 additions and 0 deletions
|
|
@ -225,6 +225,32 @@ git clone https://yamamoto:$TOKEN@pipe.gohorsejobs.com/<repo>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## MXRoute Email
|
||||||
|
|
||||||
|
| Propriedade | Valor |
|
||||||
|
|-------------|-------|
|
||||||
|
| Server | everest.mxrouting.net |
|
||||||
|
| Username | net5cloud |
|
||||||
|
| API Key | `~/.ssh/mxroute-api-key` |
|
||||||
|
|
||||||
|
```bash
|
||||||
|
API_KEY=$(grep "API-Key" ~/.ssh/mxroute-api-key | cut -d' ' -f2)
|
||||||
|
|
||||||
|
# Listar dominios
|
||||||
|
curl -X GET "https://api.mxroute.com/domains" \
|
||||||
|
-H "X-Server: everest.mxrouting.net" \
|
||||||
|
-H "X-Username: net5cloud" \
|
||||||
|
-H "X-API-Key: $API_KEY"
|
||||||
|
|
||||||
|
# Listar contas de email
|
||||||
|
curl -X GET "https://api.mxroute.com/accounts/<dominio>" \
|
||||||
|
-H "X-Server: everest.mxrouting.net" \
|
||||||
|
-H "X-Username: net5cloud" \
|
||||||
|
-H "X-API-Key: $API_KEY"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## SSH Config
|
## SSH Config
|
||||||
|
|
||||||
Criar/editar `~/.ssh/config`:
|
Criar/editar `~/.ssh/config`:
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
| Redbull | ✅ OK | Coolify funcionando |
|
| Redbull | ✅ OK | Coolify funcionando |
|
||||||
| OCI CLI | ✅ OK | Conectado |
|
| OCI CLI | ✅ OK | Conectado |
|
||||||
| Forgejo | ✅ OK | API apenas |
|
| Forgejo | ✅ OK | API apenas |
|
||||||
|
| MXRoute | ✅ OK | Email API |
|
||||||
| Azure DevOps | ❌ FAIL | Chave nao registrada |
|
| Azure DevOps | ❌ FAIL | Chave nao registrada |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@
|
||||||
| `config` | Hosts SSH configurados |
|
| `config` | Hosts SSH configurados |
|
||||||
| `azure_devops_auth.json` | Azure DevOps PAT |
|
| `azure_devops_auth.json` | Azure DevOps PAT |
|
||||||
| `forgejo-token` | Forgejo API Token |
|
| `forgejo-token` | Forgejo API Token |
|
||||||
|
| `mxroute-api-key` | MXRoute Email API |
|
||||||
| `known_hosts` | Fingerprints conhecidos |
|
| `known_hosts` | Fingerprints conhecidos |
|
||||||
| `known_hosts.old` | Backup fingerprints |
|
| `known_hosts.old` | Backup fingerprints |
|
||||||
| `authorized_keys` | Vazio |
|
| `authorized_keys` | Vazio |
|
||||||
|
|
@ -49,6 +50,7 @@
|
||||||
| NC2 | ✅ OK | Contabo |
|
| NC2 | ✅ OK | Contabo |
|
||||||
| OCI CLI | ✅ OK | Conectado |
|
| OCI CLI | ✅ OK | Conectado |
|
||||||
| Forgejo | ✅ OK | API apenas |
|
| Forgejo | ✅ OK | API apenas |
|
||||||
|
| MXRoute | ✅ OK | Email API |
|
||||||
| Azure DevOps | ❌ FAIL | Registrar ic-ad.pub |
|
| Azure DevOps | ❌ FAIL | Registrar ic-ad.pub |
|
||||||
| OCI CLI | ✅ OK | Conectado |
|
| OCI CLI | ✅ OK | Conectado |
|
||||||
|
|
||||||
|
|
@ -156,6 +158,50 @@ Ver documentacao em `OCI.md`
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## MXRoute Email
|
||||||
|
|
||||||
|
**Arquivo:** `~/.ssh/mxroute-api-key`
|
||||||
|
|
||||||
|
| Propriedade | Valor |
|
||||||
|
|-------------|-------|
|
||||||
|
| Server | everest.mxrouting.net |
|
||||||
|
| Username | net5cloud |
|
||||||
|
| API Key | Ver arquivo |
|
||||||
|
|
||||||
|
### Dominios
|
||||||
|
|
||||||
|
- bjtechnology.net
|
||||||
|
- brunoteodoropersonal.com.br
|
||||||
|
- deltasunpower.com
|
||||||
|
- gohorsejobs.com
|
||||||
|
- photum.app.br
|
||||||
|
- q1agenda.com.br
|
||||||
|
- q1food.com
|
||||||
|
- q1site.com.br
|
||||||
|
- q1store.me
|
||||||
|
- rede5.com.br
|
||||||
|
- saveinmed.com.br
|
||||||
|
- sepdistribuidora.com.br
|
||||||
|
- sextando.com.br
|
||||||
|
|
||||||
|
### Uso
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Listar dominios
|
||||||
|
curl -X GET "https://api.mxroute.com/domains" \
|
||||||
|
-H "X-Server: everest.mxrouting.net" \
|
||||||
|
-H "X-Username: net5cloud" \
|
||||||
|
-H "X-API-Key: <API_KEY>"
|
||||||
|
|
||||||
|
# Listar contas de email de um dominio
|
||||||
|
curl -X GET "https://api.mxroute.com/accounts/<dominio>" \
|
||||||
|
-H "X-Server: everest.mxrouting.net" \
|
||||||
|
-H "X-Username: net5cloud" \
|
||||||
|
-H "X-API-Key: <API_KEY>"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Arquivos Faltando
|
## Arquivos Faltando
|
||||||
|
|
||||||
| Arquivo | Necessario para |
|
| Arquivo | Necessario para |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue