Sat, 03 Oct 2009 16:18:52 +0200
Update version, adjust corresponding buildconf, and correct logic.
1: Make minor corrections and improvements to scripts patch logic.
2: Upgrade to most recent stable release version 3.0.2.
3: Force selection of a single db backend, as multiple ones never
were supported (changing 'with_db<end>' identifiers accordingly.)
4: Unfortunately add gawk requirement although only partly needed.
5: Add openssl::with_threads requirement to solve strange and hard
to debug problems on Solaris leading to connection failures:
'host-dir JobId 0: Error: openssl.c:86 Connect failure: ERR=error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number'
and
'host-dir JobId 40: Fatal error: TLS negotiation failed with FD at "back1.host.com:9102"'
michael@148 | 1 | ## |
michael@148 | 2 | ## fsl.dovecot -- OSSP fsl configuration |
michael@148 | 3 | ## |
michael@148 | 4 | |
michael@148 | 5 | ident (dovecot.*)/.+ q{ |
michael@148 | 6 | prefix( |
michael@148 | 7 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@148 | 8 | ) |
michael@148 | 9 | -> { |
michael@148 | 10 | debug: file( |
michael@148 | 11 | path="@l_prefix@/var/dovecot/log/dovecot.log", |
michael@148 | 12 | perm=0600 |
michael@148 | 13 | ) |
michael@148 | 14 | } |
michael@148 | 15 | }; |
michael@148 | 16 | |
michael@148 | 17 | ident (deliver(.*))/.+ q{ |
michael@148 | 18 | prefix( |
michael@148 | 19 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@148 | 20 | ) |
michael@148 | 21 | -> { |
michael@148 | 22 | debug: file( |
michael@148 | 23 | path="@l_prefix@/var/dovecot/log/deliver.log", |
michael@148 | 24 | perm=0600 |
michael@148 | 25 | ) |
michael@148 | 26 | } |
michael@148 | 27 | }; |
michael@148 | 28 |