#lang racket (provide signin-key-time session-time site-title email-server email-port email-user email-password email-from) (define signin-key-time 3600) (define session-time 3600) (define site-title "Benji's Voting Site") (error "please fill out the email entries in config.rkt and then comment out this line") (define email-server "smtp.example.org") (define email-port 587) (define email-user "noreply@example.org") (define email-password "my super secret password") (define email-from "noreply@example.org")