Skip to content

Uncanny Automator — Settings

Open Automator → WPsigner. If the Automator menu is missing, use Settings → WPsigner Automator. The same page is linked from the plugin row (Settings).

Capability required: manage_options.


OptionDefaultWhat it controls
Include signing URLs in tokensOnSIGNING_URL and per-signer URLs on create/add-signer
Include field values in tokensOnDOCUMENT_FIELDS JSON and FIELD_* tokens
Max documents created per hour60Automated create action (1–500)
Max signers per create action5Signer slots processed on create (1–10)

Uncheck signing URLs when recipes only need names, emails, and document IDs. Automator logs often persist token values.

Uncheck field values if templates collect personal data you do not want in Automator logs.


Settings feed these filters (priority 5). Your code can still force a stricter value:

add_filter('wpsua_include_signing_url', '__return_false');
add_filter('wpsua_max_creates_per_hour', function ($max) {
return 20;
});
FilterNotes
wpsua_include_signing_urlReceives current include flag
wpsua_include_field_valuesSame for field tokens
wpsua_max_creates_per_hourSettings value unless another filter runs later
wpsua_max_signersClamped 1–10 in the create bridge
wpsua_source_map_maxTemplate origin map size (default 2000)

Option / transientPurpose
wpsua_settingsThis screen
wpsua_document_sourcesDocument ID → template ID map
wpsua_rl_*Short send/remind cooldowns
wpsua_creates_YYYYMMDDHHHourly create counter

Uninstall deletes the settings option, the source map, and wpsua_* transients. It does not delete WPsigner documents or Automator recipes.