File

tools/migration/config.lua @ 4207:06eb75d071ec

mod_pep: Fix comparison between incoming hash and the cached hash for a JID, fixes repeated PEP events on presence (fixes #225)
author Matthew Wild <mwild1@gmail.com>
date Fri, 25 Feb 2011 00:07:38 +0000
parent 4197:bef732980436
child 4209:df753c398aa0
line wrap: on
line source

input {
	type = "prosody_sql";
	driver = "SQLite3";
	database = "out.sqlite";
}
output {
	type = "prosody_files";
	path = "out";
}

--[[

input {
	path = "../../data";
	type = "prosody_files";
	driver = "SQLite3";
	database = "../../prosody.sqlite";
}
output {
	type = "prosody_sql";
	driver = "SQLite3";
	database = "out.sqlite";
	path = "out";
}

]]