X-Git-Url: https://git.cweiske.de/bdrem.git/blobdiff_plain/fe70439784d16f49b4b95befb3df62a62a851174..fabbf07a9aaf9fe66145b84199f8bfbbd1ee0259:/data/bdrem.config.php.dist diff --git a/data/bdrem.config.php.dist b/data/bdrem.config.php.dist index 7af4ed0..6d259e6 100644 --- a/data/bdrem.config.php.dist +++ b/data/bdrem.config.php.dist @@ -15,14 +15,31 @@ $source = array( //column name => event title 'c_birthday' => 'Birthday' ), - //column with name - 'name' => 'c_name' + //column with name, or array with column names + 'name' => array('c_name'), + //sprintf-compatible name formatting instruction + 'nameFormat' => '%s', ) ) ); +//Source: LDAP +$source = array( + 'Ldap', + array( + 'host' => 'ldap.example.org', + 'basedn' => 'ou=adressbuch,dc=example,dc=org', + 'binddn' => 'cn=FIXME,ou=users,dc=example,dc=org', + 'bindpw' => 'FIXME' + ) +); + -$daysBefore = 3; -$daysAfter = 14; +$daysPrev = 3; +$daysNext = 14; $locale = 'de_DE.UTF-8'; + +//email settings +$mail_from = 'birthday@example.org'; +$mail_to = array('a@example.org', 'b@example.org'); ?>