From 6fb2dc9c938849d7ff7e7218c86f5c423bf0ee47 Mon Sep 17 00:00:00 2001 From: Fernando <35773180+feschaffa@users.noreply.github.com> Date: Tue, 4 Nov 2025 20:11:11 -0300 Subject: [PATCH] Update URL for Action Mailbox ingress example The previous URL (`/postfix/`) returns a 404 error. The correct URL as per documentation at https://edgeguides.rubyonrails.org/action_mailbox_basics.html#postfix is `/relay/` --- .../features/email-channel/conversation-continuity.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/self-hosted/configuration/features/email-channel/conversation-continuity.mdx b/self-hosted/configuration/features/email-channel/conversation-continuity.mdx index 4c39f90d..af99397e 100644 --- a/self-hosted/configuration/features/email-channel/conversation-continuity.mdx +++ b/self-hosted/configuration/features/email-channel/conversation-continuity.mdx @@ -71,7 +71,7 @@ Chatwoot receives inbound emails through the [Action Mailbox](https://edgeguides ```bash cat my_incoming_message | ./bin/rails action_mailbox:ingress:postfix \ RAILS_ENV=production \ - URL=http://localhost:3000/rails/action_mailbox/postfix/inbound_emails \ + URL=http://localhost:3000/rails/action_mailbox/relay/inbound_emails \ INGRESS_PASSWORD=... ``` would import the contents of the file `my_incoming_message` into a Chatwoot instance running on `localhost` - assuming `my_incoming_message` contains an [RFC 822](https://datatracker.ietf.org/doc/html/rfc822) compliant message.