summaryrefslogtreecommitdiffstats
path: root/fetchmail-editentry-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail-editentry-html.lsp')
-rw-r--r--fetchmail-editentry-html.lsp18
1 files changed, 0 insertions, 18 deletions
diff --git a/fetchmail-editentry-html.lsp b/fetchmail-editentry-html.lsp
deleted file mode 100644
index 3112425..0000000
--- a/fetchmail-editentry-html.lsp
+++ /dev/null
@@ -1,18 +0,0 @@
-<% local form, viewlibrary, page_info = ...
-require("htmlviewfunctions")
-html = require("acf.html")
-%>
-
-<H1><%= html.html_escape(form.label) %></H1>
-<%
- form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
- if page_info.action == "editentry" then
- form.value.remotehost.readonly = true
- form.value.method.type = "text"
- form.value.method.readonly = true
- form.value.remotemailbox.readonly = true
- form.value.localdomain.readonly = true
- end
- local order = { "remotehost", "enabled", "method", "remotemailbox", "remotepassword", "ssl", "localhost", "localmailbox", "localdomain", "envelope" }
- htmlviewfunctions.displayform(form, order)
-%>