Sat, 24 Mar 2012 21:40:49 +0100
Introduce many changes to the buildconf and source code including:
(01) clean up, update, and partially update default config files,
(02) seems that Melware is unable to perform release engineering so
update chan_capi to new daily snapshot to solve echo problems,
(03) correct Asterisk inadequate hard coded gmime version check,
(04) force postgresql pthreads linkage to solve build problem,
(05) remove buggy hard coded LibXML configure definitions,
(06) remove local architecture specification to allow GCC
internal logic to determine proper CPU type instead,
(07) remove vendor sound install target causing uncontrolled
downloads and non RPM managed file installation,
(08) solve long outstanding bug in tcptls causing Asterisk
to ignore any intermediate CA certificate signatures,
(09) back out Digium engineering team's bright idea of replacing the
very portable and pervasive POSIX rand(1) with ast_random(), and
then not even implementing it causing all references to fail in
platforms not providing the very new POSIX.1-2008 mkdtemp(3)
function only distributed by BSD and some Linux,
(10) withdraw advanced linker symbol manipulations from SVR5 builds
until either Binutils supports hybrid versioned and anonymous
linker scripts or GCC stops hard coding versioned linker scripts,
(11) correct missing library linkage, some tailored to a specific OS,
(12) remove outdated logic for the no longer distributed gmime-config(1),
(13) remove local gmime buildconf hacks now that Asterisk has corrected
their own build configuration to almost portably support gmime,
(14) solve build problems relating to undetected LibXML paths,
(15) correct erroneous out of tree include definitions,
(16) improve some variable and comment naming,
(17) simplify sound language path hierarchy creation,
and correct australian english installation logic.
michael@191 | 1 | ## |
michael@191 | 2 | ## @l_prefix@/etc/spamassassin/local.cf -- site-wide defaults for SpamAssassin |
michael@191 | 3 | ## (see 'perldoc Mail::SpamAssassin::Conf' for details of what can be tweaked) |
michael@191 | 4 | ## |
michael@191 | 5 | |
michael@191 | 6 | # configuration branding |
michael@191 | 7 | version_tag openpkg |
michael@191 | 8 | |
michael@191 | 9 | # required score for mail to be considered as spam |
michael@191 | 10 | required_score 5.0 |
michael@191 | 11 | |
michael@191 | 12 | # whitelist and blacklist addresses |
michael@191 | 13 | #whitelist_from *@example.com |
michael@191 | 14 | #whitelist_to *@example.com |
michael@191 | 15 | |
michael@192 | 16 | # use a terse header instead of X-Spam-Report |
michael@192 | 17 | remove_header all Report |
michael@192 | 18 | |
michael@192 | 19 | # encapsulate spam in an attachment |
michael@192 | 20 | report_safe 0 |
michael@192 | 21 | |
michael@192 | 22 | # enable the Bayes system |
michael@192 | 23 | use_bayes 1 |
michael@192 | 24 | |
michael@192 | 25 | # enable Bayes autolearning |
michael@192 | 26 | bayes_auto_learn 1 |
michael@192 | 27 | |
michael@192 | 28 | # enable or disable network checks |
michael@192 | 29 | #skip_rbl_checks 1 |
michael@192 | 30 | #use_razor2 1 |
michael@192 | 31 | #use_dcc 1 |
michael@192 | 32 | #use_pyzor 1 |
michael@192 | 33 | |
michael@212 | 34 | # DCC/Razor/Pyzor parameters |
michael@212 | 35 | #dcc_body_max 999999 |
michael@212 | 36 | #dcc_fuz1_max 999999 |
michael@212 | 37 | #dcc_fuz2_max 999999 |
michael@212 | 38 | #dcc_timeout 8 |
michael@212 | 39 | #dcc_home <homepath> |
michael@212 | 40 | #dcc_dccifd_path <socketpath> |
michael@212 | 41 | #dcc_path <clientpath> |
michael@212 | 42 | #dcc_options <[0-9A-Za-z ,._/-]> |
michael@212 | 43 | #dccifd_options <[0-9A-Za-z ,._/-]> |
michael@212 | 44 | #razor_timeout 5 |
michael@212 | 45 | #razor_config <filename> |
michael@212 | 46 | #pyzor_max 5 |
michael@212 | 47 | #pyzor_timeout 3.5 |
michael@212 | 48 | #pyzor_options --homedir @l_prefix@/etc/spamassassin |
michael@212 | 49 | #pyzor_path @l_prefix@/bin/pyzor |
michael@212 | 50 | |
michael@192 | 51 | # mail using languages used in these country codes will not |
michael@192 | 52 | # be marked as being possibly spam in a foreign language. |
michael@192 | 53 | #ok_languages all |
michael@192 | 54 | |
michael@192 | 55 | # mail using locales used in these country codes will not |
michael@192 | 56 | # be marked as being possibly spam in a foreign language. |
michael@192 | 57 | #ok_locales all |
michael@192 | 58 |