Summit of SummitsReturn to the Source
lazysite forms are defined inline in page content using :::form blocks.
The processor generates an HTML form with built-in anti-spam protection.
Submissions are handled by a CGI script that validates and dispatches
to named handlers defined in lazysite/forms/handlers.conf.
Three config files work together:
lazysite/forms/FORMNAME.conflazysite/forms/handlers.confid, type, and type-specific settings.
lazysite/forms/smtp.confA form targets one or more handlers by ID. Multiple forms can share the same handler, and a form can dispatch to multiple handlers at once.
form: formname to the page's front matter:::form block with field definitionslazysite/forms/formname.conf pointing at a handler IDlazysite/forms/handlers.conflazysite/forms/smtp.confThe form: key enables form processing for the page and names the form.
The name must be alphanumeric with hyphens and underscores only:
---
title: Contact
form: contact
---
Without form: in front matter, :::form blocks render as an HTML
comment and a warning is logged.
<!-- lazysite: form: key required in front matter -->
Each line defines a field. Fields are separated by pipe characters:
name attribute (alphanumeric, hyphens, underscores)The submit keyword as field name renders a submit button with the
label as button text.
requiredrequired attribute and shows
an asterisk after the label.
optionalemailtype="email" input with browser validation.
textarea<textarea> instead of a single-line input.
select:opt1,opt2,opt3<select> dropdown with the given options.
radio:opt1,opt2,opt3checklist:opt1,opt2checklist-qty:opt1,opt2opt1=60; opt2=40. An option ticked with no quantity keeps its bare label.
Option labels containing a comma must be quoted - select:"Smith, John",Jones.
Spaces and brackets need no quoting. A list rule takes the rest of the line, so
put it last among a field's rules.
max:Nmaxlength attribute. Default is 1000 if not specified.
---
title: Contact
form: contact
---
## Get in touch
<!-- lazysite: form: key required in front matter -->
lazysite/forms/FORMNAME.conf lists the handlers that receive
submissions:
targets:
- handler: email-delivery
- handler: local-storage
Each entry references a handler by id. All listed handlers are
dispatched on each submission. If one handler fails, the others still
run.
lazysite/forms/handlers.conf defines the handlers:
handlers:
- id: email-delivery
type: smtp
name: Email delivery
enabled: true
from: webforms@example.com
to: admin@example.com
subject_prefix: "[Contact] "
- id: local-storage
type: file
name: Local file storage
enabled: true
path: lazysite/forms/submissions
- id: slack-notify
type: webhook
name: Slack notification
enabled: false
url: https://hooks.slack.com/services/XXX
format: slack
Handlers with enabled: false are skipped.
smtpfrom, to, and
subject_prefix. Connection settings come from
lazysite/forms/smtp.conf. See Forms SMTP.
filepath. Useful for logging,
offline processing, or testing without email infrastructure.
webhookformat: json for a plain JSON
body, or format: slack for Slack-compatible {"text": "..."}.
dbfields: mapping. See
Data tables.
tabledb insert and the file store together: the row lands in the
declared table and the JSONL submissions store is written alongside, so
the Submissions page, exports and bulk delete keep working. A submission
the table's types refuse leaves no row - the visitor is told the
submission failed, and the stored copy is marked _row_refused. See
Data tables.
A partner agent binding a form over MCP, WebDAV or the control API may
name a handler by id, or pass an inline target for a delivery the
operator has not pre-defined - {type: webhook|api, url: ...} or
{type: file, path: ...}.
db and table are handler-only: they cannot be set as an inline
target. The inline route exists to reach somewhere the operator has not
defined, and a form writing rows into a declared data table is precisely
what an operator should vet - an inline table target would let any
declared table be named as a destination without them wiring it. To
deliver a form into a table, an operator defines a db or table
handler in handlers.conf and the agent binds to its id.
Only /cgi-bin/form-handler.pl accepts a submission. The generated form carries
it in its action attribute, so a visitor's browser does the right thing without
anyone thinking about it.
It matters when you are testing a form by hand, or driving it from a script.
POSTing the fields to the page URL instead - /contact, say - returns
HTTP 200 and the rendered page, and stores nothing. A 200 with a page body is
indistinguishable from success to anything checking status codes, so a test can
report a form working when nothing was ever stored.
Confirm a submission by what the store holds, not by the status code: form_list
shows the row count, and read_form_submissions reads the rows back.
Once a submission is stored, the site raises a notification. You do not need to poll for one, and nothing is required to make this happen - it is automatic.
The notification appears in the manager's notification bell, which is the
record. Where the notify-xmpp plugin is configured, the same notice is also
delivered as a chat message, so you hear about it without being logged in.
The message names the form and when it arrived. It deliberately carries none of the submitted content, so it is safe to receive on a phone in a public place. To see what was submitted, follow it up with the actions in the next section.
Delivery is best-effort by design: the chat send is time-boxed so a slow or unreachable server can never delay the visitor's submission, and if it fails the stored notice is still there. The bell is authoritative; chat is a convenience.
Quarantined submissions do not notify. A submission held back by the spam controls is recorded but does not raise a notice, so a spam run cannot flood you.
Chat delivery needs the notify-xmpp plugin enabled (the manager's Plugins page,
or the plugins: list in lazysite.conf) and a client config at
lazysite/notify-xmpp.conf:
jid: site-bot@example.com # required - the account the site sends AS
password: secret # required
to: you@example.com # required - an individual JID, or a room
host: xmpp.example.com # optional - defaults to the jid's domain
port: 5222 # optional - defaults to 5222
tls: 1 # optional - defaults to on
muc: 0 # set 1 when `to` is a group chat room
nick: My-Site # optional - defaults to the site name
All three of jid, password and to must be present or delivery is skipped
silently. One client and one recipient per site; use a room (muc: 1) when
several people should see the notices.
The connector needs Net::XMPP - on Debian, the libnet-xmpp-perl package.
A form with a file handler writes each submission to a store under
lazysite/forms/submissions/<name>.jsonl. Two actions read it, and both need
the read_submissions capability - a deliberate least-privilege grant that
permits reading submissions without permitting any edit to forms or
handlers.
form_list (MCP) / form-list (control API)row_count - the number of submissions. Counts only; it never returns
content. A form that reports a count is a form whose content you can read with
the action below, given the grant.
read_form_submissions (MCP) / form-submissions (control API)_id per row, most
recent 500. Values are the raw submitted data and should be treated as
untrusted.
If those actions are not offered to your account, the capability has not been granted rather than the feature being absent. Ask the operator.
A form is the supported way for an anonymous browser to send something to a lazysite site. It needs no sign-in, no credential and no software, and it works on a phone.
That extends further than a contact form. A field declared textarea accepts a
long passage of typed or pasted text, with the maximum set per field
(max:20000), so a transcript, a questionnaire answer or a pasted document
arrives intact. Where a file is easier than a paste, a handler may accept
uploads with per-file and per-submission limits - see
Form helpers for upload_max_kb and upload_max_files.
Submissions are append-only and each field is validated on its own terms, which suits capture and does not suit a large document being edited repeatedly. Treat the store as a capture surface: material that matters should be read out and kept wherever your records are managed.
Forms submit via fetch() (AJAX). On success, the form is replaced
with a success message. On error, an error message appears below the
submit button. The page does not reload.
The form status area uses aria-live="polite" for screen reader
accessibility.
All security measures are automatic - no configuration needed:
Honeypot field - a hidden field (_hp) that must be empty.
Bots that fill all fields are rejected.
HMAC timestamp token - submissions must arrive between 3 seconds and 2 hours after the form was rendered. Prevents replay attacks.
Rate limiting - maximum 5 submissions per IP per hour. Uses
DB_File for persistence.
The ceiling is per form: rate_limit: 200 in the form's config raises it, and rate_limit: off removes it. Five an hour is right for a public contact form and wrong for an authenticated team working through a set of data-entry pages from one office address. Set it only on a form whose access is already controlled another way - the limit is what protects an open form from being used as a relay.
Header injection prevention - CR/LF characters stripped from all fields.
The HMAC secret is auto-generated and stored at
lazysite/forms/.secret (chmod 0660 - owner + group, never world,
so both the site user's tools and the web-server CGI can use it
whichever minted it first).
The installer places both plugins under {docroot}/../plugins/
and symlinks form-handler.pl into cgi-bin/ so Apache can route
/cgi-bin/form-handler.pl at it. form-smtp.pl does not need
cgi-bin/ presence - it is invoked as a subprocess by
form-handler.pl.
For manual installation:
mkdir -p /path/to/plugins
cp plugins/form-handler.pl plugins/form-smtp.pl /path/to/plugins/
chmod 755 /path/to/plugins/form-handler.pl /path/to/plugins/form-smtp.pl
ln -s /path/to/plugins/form-handler.pl /path/to/cgi-bin/form-handler.pl