summaryrefslogtreecommitdiffstats
path: root/fetchmail-editentry-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-11-18 21:17:33 +0000
committerTed Trask <ttrask01@yahoo.com>2008-11-18 21:17:33 +0000
commit6c8e660dc5571933730fbd5f717c15d9928c2e17 (patch)
treec4df36fa08e5e3da5846be40af00f024d4b0a823 /fetchmail-editentry-html.lsp
parenta1165702b8adc868c4a6529459d18756afc691e0 (diff)
downloadacf-fetchmail-6c8e660dc5571933730fbd5f717c15d9928c2e17.tar.bz2
acf-fetchmail-6c8e660dc5571933730fbd5f717c15d9928c2e17.tar.xz
Modified fetchmail to specify an entry by server, method, mailbox, and domain instead of just by server.
git-svn-id: svn://svn.alpinelinux.org/acf/fetchmail/trunk@1598 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'fetchmail-editentry-html.lsp')
-rw-r--r--fetchmail-editentry-html.lsp4
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail-editentry-html.lsp b/fetchmail-editentry-html.lsp
index 8917bc1..4253918 100644
--- a/fetchmail-editentry-html.lsp
+++ b/fetchmail-editentry-html.lsp
@@ -7,6 +7,10 @@ require("viewfunctions")
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
+ form.value.method.type = "text"
+ form.value.method.contenteditable = false
+ form.value.remotemailbox.contenteditable = false
+ form.value.localdomain.contenteditable = false
end
local order = { "remotehost", "enabled", "method", "remotemailbox", "remotepassword", "ssl", "localhost", "localmailbox", "localdomain" }
displayform(form, order)