diff options
author | Camil Staps | 2020-02-03 09:47:21 +0100 |
---|---|---|
committer | Camil Staps | 2020-02-03 09:47:21 +0100 |
commit | 2af4ffce19df7cdb34d4b509a66bc916ffcb88d1 (patch) | |
tree | 481bc542d1298e1bcb3e39c107a22b39f13f0395 /config.sample.php |
Initial commit
Diffstat (limited to 'config.sample.php')
-rw-r--r-- | config.sample.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config.sample.php b/config.sample.php new file mode 100644 index 0000000..556a306 --- /dev/null +++ b/config.sample.php @@ -0,0 +1,14 @@ +<?php +define ('DB_HOST','localhost'); +define ('DB_NAME','databasename'); +define ('DB_USER','username'); +define ('DB_PASS','password'); + +define ('IMAP_HOST','mail.example.org'); +define ('IMAP_USER','agenda@example.org'); +define ('IMAP_PASS','password'); +define ('IMAP_CONN','{'.IMAP_HOST.':993/imap/ssl}INBOX'); + +define ('ICAL_NAME','HebrewTools Events'); +define ('ICAL_VERSION','0.1'); +define ('ICAL_DESC','Conferences, workshops, and other events relevant to scholars of the near east.'); |