Compare commits

...

3 Commits

3 changed files with 6 additions and 3 deletions

@ -43,7 +43,8 @@ host=wss://your-xmpp-server
user=your_xmpp_username
domain=your_xmpp_domain
password=your_xmpp_password
resource=bot
; optional (will default to nostrsms-bot)
resource=nostrsms-bot
[relays]
read=wss://relay.example.com

@ -2,6 +2,7 @@
domain =
host =
password =
# optional (will default to nostrsms-bot)
resource =
user =

@ -46,7 +46,7 @@ if (fs.existsSync(configPath)) {
const xmpp = client({
service: config.xmpp.host,
domain: config.xmpp.domain,
resource: config.xmpp.resource || 'bot',
resource: config.xmpp.resource || 'nostrsms-bot',
username: config.xmpp.user,
password: config.xmpp.password,
});
@ -70,7 +70,8 @@ if (fs.existsSync(configPath)) {
// check for chat messages
if (stanza.is('message') && stanza.attrs.type === 'chat') {
// store from jid, and message contents
const from = stanza.attrs.from;
const rawfrom = stanza.attrs.from;
const from = rawfrom.split('/')[0];
const body = stanza.getChildText('body');
// show them to the user in console