Changeset

2869:5ed986d44159

ejabberd2prosody: Don't print passwords of imported accounts
author Matthew Wild <mwild1@gmail.com>
date Sun, 21 Feb 2010 16:57:06 +0000
parents 2868:ebdff81adee4
children 2870:471c3acffb2a
files tools/ejabberd2prosody.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tools/ejabberd2prosody.lua	Sun Feb 21 16:42:26 2010 +0000
+++ b/tools/ejabberd2prosody.lua	Sun Feb 21 16:57:06 2010 +0000
@@ -49,7 +49,7 @@
 end
 function password(node, host, password)
 	local ret, err = dm.store(node, host, "accounts", {password = password});
-	print("["..(err or "success").."] accounts: "..node.."@"..host.." = "..password);
+	print("["..(err or "success").."] accounts: "..node.."@"..host);
 end
 function roster(node, host, jid, item)
 	local roster = dm.load(node, host, "roster") or {};