23 lines
540 B
INI
23 lines
540 B
INI
;<?php die(); ?>
|
||
|
||
[general]
|
||
; base URL – do not close with '/'!
|
||
site_url = https://www.example.com
|
||
; email address to send emails to
|
||
notificationAddress = mail@example.com
|
||
; some string to salt subscribers' email addresses for a non-recreatable md5 hash
|
||
uniqueKey = "some string"
|
||
; status code returned after any PHP script exits gracefully
|
||
statusCode = "HTTP/1.1 303 See Other"
|
||
|
||
[smtp]
|
||
host = mail.example.com
|
||
port = 587
|
||
username = smtp_user
|
||
password = secretpassword
|
||
auth = TRUE
|
||
|
||
[db]
|
||
type = sqlite
|
||
sqlite_file = newsletter.sqlite
|