# Formulate
A backend server application that listens for web form submissions, implemented with the [rocket](https://crates.io/crates/rocket) framework (0.5 release candidate). Minimum supported rust version (MSRV) is 1.65.0.
`formulate` is currently capable of using the host server's (or container's) built-in `sendmail` functionality to send email, after successfully receiving form data.
## Configuration
Configuration is currenly very simple. Two email addresses, a `sending_email` and a `destination_email` are required. These email addresses may be set in the `Rocket.toml` configuration file (e.g. [Rocket.toml.template](https://code.orbitsolutions.dev/orb-it-solutions/formulate/src/branch/master/Rocket.toml.template)).
Alternatively, two environment variables: `FORM_SUBMISSION_destination_email` and `FORM_SUBMISSION_sending_email` may be used to provide the values. Configuration overriding follows that of the Rocket framework, so if both the config file and environment variables are set, the environment variables take precedence.
`destination_email` should be the email address you would like the form submissions sent to.
`sending_email` is the address the emails will come from once delivered to your inbox. It is meant to be a stable address which you can use to filter your form submission emails. This "sending email" will be used in the email's *'From:'* header.
Any replies will be set to the *'Reply-To'* address, which will be the email address set by the form's user.
### SPAM blocking
Rudimentary web form spam blocking is available through the optional `spam_domains` setting. If present, this should be an [array](https://toml.io/en/v1.0.0#array) of strings formatted as domain names. The strings listed will be searched for in the form's message body and—if any match is found—result in form processing ending early. An error will also be given, with a message indicating the form submission is suspected spam.
An example of the list is provided in [Rocket.toml.template](https://code.orbitsolutions.dev/orb-it-solutions/formulate/src/branch/master/Rocket.toml.template), and the values here are free to be used by anyone.
- This feature can also be enabled using the `FORM_SUBMISSION_spam_domains` environment variable. e.g. `FORM_SUBMISSION_spam_domains=['acme.com', 'mega.lo.mania']`
### Relaying email
Another pair of configuration variables, `mail_relay_host` and `mail_relay_port`, are optional. These are used if *relaying* emails via the SMTP protocol is desired.
`mail_relay_host` defines the hostname for the relaying mail server.
- May also be set using the `FORM_SUBMISSION_mail_relay_host` environment variable.
`mail_relay_port` defaults to port **25** if not set, and allows users to choose an alternate port which the mail relay is listening on.
- May also be set using the `FORM_SUBMISSION_mail_relay_port` environment variable.
## Accepted Form Fields
It accepts the following parameters, most of which are required:
- *`email`*: The email address of the form sender. This will be set as the 'Reply-To' address in the sent email. Can also be submitted as *`e-mail`*.
- *`full_name`*: The name the form sender would like to use in the sent email. This will be used as the email sender name. Can also be submitted as *`fullname`*.
- *`from_site`*: The URL of the site from which the form is submitted. May also be submitted as *`site`*, *`website`*, or *`location`*. Alternatively, for url-encoded form submissions, this can be set to the URL of the page the user should be redirected to if the form was submitted successfully. This form field may be hidden and set via JavaScript before submission.
- *`message`*: The message body of the sent email.
- *`subject`*: (**optional**) The title of the email. A default subject will be used if this is not provided.
- *`redirect`*: (**optional**) Boolean value used to indicate if user wants ***non-JSON submissions*** to be redirected to `from_site` URL.
After passing the email on to `sendmail`, `formulate` responds with appropriate HTTP status codes to indicate success or failure.
Successful URL-encoded or Multi-part submissions will be redirected to the URL defined in the `from_site` field when the `redirect` field is set to true. If `redirect` is omitted, or false, a message with an appropriate HTTP status is provided. On failure, a user readable error is provided, along with the appropriate HTTP status.
JSON form submissions receive a JSON response with appropriate success or failure messages and HTTP statuses.
## Deployment
A `Dockerfile` is included in the git repository and may be used as a starting point for containerized deployments on Linux.
An rc script is also provided to aid in deployment on FreeBSD platforms.
## Dependencies
A description of the project dependencies and some reasoning behind why they were added can be found in [README.dependencies](https://code.orbitsolutions.dev/orb-it-solutions/formulate/src/branch/master/README.dependencies.md).