[Rt-commit] r3221 - in rt/branches/3.5-TESTING: . etc
pdh at bestpractical.com
pdh at bestpractical.com
Thu Jun 16 23:37:59 EDT 2005
Author: pdh
Date: Thu Jun 16 23:37:58 2005
New Revision: 3221
Modified:
rt/branches/3.5-TESTING/UPGRADING
rt/branches/3.5-TESTING/etc/RT_Config.pm.in
Log:
Default value for $RedistributeAutoGeneratedMessages is now
"privileged".
Modified: rt/branches/3.5-TESTING/UPGRADING
==============================================================================
--- rt/branches/3.5-TESTING/UPGRADING (original)
+++ rt/branches/3.5-TESTING/UPGRADING Thu Jun 16 23:37:58 2005
@@ -16,6 +16,14 @@
*******
+UPGRADING FROM 3.5.1 and earlier - Changes:
+
+The default for $RedistributeAutoGeneratedMessages has changed to
+'privileged', to make out-of-the-box installations more resistant
+to mail loops. If you rely on the old default of redistributing to
+all watchers, you'll need to set it explicitly now.
+
+
UPGRADING FROM 3.3.14 and earlier - Changes:
The "ModifyObjectCustomFieldValues" right name was too long. It's been changed to
Modified: rt/branches/3.5-TESTING/etc/RT_Config.pm.in
==============================================================================
--- rt/branches/3.5-TESTING/etc/RT_Config.pm.in (original)
+++ rt/branches/3.5-TESTING/etc/RT_Config.pm.in Thu Jun 16 23:37:58 2005
@@ -335,12 +335,12 @@
Set($TrustHTMLAttachments , undef);
# Should RT redistribute correspondence that it identifies as
-# machine generated? A true value (the default) will do so, setting
-# this to '0' will cause no such messages to be redistributed.
-# You can also use 'privileged', which will redistribute only to
-# privileged users. This is seful if you get malformed bounces caused by
-# autocreated requestors with bogus addresses.
-Set($RedistributeAutoGeneratedMessages, 1);
+# machine generated? A true value will do so; setting this to '0'
+# will cause no such messages to be redistributed.
+# You can also use 'privileged' (the default), which will redistribute
+# only to privileged users. This helps to protect against malformed
+# bounces and loops caused by autocreated requestors with bogus addresses.
+Set($RedistributeAutoGeneratedMessages, 'privileged');
# If PreferRichText is set to a true value, RT will show HTML/Rich text
# messages in preference to their plaintext alternatives. RT "scrubs" the
More information about the Rt-commit
mailing list