diff options
author | Thomas Arendsen Hein <thomas@intevation.de> | 2007-02-17 10:31:19 (GMT) |
---|---|---|
committer | Thomas Arendsen Hein <thomas@intevation.de> | 2007-02-17 10:31:19 (GMT) |
commit | 310a17956ab23065d368ff197ad15e0b313e58e5 (patch) | |
tree | b7fd7c04c513527fd95c0ed5e08b07fc6e3b3405 | |
parent | 47cffcdd2f9686792ccde3cfe6671e68c4680636 (diff) | |
download | kolab-conf-310a17956ab23065d368ff197ad15e0b313e58e5.tar.gz |
Keep the original @local_domains_acl/$mydomain example in amavisd.conf.template.in
I thought about just removing the "$mydomain and its subdomains" comment,
but having an additional example isn't bad.
-rw-r--r-- | conf/templates/amavisd.conf.template.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/templates/amavisd.conf.template.in b/conf/templates/amavisd.conf.template.in index 31b6fd6..bb80fb6 100644 --- a/conf/templates/amavisd.conf.template.in +++ b/conf/templates/amavisd.conf.template.in @@ -178,11 +178,12 @@ $child_timeout=5*60; # abort child if it does not complete each task in n sec # a union of domains specified in: $mydestination, $virtual_alias_domains, # $virtual_mailbox_domains, and $relay_domains. # -@local_domains_acl = ( ".@@@postfix-mydestination|join(", ".)@@@" ); # $mydomain and its subdomains +# @local_domains_acl = ( ".$mydomain" ); # $mydomain and its subdomains # @local_domains_acl = qw(); # default is empty, no recipient treated as local # @local_domains_acl = qw( .example.com ); # @local_domains_acl = qw( .example.com !host.sub.example.net .sub.example.net ); # @local_domains_acl = ( ".$mydomain", '.example.com', 'sub.example.net' ); +@local_domains_acl = ( ".@@@postfix-mydestination|join(", ".)@@@" ); # or alternatively(A), using a Perl hash lookup table, which may be assigned # directly, or read from a file, one domain per line; comments and empty lines |