2

I am using postfix-pcre on debian linux.

When I run postmap /etc/postfix/smtp_header_checks.pcre and postmap pcre:/etc/postfix/smtp_header_checks.pcre, I get the following error:

postmap: warning: smtp_header_checks.pcre, line 1: record is in "key: value" 
format; is this an alias file?

What is wrong? I have this in /etc/postfix/smtp_header_checks.pcre:

# Remove sender's IP address information
/^Received: .*/ IGNORE
/^X-Originating-IP:/ IGNORE
Mike Pennington
  • 8,266
  • 9
  • 41
  • 86

3 Answers3

5

You don't need to run postmap on postfix's pcre files.

Mike Pennington
  • 8,266
  • 9
  • 41
  • 86
1

You cannot run postmap on PCRE, CIDR, REGEX, or TEXTMAP files.

adaptr
  • 16,479
  • 21
  • 33
-1

The space between the colon and period in line one causes the postmap warning message.

dan
  • 1