summaryrefslogtreecommitdiffstats
path: root/fetchmail-editentry-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-08-29 17:48:19 +0000
committerTed Trask <ttrask01@yahoo.com>2008-08-29 17:48:19 +0000
commit7675a3125618bad993398d89e2ef91eb238c8bc3 (patch)
tree3ca00a9c5c7b43b9b4a5664a84cdc18a30640838 /fetchmail-editentry-html.lsp
parent0441e224f891306f238eac938692a0088eda1e43 (diff)
downloadacf-fetchmail-7675a3125618bad993398d89e2ef91eb238c8bc3.tar.bz2
acf-fetchmail-7675a3125618bad993398d89e2ef91eb238c8bc3.tar.xz
Added config to fetchmail to configure globals and multiple entries. Also added ability to run once and test. Still need support for ETRN and SSL.
git-svn-id: svn://svn.alpinelinux.org/acf/fetchmail/trunk@1437 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'fetchmail-editentry-html.lsp')
-rw-r--r--fetchmail-editentry-html.lsp13
1 files changed, 13 insertions, 0 deletions
diff --git a/fetchmail-editentry-html.lsp b/fetchmail-editentry-html.lsp
new file mode 100644
index 0000000..410b3ef
--- /dev/null
+++ b/fetchmail-editentry-html.lsp
@@ -0,0 +1,13 @@
+<% local form, viewlibrary, page_info = ...
+require("viewfunctions")
+%>
+
+<H1><%= 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.contenteditable = false
+ end
+ local order = { "remotehost", "enabled", "method", "remotemailbox", "remotepassword", "localhost", "localmailbox", "localdomain" }
+ displayform(form, order)
+%>