You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
568 B
Plaintext
17 lines
568 B
Plaintext
|
|
### rewrite/31_exim4-config_rewriting
|
|
#################################
|
|
|
|
# This rewriting rule is particularly useful for dialup users who
|
|
# don't have their own domain, but could be useful for anyone.
|
|
# It looks up the real address of all local users in a file
|
|
.ifndef NO_EAA_REWRITE_REWRITE
|
|
*@+local_domains "${lookup{${local_part}}lsearch{/etc/email-addresses}\
|
|
{$value}fail}" Ffrs
|
|
# identical rewriting rule for /etc/mailname
|
|
*@ETC_MAILNAME "${lookup{${local_part}}lsearch{/etc/email-addresses}\
|
|
{$value}fail}" Ffrs
|
|
.endif
|
|
|
|
|