~ubuntu-branches/debian/stretch/greylistd/stretch

« back to all changes in this revision

Viewing changes to doc/examples/whitelist-hosts

  • Committer: Bazaar Package Importer
  • Author(s): Tor Slettnes
  • Date: 2005-03-14 14:54:44 UTC
  • mfrom: (1.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050314145444-xsq9gsffv0kgbq1j
Tags: 0.8.3
* Changed value of "false" from -1 to 1 in 'config' DebConf module.
  per report from Laurent Fousse <laurent@komite.net>.  This is required
  for POSIX compliance, and "ash"/"dash".  Closes: #296266.
* Added 'except SystemExit' statement in main loop to avoid a
  "Fatal Event" message on exit.  Closes: #295898.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
*.debian.org
2
 
*.amazon.com
3
 
^..crmxc..\.comcast\.net
4
 
10.0.0.0/8
 
1
########################################################################
 
2
### FILE:       /etc/greylistd/whitelist-hosts
 
3
### PURPOSE:    List of hosts from which we do not want to greylist mail
 
4
########################################################################
 
5
### 
 
6
### This file is not actually read by greylistd, but is normally referenced
 
7
### from the Mail Transport Agent (MTA) that invokes greylistd.  As such,
 
8
### the format of the entries is MTA-dependent.
 
9
### 
 
10
### Most MTAs support at least the following:
 
11
###  - A single IPv4 address, consisting of 4 octets (0-255):  192.168.0.1
 
12
###  - Between one and three octets, indicating an IPv4 network:  192.168.0
 
13
###  - A single host name:  gluck.debian.org
 
14
###  - Wildcards in a host name:  *.debian.org
 
15
###
 
16
### Exim 4 supports much more elaborate syntax, including regular expressions
 
17
### starting with "^" (e.g.: ^..crm[hx]c..\.comcast\.net), IP addresses with
 
18
### netmasks (10.0.0.0/8, 10.0.0.0/255.0.0.0), etc.  For full detail, refer to
 
19
### section 10.8 in the Exim 4 "spec.txt" file.
 
20
###
 
21
### !!! IMPORTANT !!!
 
22
### If you use host names in this list, beware that lookup failures will
 
23
### cause your MTA to temporarily reject the mail - indefinitely.  For that
 
24
### reason, it is generally better to use IP addresses than host names.
 
25
 
 
26
#*.debian.org
 
27
#*.amazon.com
 
28
#^..crm[hx]c..\.comcast\.net
 
29
#10.0.0.0/8
 
30