core/moduleapi.lua
changeset 7130 27557dd7b460
parent 7118 805d068d2fd5
child 7144 362545c3f8bb
child 7165 d0b64f1e4f5d
--- a/core/moduleapi.lua	Thu Feb 04 14:56:49 2016 +0000
+++ b/core/moduleapi.lua	Thu Feb 04 10:05:35 2016 +0100
@@ -301,6 +301,20 @@
 	return value;
 end
 
+function api:get_option_path(name, default, parent)
+	if parent == nil then
+		parent = parent or self:get_directory();
+	elseif prosody.paths[parent] then
+		parent = prosody.paths[parent];
+	end
+	local value = self:get_option_string(name, default);
+	if value == nil then
+		return nil;
+	end
+	return resolve_relative_path(parent, value);
+end
+
+
 function api:context(host)
 	return setmetatable({host=host or "*"}, {__index=self,__newindex=self});
 end