summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clamsmtp-details-html.lsp4
-rw-r--r--clamsmtp-logfile-html.lsp1
-rw-r--r--clamsmtp-model.lua4
l---------clamsmtp-startstop-html.lsp1
4 files changed, 4 insertions, 6 deletions
diff --git a/clamsmtp-details-html.lsp b/clamsmtp-details-html.lsp
index 8f1363e..ae142cd 100644
--- a/clamsmtp-details-html.lsp
+++ b/clamsmtp-details-html.lsp
@@ -1,5 +1,5 @@
<% local data, viewlibrary = ...
-require("viewfunctions")
+require("htmlviewfunctions")
%>
<% viewlibrary.dispatch_component("status") %>
@@ -7,6 +7,6 @@ require("viewfunctions")
<H2><%= html.html_escape(data.label) %></H2>
<DL>
<%
-displayitem(data)
+htmlviewfunctions.displayitem(data)
%>
</DL>
diff --git a/clamsmtp-logfile-html.lsp b/clamsmtp-logfile-html.lsp
index 5a14049..1207ce9 100644
--- a/clamsmtp-logfile-html.lsp
+++ b/clamsmtp-logfile-html.lsp
@@ -1,5 +1,4 @@
<% local data, viewlibrary = ...
-require("viewfunctions")
%>
<% if viewlibrary and viewlibrary.dispatch_component then
diff --git a/clamsmtp-model.lua b/clamsmtp-model.lua
index 832b13f..e9dcdb5 100644
--- a/clamsmtp-model.lua
+++ b/clamsmtp-model.lua
@@ -2,8 +2,8 @@ module(..., package.seeall)
-- Load libraries
require("modelfunctions")
-require("fs")
-require("format")
+fs = require("acf.fs")
+format = require("acf.format")
-- Set variables
local configfile = "/etc/clamsmtpd.conf"
diff --git a/clamsmtp-startstop-html.lsp b/clamsmtp-startstop-html.lsp
deleted file mode 120000
index 0ea2627..0000000
--- a/clamsmtp-startstop-html.lsp
+++ /dev/null
@@ -1 +0,0 @@
-../startstop-html.lsp \ No newline at end of file