| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- ##
- ## fsl.dbmail -- OSSP fsl configuration
- ##
- ident (dbmail/imap4d)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-imapd.log",
- perm=0600
- )
- }
- };
- ident (dbmail/lmtpd)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-lmtpd.log",
- perm=0600
- )
- }
- };
- ident (dbmail/pop3d)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-pop3d.log",
- perm=0600
- )
- }
- };
- ident (dbmail/timsieved)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-timsieved.log",
- perm=0600
- )
- }
- };
- ident (dbmail/smtp)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-smtp.log",
- perm=0600
- )
- }
- };
- ident (dbmail/sievecmd)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-sievecmd.log",
- perm=0600
- )
- }
- };
- ident (dbmail/adduser)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-adduser.log",
- perm=0600
- )
- }
- };
- ident (dbmail/maintenance)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-maint.log",
- perm=0600
- )
- }
- };
- ident (dbmail/.+)/.+ q{
- prefix(
- prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
- )
- -> {
- debug: file(
- path="@l_prefix@/var/dbmail/log/dbmail-misc.log",
- perm=0600
- )
- }
- };
|