# Key configuration file for eformmail. # Where must contents of form be sent to? # Contents of this field is copied straight to the To field of the email. # This is a required field. to = email@somehost.net # In case the form contains a field where users can supply an email # address, list that field here. # The contents of that field will be used in the From field of the email. from field name = from # In case users don't have to supply an email address or when the # email address is empty, use the contents of this field for the From # header field of the email. # This is a required field and must be an email address. from = formfeedback@localhost # In case the form contains a field which can be used as the subject # of the email message, list that field here. # The contents of that field will be used in the Subject field of the email. subject field name = subject # If subject prefix is set, it is prepended to the subject. # This helps to identify messages send by eformmail. subject prefix = [feedback] # In case the form does not contain a subject, or if the subject is # left empty, the contents of the following field is used in the # Subject field of the email. # This is a required field. subject = (No Subject) # Transformation of the body. Input is XML, so the transformation is # probably an XSLT processor. The current directory is the eformmail # directory, so style sheets do not have to be prefixed with the full # path. # It is considered an error if the program exits with any error code # then 0. #transform = /usr/local/bin/Xalan - test.xsl # Form fields can be validated as well. # A validation line is of the form: # validate = type | /regular-expression/ # # Recognized types are: double, email, integer, nonNegativeInteger, url # # Examples: # validate from = email # # Or # # validate number = /[0-9]+/ # validate from = email validate subject = /.+/ # Spam protection: any submission where a field matches the provided # regular expression, will be silently ignored. The spammer will be # given no indication that his submission has appeared in a black # hole. spam form = /http:\/\// spam subject = /http:\/\// # If sending the email was successful, the user is redirect to this page. # The contents of this field must be a full URL, a partial reference # will not work. success redirect = http://localhost/success.html # If any other error occurs (for example validation failed or the # email could not be sent) the user is redirect to this page. # The contents of this field must be a full URL, a partial reference # will not work. error redirect = http://localhost/key_error.html