Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

How to configure osgi config xml under config folder programatically?

Avatar

Level 4

Hi,

I have a requirement to set osgi config properties @programatically. For instance i have created a xml file under config file(email service) with below values

<?xml version="1.0" encoding="UTF-8"?>

<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"

    jcr:primaryType="sling:OsgiConfig"

    debug.email="{Boolean}true"

    from.address=""

    smtp.host="smtp.gmail.com"

    smtp.password="password"

    smtp.port="465"

    smtp.ssl="{Boolean}true"

    smtp.user="mymail@gmail.com"/>

Arun PatidarJoerg Hohsmacdonald2008

I wasnt to set all these values programatically

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

I tried with as MessageGatewayService well, it is taking from address from osgi config but Name is working.

e.g.

email.setFrom("abcd.efg@gmail.com", "Arun Patidar");

aem63app-repo/HTMLEmailServlet.java at master · arunpatidar02/aem63app-repo · GitHub

I am not sure, if there is any other configuration to work above but if you really want to go with config update then you can use below  code :

-------------------------------------------------------------

Configuration configuration = configAdmin.getConfiguration("com.day.cq.mailer.DefaultMailService");

if (configuration != null) {

// get properties

Dictionary<String, Object> properties = configuration.getProperties();

Dictionary<String, Object> newProperties = properties;

// update properties

        if (properties == null) {

        newProperties = new Hashtable<String, Object>();

        }

       

        newProperties.put("smtp.user", "new user");

        newProperties.put("smtp.password","new pass");

        newProperties.put("from.address", "new from");

configuration.update(newProperties);

// send mail

// revert to old property

configuration.update(properties);

}



Arun Patidar

View solution in original post

13 Replies

Avatar

Employee Advisor

Why do you want to set this within Code? eMail configuration should be very static and known upfront. It's a property of the AEM instance (because it relates to the environment the application is running in) and should not be set by code.

What is your usecaes that you want to set these properties by code?

Avatar

Level 1
You could use the existing service for this , and provide all the properties from xml like this

Avatar

Level 1

You could use the existing service for this , and provide all the properties from xml like this <?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" jcr:primaryType="sling:OsgiConfig" sling.servlet.resourceTypes="[myapp/components/page/home-page]" externalizer.domain="publish" extensionless.urls="{Boolean}true" include.lastmod="{Boolean}false" changefreq.properties="[myChangeFreqProperties]" priority.properties="[myPriorityProperties]" damassets.property="myDAMFoldersProperty" damassets.types="[myDAMAllowedMIMETypes]" />

 

If you add more properties, the override this service and add additional fields to this, which again you can use it in your xml 

Avatar

Level 4

i want the from.email or smtp.user to be coming from dialog.

Avatar

Level 4

author should be able to configure the from address from name in the email. These should be coming from component dialog

Avatar

Community Advisor

You can set sender info from code by adding keys in map like below as you are using ACS Common.

No need to update osgi config

emailParams.put("senderEmailAddress","abcd@example.com");

emailParams.put("senderName","David Smith");

More info

Email API



Arun Patidar

Avatar

Level 7

Hi,

do you think is it possible for you to use an other approach?

E.g. I think that you could use the MailService with the default file configuration and use API in order to change the sender based on the dialog configuration.

Have a look on the following snippet:

String mydialogSender = getDialogSender();

  Email mail = new HtmlEmail();

  mail = mail.setFrom(mydialogSender);

mail.setCharset("UTF-8");

mail.setSubject(mailSubject);

mail.addTo(emailTo);

mail.setMsg( mailPattern );

mailService.send(mail);

Let us know.

Thanks,

Antonio

Avatar

Level 4

I tried this way but the sender mail is getting picked up from osgi config property 'smtp.user'

Avatar

Correct answer by
Community Advisor

I tried with as MessageGatewayService well, it is taking from address from osgi config but Name is working.

e.g.

email.setFrom("abcd.efg@gmail.com", "Arun Patidar");

aem63app-repo/HTMLEmailServlet.java at master · arunpatidar02/aem63app-repo · GitHub

I am not sure, if there is any other configuration to work above but if you really want to go with config update then you can use below  code :

-------------------------------------------------------------

Configuration configuration = configAdmin.getConfiguration("com.day.cq.mailer.DefaultMailService");

if (configuration != null) {

// get properties

Dictionary<String, Object> properties = configuration.getProperties();

Dictionary<String, Object> newProperties = properties;

// update properties

        if (properties == null) {

        newProperties = new Hashtable<String, Object>();

        }

       

        newProperties.put("smtp.user", "new user");

        newProperties.put("smtp.password","new pass");

        newProperties.put("from.address", "new from");

configuration.update(newProperties);

// send mail

// revert to old property

configuration.update(properties);

}



Arun Patidar

Avatar

Employee Advisor

These properties are system-wide settings. They are not supposed to be changed by a user, but are persistent defaults. If you need to change the source address of an email generated by AEM you can use the methods described by the other responses. But you should never change OSGI configurations with input provided a user.

Jörg

Avatar

Level 4

I am actually using acs common email service