Files
metabuilder/dbal/shared/seeds/database/smtp_credentials.json
2026-03-09 22:30:41 +00:00

29 lines
780 B
JSON

{
"entities": [
{
"entityType": "Credential",
"id": "cred_smtp_relay_system",
"name": "System SMTP Relay",
"type": "basic_auth",
"service": "smtp_relay",
"config": {
"host": "${SMTP_RELAY_HOST:-localhost}",
"port": "${SMTP_RELAY_PORT:-2525}",
"username": "${GMAIL_USERNAME:-}",
"password": "${GMAIL_APP_PASSWORD:-}",
"useSSL": false,
"useTLS": false,
"timeout": 30000,
"retryAttempts": 3
},
"isActive": true,
"tenantId": null,
"packageId": "notification_center",
"expiresAt": null,
"createdAt": "${SYSTEM_SEED_TIMESTAMP}",
"updatedAt": "${SYSTEM_SEED_TIMESTAMP}",
"createdBy": "system",
"updatedBy": "system"
}
]
}