From 162783ff745b828191f4dc8788b6d2c8291d74c0 Mon Sep 17 00:00:00 2001 From: eclipse Date: Sat, 8 Mar 2025 12:20:03 +0100 Subject: [PATCH] created example config.ini --- config.ini.example | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 config.ini.example diff --git a/config.ini.example b/config.ini.example new file mode 100644 index 0000000..06fdcb2 --- /dev/null +++ b/config.ini.example @@ -0,0 +1,28 @@ +; + +[hash] +uniqueKey = some string + + +[smtp] +host = some.mail.host +port = 587 +username = smpt_user +password = smtp_pass +auth = TRUE + + +[db] +sqlite[dsn] = sqlite:path/to/db.sqlite + +;mysql[dsn] = +;mysql[host] = +;mysql[port] = +;mysql[username] = +;mysql[password] = + +[CalDAV] +server_url = https://some.caldav.host/path/to/dav.php +cal_url = https://some.caldav.host/path/to/dav.php/path/to/calendar +cal_user = caldav_user +cal_pass = caldav_pass \ No newline at end of file