Support multiple login at the same time in OpenFire server [closed] - xmpp

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I've configured OpenFire for using as server for my customers.
But in following case, OpenFire doesn't give proper response:
Customer A login from two chat client connected to my server and chat with another Customer B.
The problem is that, last active Customer A can only get Message from Customer B instead of getting message in both the chat client.
Anyone have configured the OpenFire can suggest me the settings need to be changed.
Thanks.

This is by design of XMPP, as can be seen in RFC3921, section 11.1 "Inbound Stanzas".
To send messages addressed to a bare JID in openfire to all related full JIDs (resources + bare JID), you need to set the system property route.all-resources with the value true in Openfire (Admin Console > Server Manager > System Properties). You will have to create this system property. Also you would have to set the same priority in both clients.
See also these igniterealtime forums posts.

Related

WSO2 BAM: howto send log event via REST endpoint [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to send log events to BAM 2.4.1 via client REST but I dont find any example about it so I need to know what is the endpoint url and some example about building of the json message to send.
Thanks in advance for any help
Currently, it doesn't have a REST API to publish events. Current options are listed here.
In addition you can use Analytics JavaScript (JS) API as well. It has this limitation.
Currently due to a limitation, client applications should be deployed
in the same domain as the Dashboard server. i.e -
DAS_HOME/repository/deployment/server/webapps

how do I know if my webserver becomes listed as a spamserver [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I'm working on a app which sends notifications emails. I know this is stereotypical for spam servers. I know the first question ist "How can I ensure what my server will not be listed as a spam server?" However I believe I should monitor my mailserver to ensure what every customer becomes his mails.
So the question: How can I check/monitor whether my server is listed as a spam server?
I really appreciate your help.
MXtoolbox (disclosure: I hold no relation to this site) has a great blacklist checking tool that checks all the major blacklists.
As for staying off them, make sure all your e-mails are opt-in and have an unsubscribe link within the e-mail body of every notification sent. Keep a record of all clients opting in, some hosting companies will charge you a small fortune if you get their IPs blacklisted.

How can I send email to a virtual domain in other server [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am setting up 2 servers.
1. monitoring server
2. mailing list server
These two servers work together when monitoring server(1) send any alert mail to mailing list server(2).
After the mailing list server(2) receives the alert,
The mailing list server(2) will spread out emails to email address in the mailing list database.
The problem is:
The mailing list server uses virtual domain.
Like fakedomain.com
How can I setup Alias in the monitoring server, so that the monitoring server(1) would send directly to fakedomain.com in mailing list server(2)?
not to fakedomain.com on the internet.
Thank You in advance
You can use your /etc/hosts file on your monitoring server to point to your local mail server to bounce messages further to recipients from the database.
/etc/hosts:
10.1.1.14 mail.fakedomain.com

What is the IP address range for foursquare API? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm developing a Web service using a VM behind a firewall on a University. I need to know what a range of IP address to give to our IT guy so we can get access to calls from foursquare.
You'll never be able to reliably pin this down. It's not as if they are using one subnet.
Your IT guy needs to open up your firewall differently, based on your end, not Foursquare's.
Navigate to zoneedit.com in the DNS lookup field enter foursquare.com and in the dropdown select "Ip Address (A)" you will find only one record listed. After further research I found that Foursquare is hosted at Amazon Web Services and the most likely scenario is that thy will have have multiple servers hosted behind a single IP'ed load balancer. You will need to get the IPs for foursquare.co.uk or any other top level domains it may operate under (COM,NET,CO.UK and so on) but from what I can find CO.UK is the only other country it operates in.

How to create non-anonymous rooms in Ejabberd [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I would like to create a non-anoymous room (muc) in Jabber (Ejabberd). I can create an anonymous room, but how can i make it non-anonymous?
I have read http://xmpp.org/extensions/xep-0045.html but they only describe what non-anonymous rooms, not how to create it.
I want the members to see each other's normal JIDs as opposed to conference JIDs with a nick.
From the official guide - set anonymous to false using your chat client (assuming you have admin rights):
{default_room_options, [ {OptionName, OptionValue}, ...]}
This module option allows to define the desired default room options. Note that
the creator of a room can modify the options of his room at any time using a XMPP
client with MUC capability. The available room options and the default values are:
{anonymous, true|false}
The room is anonymous: occupants don’t see the real JIDs of other occupants.
Note that the room moderators can always see the real JIDs of the occupants.
If you want to use a gui to configure this and similar settings of muc rooms, you might want to install Psi, connect to your server, join/create a room with service discovery and find that small arrow in the top-right corner of the room window. An enabled XML console is really helpful.