Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dirk Dankhoff
ISPConfig 3
Commits
b9fcb363
Commit
b9fcb363
authored
Feb 27, 2009
by
tbrehm
Browse files
- Changed amavisd default values
- fixed a php notice in app.inc.php
parent
aebdd8ec
Changes
3
Show whitespace changes
Inline
Side-by-side
install/tpl/amavisd_user_config.master
View file @
b9fcb363
...
...
@@ -47,7 +47,7 @@ $sql_select_white_black_list = 'SELECT wb FROM spamfilter_wblist'.
$final_virus_destiny = D_BOUNCE;
$final_spam_destiny = D_DISCARD;
$final_banned_destiny = D_BOUNCE;
$final_bad_header_destiny = D_
DISCARD
;
$final_bad_header_destiny = D_
PASS
;
# Default settings, we st this very high to not filter aut emails accidently
$sa_spam_subject_tag = '***SPAM*** ';
...
...
install/tpl/fedora_amavisd_conf.master
View file @
b9fcb363
...
...
@@ -775,7 +775,7 @@ $sql_select_white_black_list = 'SELECT wb FROM spamfilter_wblist'.
$final_virus_destiny = D_BOUNCE;
$final_spam_destiny = D_DISCARD;
$final_banned_destiny = D_BOUNCE;
$final_bad_header_destiny = D_
DISCARD
;
$final_bad_header_destiny = D_
PASS
;
#
# Disable spam and virus notifications for the admin user.
...
...
server/lib/app.inc.php
View file @
b9fcb363
...
...
@@ -68,7 +68,7 @@ class app {
$cl
=
explode
(
','
,
$classes
);
if
(
is_array
(
$cl
))
{
foreach
(
$cl
as
$classname
)
{
if
(
!
is_object
(
$this
->
$classname
))
{
if
(
!
@
is_object
(
$this
->
$classname
))
{
if
(
is_file
(
$conf
[
'classpath'
]
.
"/"
.
$classname
.
".inc.php"
)
&&
!
is_link
(
$conf
[
'classpath'
]
.
"/"
.
$classname
.
".inc.php"
))
{
include_once
(
$conf
[
'classpath'
]
.
"/"
.
$classname
.
".inc.php"
);
$this
->
$classname
=
new
$classname
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment