How to set user passwords in ejabberd? [closed] - ios

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 installed eJabberd to test my iOS application's XMPP functionality. I can log in with the admin user name and password. But I have created two users at the "Access Control List". When I try to log in with those users, i get an error saying the password is incorrect. I'm currently testing with Message application in Mac OS.
Do they have a default password? if not, how to set the password for the users?

If you are running eJabberD on osx or linux you can use ejabberdctl to create users and set passwords. http://manpages.ubuntu.com/manpages/hardy/man8/ejabberdctl.8.html

You can also use the web admin panel of Ejabberd server to add users. To use the admin panel use the following :
"http://localhost:5280/admin"
It will ask the user name and password for the admin and is the one you configured during the ejabberd installation.

Related

Is Jenkins safe to use? [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 1 year ago.
Improve this question
So for a schoolproject we want to use Jenkins. During the installation, Jenkins asks for service logon credentials (local/ domain accountname and the password for the account). This raised a question in the group wether Jenkins is safe to use or not, because you are giving away sensitive information.
So is Jenkins safe to use? Could somebody also give a explanation why it is safe to use (How it works exactly)
Read Securing Jenkins
Create a service account (needs logonasservice) as explained here for the controller.
Have a separate account to run the agents under. Use a third to access the source control system (use credentials plugin).
Your admins can restrict where the accounts can run and what privileges the have. Do NOT run as system or root (inside Docker is OK) and it's fine.

How to create and assign access to a user via Maxl? [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 5 years ago.
Improve this question
Hyperion shared services is not working properly so how can I create and assign an LDAP user access to cubes?
Check if the user exists in shared services by running below Maxl command in EAS console.
display user "z107818#SameTimeLdap";
if user doesn't exist, it will throw a warning, as shown in the
picture
Now create a user in shared services using the below command.
create user "z107818#SameTimeLdap" type external;
Its cause the user exists in LDAP, that's why type is external
Now grant access to essbase cubes via below command
grant read on database LncSum.LncSum to "z107818";
For more info on this read below Oracle article.
https://docs.oracle.com/cd/E57185_01/ESBTR/maxl_creusr.html

Disable JIRA e-mail notifications to one user [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
One of our JIRA users wants to disable the option to receive any kind of e-mail from JIRA and updates from the wiki.
How can this be implemented? Please provide the exact steps so that it can be switched off, or explain what I can do to create that something.
JIRA v7.1.4
It's not possible in Jira.
You can edit the email record to point somewhere else.
If it's user from external user directory (for example ActiveDirectory) you can delete email attribute in that user directory.
The cleanest way will be filtering out all incoming email from your jira server on user's mailbox side.

Should I strictly validate email address for signing up [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
We are building and running a website in Ruby on rails. For authentication we have used devise gem.
Recently we found lots of registrations happening on our website with fake email address. Attacker is not confirming account but just doing registration.
I know I can strictly validate email address for mx record and not let invalid domain or un-existing mailboxes signup. e.g. email_verifier
But I have seen shopping site and content platforms, let people register with any junk email address.
I would like to know why people not implement validation when it is so simple to do it
I believe, it ensures your users table is clean and number of unconfirmed users will be less.

iOS App auto create account on web service [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I Was wondering if anyone can tell me if this is possible. So.. I am just about to create my first iPhone app. I have my idea and everything is sketched out etc.. but then today I realised that I had not thought about all the features and their implementation properly. This could soon be a no win situation, so please help
Is it possible to create a username and password automatically upon first app opening? so the username and password is to be generated on the fly and then submitted to a web database.
I would also like it so that the user of the app could change this manually if they wished. but also so that if they viewed it on their other iDevices they could sync it up.
Is that possible?
yes, you could generate a random string to sign up a user for first time (backdoor guest account sort of speak), I've done it with one of my apps before (temporarily). However, you should consider baking a guest account feature into your remote server.

Resources