summaryrefslogtreecommitdiffstats
path: root/amavis-model.lua
diff options
context:
space:
mode:
authorZach LeBar <zach@zachlebar.com>2012-03-22 13:13:27 +0000
committerZach LeBar <zach@zachlebar.com>2012-03-29 12:37:17 +0000
commit529553e13a8aeec8c5aef5f0d44415d08c854212 (patch)
tree038447919be5e44437429ca854e68ee1358cbea6 /amavis-model.lua
parenta30b97b092520b2cf6665eccd9a4978a182d6723 (diff)
downloadacf-amavisd-new-529553e13a8aeec8c5aef5f0d44415d08c854212.tar.bz2
acf-amavisd-new-529553e13a8aeec8c5aef5f0d44415d08c854212.tar.xz
Changed amavis-controller.lua to use new handle_form() functions found in acf_www-controller.lua instead of the controllerfunctions.lua version and also instead of redirect_to_referrer(). Made corresponding changes to amavis-model.lua to make everything
work.
Diffstat (limited to 'amavis-model.lua')
-rw-r--r--amavis-model.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/amavis-model.lua b/amavis-model.lua
index d3d9ce0..2d7fce8 100644
--- a/amavis-model.lua
+++ b/amavis-model.lua
@@ -16,8 +16,12 @@ local path = "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin
-- ################################################################################
-- PUBLIC FUNCTIONS
-function startstop_service(action)
- return modelfunctions.startstop_service(processname, action)
+function get_startstop(clientdata)
+ return modelfunctions.get_startstop(processname)
+end
+
+function startstop_service(startstop, action)
+ return modelfunctions.startstop_service(startstop, action)
end
function getstatus()