diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 00:51:02 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 00:51:02 +0000 |
commit | 1e9ed0f9034c7d4f2d9683eaed422568a0d3aa28 (patch) | |
tree | 0d54464a14cbaab1e62b0f5daf21d097cbe599b7 /clamsmtp-model.lua | |
parent | 6692843935d8e831750a23cea4547de105b0c50b (diff) | |
download | acf-clamsmtp-1e9ed0f9034c7d4f2d9683eaed422568a0d3aa28.tar.bz2 acf-clamsmtp-1e9ed0f9034c7d4f2d9683eaed422568a0d3aa28.tar.xz |
Modified require statements for acf. libraries, updated for viewfunctions to htmlviewfunctions, deleted startstop view
Diffstat (limited to 'clamsmtp-model.lua')
-rw-r--r-- | clamsmtp-model.lua | 4 |
1 files changed, 2 insertions, 2 deletions
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" |