diff options
author | Benji Dial <benji@benjidial.net> | 2024-02-07 19:20:56 -0500 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-02-07 19:20:56 -0500 |
commit | 026d52a710e4c15e555e88c71d027a300d868a26 (patch) | |
tree | 90bbde8c484a84e3fddd2ae0592f000301b1d521 /config.rkt | |
parent | 7b89b4cd703ee1123f01e3ddba0ae24911baf410 (diff) | |
download | voting-site-026d52a710e4c15e555e88c71d027a300d868a26.tar.gz |
put email config in separate file so it can be .gitignored
Diffstat (limited to 'config.rkt')
-rw-r--r-- | config.rkt | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -12,12 +12,5 @@ (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") +(require "email.rkt") |