Sat, 06 Oct 2012 16:24:01 +0200
Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):
undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'
...yet to be patched.
michael@7 | 1 | ## |
michael@7 | 2 | ## mailman-apache.conf -- Apache Configuration for Mailman |
michael@7 | 3 | ## |
michael@7 | 4 | |
michael@7 | 5 | <VirtualHost host.example.com> |
michael@7 | 6 | # server information |
michael@7 | 7 | ServerName host.example.com |
michael@7 | 8 | ServerAdmin hostmaster@host.example.com |
michael@7 | 9 | ServerSignature on |
michael@7 | 10 | |
michael@7 | 11 | # document area |
michael@7 | 12 | DocumentRoot @l_prefix@/libexec/mailman/htdocs/ |
michael@7 | 13 | <Directory "@l_prefix@/libexec/mailman/htdocs"> |
michael@7 | 14 | Options FollowSymLinks |
michael@7 | 15 | AllowOverride None |
michael@7 | 16 | Order allow,deny |
michael@7 | 17 | Allow from all |
michael@7 | 18 | </Directory> |
michael@7 | 19 | |
michael@7 | 20 | # pipermail area |
michael@7 | 21 | Alias /mailman/pipermail/ @l_prefix@/var/mailman/archives/public/ |
michael@7 | 22 | <Directory "@l_prefix@/var/mailman/archives/public"> |
michael@7 | 23 | Options FollowSymLinks |
michael@7 | 24 | AllowOverride None |
michael@7 | 25 | Order allow,deny |
michael@7 | 26 | Allow from all |
michael@7 | 27 | </Directory> |
michael@7 | 28 | |
michael@7 | 29 | # icon area |
michael@7 | 30 | Alias /mailman/icons/ @l_prefix@/libexec/mailman/icons/ |
michael@7 | 31 | <Directory "@l_prefix@/libexec/mailman/icons"> |
michael@7 | 32 | Options FollowSymLinks |
michael@7 | 33 | AllowOverride None |
michael@7 | 34 | Order allow,deny |
michael@7 | 35 | Allow from all |
michael@7 | 36 | </Directory> |
michael@7 | 37 | |
michael@7 | 38 | # executable area |
michael@7 | 39 | ScriptAlias /mailman/ @l_prefix@/libexec/mailman/cgi-bin/ |
michael@7 | 40 | <Directory "@l_prefix@/libexec/mailman/cgi-bin"> |
michael@7 | 41 | Options FollowSymLinks ExecCGI |
michael@7 | 42 | AllowOverride None |
michael@7 | 43 | Order allow,deny |
michael@7 | 44 | Allow from all |
michael@7 | 45 | </Directory> |
michael@7 | 46 | |
michael@7 | 47 | # logging |
michael@7 | 48 | CustomLog @l_prefix@/var/mailman/logs/http-access.log common |
michael@7 | 49 | ErrorLog @l_prefix@/var/mailman/logs/http-error.log |
michael@7 | 50 | LogLevel warn |
michael@7 | 51 | </VirtualHost> |
michael@7 | 52 |