내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Workflow emails are not getting triggered

Avatar

Level 2

Workflow emails are not getting triggered and we are getting error as below mentioned. We cross checked the run modes as well and it is pointing to correct one only. Not able to figure it out what is cause of the issue.

Here is the error log:

*ERROR* [EMailNotificationService-Processor] com.day.cq.workflow.impl.email.EMailNotificationService Error while sending email.

  1. java.lang.IllegalArgumentException: Could not find configuration for domain 'local'

        at com.day.cq.commons.impl.ExternalizerImpl.externalLink(ExternalizerImpl.java:308) [com.day.cq.cq-commons:5.11.14]

        at com.day.cq.commons.impl.ExternalizerImpl.externalLink(ExternalizerImpl.java:299) [com.day.cq.cq-commons:5.11.14]

        at com.day.cq.workflow.impl.email.EMailNotificationService.getHostPrefix(EMailNotificationService.java:426) [com.day.cq.workflow.cq-workflow-impl:6.2.12]

        at com.day.cq.workflow.impl.email.NotificationImpl.load(NotificationImpl.java:184) [com.day.cq.workflow.cq-workflow-impl:6.2.12]

        at com.day.cq.workflow.impl.email.EMailNotificationService.sendNotification(EMailNotificationService.java:262) [com.day.cq.workflow.cq-workflow-impl:6.2.12]

        at com.day.cq.workflow.impl.email.EMailNotificationService$EventProcessor.run(EMailNotificationService.java:542) [com.day.cq.workflow.cq-workflow-impl:6.2.12]

        at java.lang.Thread.run(Thread.java:748)

Any idea on what would be the problem?

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 4

Hi sai,

I don't see any config name as "local", you should have local config value. Did you try adding "local" and test?

In externalizer, the config name "local" is hardcoded, so you need to have local regardless you are using it or not.

Ex:

return externalLink(null, "local", scheme, path);

However, externalizer is multifield, you can add one more config as "local".  Please add the local and check.

Thanks!

원본 게시물의 솔루션 보기

9 답변 개

Avatar

Level 4

Go to <server>/system/console/configMgr and locate Link Externalizer and add value for "local"

1643553_pastedImage_0.png

Hope this helps!.

Thanks!

Avatar

Level 2

Hi GaneshM​-

Thank you for the response. We have externalizer configurations  to a specific environments based on run-mode value. And when I checked again it is reflecting all author and publisher specific urls that we have configured. As this issue is happening at environment level, it should not be local. But we trigger a workflow it is failing with the exception, which I mentioned above.

-Sai

Avatar

Level 4

Hi Sai,

Did your "local" field empty in Externalizer? in "EMail Notification Service" its mentioned that "Deprecated - Use the 'Link Externalizer' service to configure the host prefix (host.prefix)"

The Notification Email uses the "local" config value for host in Email Notification Service

FYI, I made the local value empty and trigged workflow got the same exception

1643643_pastedImage_0.png

Exception

java.lang.IllegalArgumentException: Could not find configuration for domain 'local'

at com.day.cq.commons.impl.ExternalizerImpl.externalLink(ExternalizerImpl.java:308)

at com.day.cq.commons.impl.ExternalizerImpl.externalLink(ExternalizerImpl.java:299)

at com.day.cq.workflow.impl.email.EMailNotificationService.getHostPrefix(EMailNotificationService.java:417)

at com.day.cq.workflow.impl.email.NotificationImpl.load(NotificationImpl.java:180)

at com.day.cq.workflow.impl.email.EMailNotificationService.sendNotification(EMailNotificationService.java:253)

at com.day.cq.workflow.impl.email.EMailNotificationService$EventProcessor.run(EMailNotificationService.java:512)

Can you make the field with some host name and try?

Thanks!

Avatar

Level 2

Hi GaneshM​ - We alredy the runmode configuration to fill the domain value. We are maintaining author, publisher and pdf urls for domains field of Link Externalizer. I cross checked and it still it didn't helped us.

Avatar

Level 10

To send an email in a workflow - you can write a custom step and use the MesssageGateWay service - whcih works perfect: Adobe Experience Manager Help | Creating an Adobe Experience Manager 6.4 custom workflow step that u...

Avatar

Level 4

Can you share the screenshot of externalizer?

Thanks!

Avatar

Level 2

Hi GaneshM​-

PFA.Capture.PNG

Avatar

정확한 답변 작성자:
Level 4

Hi sai,

I don't see any config name as "local", you should have local config value. Did you try adding "local" and test?

In externalizer, the config name "local" is hardcoded, so you need to have local regardless you are using it or not.

Ex:

return externalLink(null, "local", scheme, path);

However, externalizer is multifield, you can add one more config as "local".  Please add the local and check.

Thanks!

Avatar

Level 2

Above resolve the issue. Thank you GaneshM​ for the help.