From 6c8e660dc5571933730fbd5f717c15d9928c2e17 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Tue, 18 Nov 2008 21:17:33 +0000 Subject: 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 --- fetchmail-listentries-html.lsp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'fetchmail-listentries-html.lsp') diff --git a/fetchmail-listentries-html.lsp b/fetchmail-listentries-html.lsp index 982ce9d..9ddcf64 100644 --- a/fetchmail-listentries-html.lsp +++ b/fetchmail-listentries-html.lsp @@ -18,17 +18,19 @@ io.write("") Action Entry Enabled - Method + Method + Remote Mailbox / Domain <% for i,entry in ipairs(data.value) do %> - <% io.write(html.link{value = "editentry?entry=" .. entry.entry.."&redir="..page_info.orig_action, label="Edit " }) %> - <% io.write(html.link{value = "deleteentry?entry=" .. entry.entry, label="Delete " }) %> + <% io.write(html.link{value = "editentry?entry=" .. entry.entry.."&method="..entry.method.."&remotemailbox="..entry.remotemailbox.."&localdomain="..entry.localdomain.."&redir="..page_info.orig_action, label="Edit " }) %> + <% io.write(html.link{value = "deleteentry?entry=" .. entry.entry.."&method="..entry.method.."&remotemailbox="..entry.remotemailbox.."&localdomain="..entry.localdomain, label="Delete " }) %> <%= entry.entry %> <%= entry.enabled %> - <%= entry.method %> + <%= entry.method %> + <% if entry.localdomain and entry.localdomain ~= "" then io.write(entry.localdomain) else io.write(entry.remotemailbox) end %> <% end %> -- cgit v1.2.3