summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README7
1 files changed, 6 insertions, 1 deletions
diff --git a/README b/README
index fe82840..2eee44c 100644
--- a/README
+++ b/README
@@ -45,6 +45,11 @@ Once removed, an alias stops working; mail received by the mail server
for that alias is simply undeliverable at the SMTP level, and "bounces"
back to the originator.
+For each alias, two supplementary aliases are also created in which
+the dashes are replaced, respectively with underscores and periods.
+That is to say, if Tamarind creates the alias 123-456-7890,
+it also creates 123_456_7890 as well as 123.456.7890.
+
2. ARCHITECTURE
Tamarind is a CGI program written in the TXR language, running under
@@ -233,7 +238,7 @@ filtering. Under the acl_check_rcpt: section in your Exim configuration, add
the following.
accept
- recipients = ^\\d\\d\\d-\\d\\d\\d-\\d\\d\\d\\d@YOUR_DOMAIN\$
+ recipients = ^\\d\\d\\d[-._]\\d\\d\\d[-._]\\d\\d\\d\\d@YOUR_DOMAIN\$
Substitute the mail domain for YOUR_DOMAIN!