#!/usr/bin/perl -w use strict; use warnings; # /usr/local/etc/aliassync.conf.default # default config for aliassync # location of mailstore our $BaseDirectory = "/var/CommuniGate"; # unless in a cluster scenario, the mailstore and the LDAP directory reside on # the same machine our $LdapUrl = "localhost"; # becomes "postmaster@" if unset our $BindDn; # set this! our $Password; # maximum entries returned per ldap search # set to undef or 0 to not to use paged results control at all our $PageSize; # syslog facility our $Facility = "LOG_MAIL"; # don't place the lockfile on a world writeable directory like /tmp or /var/tmp! our $LockFile = "/var/run/aliassync.lock"; # change these if you know what you are doing our $MailAttribute = "mail"; our $Filter = "(objectclass=CommuniGateAccount)"; # don't forget this 1;