Skip to content

Conversation

@sagasoftio
Copy link

Description

This pull request adds a new service template for SagaSoft professional email services. This template automates the configuration of MX, SPF, DKIM, and DMARC records for domains using SagaSoft's email infrastructure.

Type of change

  • New template
  • Bug fix (non-breaking change which fixes an issue in the template)
  • New feature (non-breaking change which adds functionality to the template)
  • Breaking change (fix or feature that would cause existing template behavior to be not backward compatible)

How Has This Been Tested?

  • Schema validated using JSON Schema template.schema
  • Template functionality checked using Online Editor
  • Template is checked using template linter
  • Template file name follows the pattern <providerId>.<serviceId>.json
  • resource URL provided with logoUrl is actually served by a webserver

Example variable values

SPFTXT: v=spf1 include:_spf.sagasoft.io ~all
DOMAINKEY: emailkey.sagasoft.io
DMARCTXT: v=DMARC1; p=none
MXTXT: email.sagasoft.io
VERIFYTXT: sagasoft-verify-12345

Test Data Object

"testData": {
    "testset": {
      "variables": {
        "domain": "sagasoft.xyz",
        "SPFTXT": "v=spf1 include:_spf.sagasoft.io ~all",
        "DOMAINKEY": "emailkey.sagasoft.io",
        "DMARCTXT": "v=DMARC1; p=none",
        "MXTXT": "email.sagasoft.io",
        "VERIFYTXT": "sagasoft-verify-12345"
      },
      "results": [
        {
          "type": "TXT",
          "host": "@",
          "data": "v=spf1 include:_spf.sagasoft.io ~all"
        },
        {
          "type": "CNAME",
          "host": "emailkey-r._domainkey",
          "pointsTo": "emailkey.sagasoft.io"
        },
        {
          "type": "TXT",
          "host": "_dmarc",
          "data": "v=DMARC1; p=none"
        },
        {
            "type": "MX",
            "host": "@",
            "pointsTo": "email.sagasoft.io",
            "priority": 10
        },
        {
          "type": "TXT",
          "host": "@",
          "data": "sagasoft-verify-12345"
        }
      ]
    }
  }

@github-actions
Copy link

github-actions bot commented Jan 2, 2026

Linter OK:

Linter result for sagasoft.io.email-xyz.json

"serviceId": "email-xyz",
"serviceName": "SagaSoft-xyz",
"version": 1,
"syncPubKeyDomain": "sagasoft.xyz",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would have expected seeing pubkey in the sagasoft.io zone, but I suppose this could work as well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants