I would like to see values of different attributes while using the jboss-cli.sh commandline tool in JBoss WildFly 8.1 (I think the version doesn't matter that much)
I know how to write values and I know how to list possible attributes to write to ,but I don't know how to check and see what value is there for example set for the mail-smtp attribute.
So I have the following subsystem in the standalone.xlm
:
<subsystem xmlns="urn:jboss:domain:mail:2.0">
<mail-session name="default" jndi-name="java:jboss/mail/Default">
<smtp-server outbound-socket-binding-ref="mail-smtp"/>
</mail-session>
</subsystem>
It seems to refer to some "mail-smtp" value. I'd like to know what exactly is that mail-smtp attribute's value it is referring to.
How can I find this value out in jboss-cli.sh
command line tool?