aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
Commit message (Collapse)AuthorAgeFilesLines
* prosodyctl check: Point out that authentication and storage modules should ↵Kim Alvefur2015-12-031-0/+14
| | | | not be added to modules_enabled (fixes #570)
* prosodyctl check: Point out items in the modules_enabled list that ↵Kim Alvefur2015-12-031-0/+9
| | | | incorrectly include the 'mod_' prefix
* prosodyctl check: Really store imported LuaSec (must be a leftover from ↵Kim Alvefur2015-12-031-1/+1
| | | | debugging)
* prosodyctl check: Include global options when checking "all options"Kim Alvefur2015-12-031-1/+1
|
* prosodyctl: check: Don't complain about c2s_ssl or s2s_ssl being in ↵Kim Alvefur2015-10-211-1/+1
| | | | VirtualHost sections, that's supported
* prosodyctl check: Warn if certificate checking is enforced but LuaSec is too oldKim Alvefur2015-09-241-0/+24
|
* prosodyctl check: Warn if encryption is required but LuaSec is unavailableKim Alvefur2015-09-241-0/+13
|
* prosodyctl: Move files out of the way when generating new cert or keyKim Alvefur2015-09-191-6/+18
|
* prosodyctl: Import LuaSocket to a local, don't assume that a global will be setKim Alvefur2015-03-131-1/+1
|
* prosodyctl: check: Add some more known global config optionsKim Alvefur2015-07-051-1/+2
|
* prosodyctl: Soft-require LuaSec and LuaEvent so they show up in the module ↵Kim Alvefur2015-05-181-0/+2
| | | | version listing
* prosodyctl: check certs: Correctly check that certificates are valid for s2sKim Alvefur2015-04-271-1/+1
|
* prosodyctl: Use ssl.loadcertificate instead of ssl.x509.load, as the ↵Kim Alvefur2015-04-021-1/+1
| | | | ssl.x509 export dissapears in 97b1974 or 356e03a
* prosodyctl: Document magic commit IDPaul Aurich2015-04-011-0/+1
|
* prosodyctl: Expand plugin paths and attempt to identify prosody-modules ↵Kim Alvefur2015-01-211-1/+14
| | | | checkouts
* prosodyctl: Use util.mercurial to identify hg repository and revisionKim Alvefur2015-01-211-1/+4
|
* prosodyctl: Show relative paths in aboutKim Alvefur2014-07-041-4/+6
|
* Merge 0.9->0.10Kim Alvefur2014-10-261-1/+1
|\
| * prosodyctl: Fix nil global access traceback in `prosodyctl about` (luarocks ↵Waqas Hussain2014-10-191-1/+1
| | | | | | | | 2.2.0 no longer uses module())
* | prosodyctl: Add 'require_encryption' to list of deprecated options pointed ↵Kim Alvefur2014-10-211-1/+1
| | | | | | | | out by the check command
* | prosodyctl: Use sha256 for certificate requests and self-signed certificatesKim Alvefur2014-09-111-2/+2
| |
* | Merge 0.9->0.10Matthew Wild2014-08-281-0/+1
|\|
| * prosodyctl: Verify that 'pidfile' is a string, show friendly error otherwiseKim Alvefur2014-08-261-0/+1
| |
* | Merge 0.9->0.10Matthew Wild2014-07-311-4/+2
|\|
| * prosodyctl: Remove nonsensical warningMatthew Wild2014-07-311-1/+0
| |
| * prosodyctl: Improve JID splitting and normalization for adduser/passwd/deluserMatthew Wild2014-07-311-3/+5
| |
* | prosodyctl: Check that there is at least one enabled VirtualHost (or ↵Kim Alvefur2014-05-021-0/+11
| | | | | | | | Component) defined
* | prosodyctl: Use correct variable in check certsKim Alvefur2014-05-021-2/+2
| |
* | prosodyctl: Check for deprecated config optionsKim Alvefur2014-05-021-0/+10
| |
* | prosodyctl: Add check that points out any disabled hostsKim Alvefur2014-05-021-0/+15
| |
* | prosodyctl: Only perform checks on enabled hostsKim Alvefur2014-05-021-43/+43
| |
* | prosodyctl, util.prosodyctl: Update to reflect that mod_posix gets loaded by ↵Kim Alvefur2014-04-101-1/+5
| | | | | | | | default on posix platforms
* | Merge 0.9->0.10Kim Alvefur2014-03-251-1/+6
|\|
| * prosodyctl: Show real error if certificate config file can't be openedKim Alvefur2014-03-221-1/+6
| |
* | prosodyctl: check: Support for unicode (IDN) domains (thanks once again albert)Matthew Wild2013-09-021-7/+8
| |
* | prosodyctl: Import local_addresses from the new util.net intead of luasocketKim Alvefur2013-07-011-1/+1
| |
* | prosodyctl: Add 'prosodyctl check certs' for validating TLS/SSL certificatesKim Alvefur2013-06-071-0/+75
| |
* | prosodyctl: Add 'prosodyctl check --help'Kim Alvefur2013-06-071-0/+4
| |
* | prosodyctl: check dns: Add check that proxy65 addresses resolve correctlyMatthew Wild2013-05-221-0/+19
| |
* | prosodyctl: check config: Fix check for whether host is a componentMatthew Wild2013-05-221-1/+1
| |
* | prosodyctl: check config: whitespace fixMatthew Wild2013-05-211-0/+1
| |
* | prosodyctl: check config: Show a suggestion to change hosts that begin with ↵Matthew Wild2013-05-211-0/+8
| | | | | | | | jabber/xmpp/chat/im subdomains, and link to DNS documentation
* | prosodyctl: Use jid.split() to parse parameter to adduser/deluser/passwdMatthew Wild2013-05-201-3/+6
| |
* | prosodyctl: check dns: Use socket.local_addresses() if availableMatthew Wild2013-05-171-1/+20
| |
* | prosodyctl: check dns: Whitespace fix in outputMatthew Wild2013-05-171-1/+1
| |
* | prosodyctl: check dns: More concise output (merged separate v4/v6 warnings)Matthew Wild2013-05-171-4/+9
| |
* | prosodyctl: check dns: Correctly mark host as failed if expected SRV records ↵Matthew Wild2013-05-171-0/+2
| | | | | | | | are not found
* | prosodyctl: Add 'prosodyctl check dns' to make an attempt at verifying the ↵Matthew Wild2013-05-171-1/+142
| | | | | | | | server's DNS records
* | prosodyctl: Add 'check' command, which currently checks the config file for ↵Matthew Wild2013-05-171-0/+52
|/ | | | some common mistakes
* prosodyctl: Guess the country from the TLD for the cert configKim Alvefur2013-04-291-0/+5
|