Skip to content

unable to enter email addressed ending '.cd' to a httpTrigger #1435

@RodNorfor

Description

@RodNorfor

Describe the Bug

I have created a simple logic app that exhibits the same issue, this is attached below.

If I enter an email address that ends '.cd' this is produce a 404 error, '.dc' and '.ocd' work as expected.

If you go to the Support and Troubleshooting and investigate the 4xx errors you get this:

Image

Plan Type

Standard

Steps to Reproduce the Bug or Issue

Create a stateless workflow called display_email,
paste the below json into code window.
save and run with payload of an emailAddress of 'test123@test.cd'
The run will fail.
You can also attempt to run in Postman with GET https://:443/api/display_email/triggers/When_an_HTTP_request_is_received/invoke/email/test123@test.cd?api-version=2022-05-01&sp=%2Ftriggers%2FWhen_an_HTTP_request_is_received%2Frun&sv=1.0&sig=
And you will receive a 404

Workflow JSON

{
    "definition": {
        "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
        "contentVersion": "1.0.0.0",
        "actions": {
            "Response": {
                "type": "Response",
                "kind": "Http",
                "inputs": {
                    "statusCode": 200,
                    "body": "@triggerOutputs()?['relativePathParameters']?['emailAddress']"
                },
                "runAfter": {}
            }
        },
        "outputs": {},
        "triggers": {
            "When_an_HTTP_request_is_received": {
                "type": "Request",
                "kind": "Http",
                "inputs": {
                    "method": "GET",
                    "relativePath": "/email/{emailAddress}"
                }
            }
        }
    },
    "kind": "Stateless"
}

Screenshots or Videos

No response

Additional context

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions