TheMaximumWeasel
asked on
Unknown Error
when I try to email myself from outside my server the email gets to my server but I get this error in the mail log.
Mar 24 19:50:32 redhatresources postfix/smtpd[28601]: connect from smtpout15-01.prod.mesa1.se cureserver .net[68.17 8.232.9]
Mar 24 19:50:32 redhatresources postfix/smtpd[28601]: fatal: non-null host address bits in "127.0.1.0/8", perhaps you should use "127.0.0.0/8" instead
Mar 24 19:50:33 redhatresources postfix/master[28481]: warning: process /usr/libexec/postfix/smtpd pid 28601 exit status 1
Mar 24 19:50:33 redhatresources postfix/master[28481]: warning: /usr/libexec/postfix/smtpd : bad command startup -- throttling
what is wrong and how can I fix this?
Mar 24 19:50:32 redhatresources postfix/smtpd[28601]: connect from smtpout15-01.prod.mesa1.se
Mar 24 19:50:32 redhatresources postfix/smtpd[28601]: fatal: non-null host address bits in "127.0.1.0/8", perhaps you should use "127.0.0.0/8" instead
Mar 24 19:50:33 redhatresources postfix/master[28481]: warning: process /usr/libexec/postfix/smtpd
Mar 24 19:50:33 redhatresources postfix/master[28481]: warning: /usr/libexec/postfix/smtpd
what is wrong and how can I fix this?
I'm sorry , my wrong: localhost IP address is always 127.0.0.1
nedvis
nedvis
"127.0.0.0/8" is a network description: it means "network 127.0.0.0 mask 255.0.0.0" (i.e. an 8-bit mask). So any nonzero bit after the first 8 is illegal - I think that is what the message is trying to tell you.
I suspct you have a bad entry either in /etc/hosts or /etc/networks. Maybe hosts has localhost as 127.0.1 instead of 127.0.0.1
/etc/networks should have something like:
 loopback     127.0.0.0
/etc/hosts should have:
 127.0.0.1        localhost
I suspct you have a bad entry either in /etc/hosts or /etc/networks. Maybe hosts has localhost as 127.0.1 instead of 127.0.0.1
/etc/networks should have something like:
 loopback     127.0.0.0
/etc/hosts should have:
 127.0.0.1        localhost
ASKER
in hosts I have:
127.0.0.1      localhost.localdomain      localhost
and I don't have a networks file in etc I am running fedora core 4 so I don't know if they changed it but there is a /etc/sysconfig/network I don't know f that is what you meant
127.0.0.1      localhost.localdomain      localhost
and I don't have a networks file in etc I am running fedora core 4 so I don't know if they changed it but there is a /etc/sysconfig/network I don't know f that is what you meant
ASKER
using ifconfig it says under local loopback inet addr: 127.0.0.1
Max
Max
what are the contents of your main.cf file, I suspect the problem is in there.
ASKER
let me post it:
-------------------------- ---------- ---------- ----------
# Global Postfix configuration file. This file lists only a subset
# of all 300+ parameters. See the postconf(5) manual page for a
# complete list.
#
# The general format of each line is: parameter = value. Lines
# that begin with whitespace continue the previous line. A value can
# contain references to other $names or ${name}s.
#
# NOTE - CHANGE NO MORE THAN 2-3 PARAMETERS AT A TIME, AND TEST IF
# POSTFIX STILL WORKS AFTER EVERY CHANGE.
# SOFT BOUNCE
#
# The soft_bounce parameter provides a limited safety net for
# testing. Â When soft_bounce is enabled, mail will remain queued that
# would otherwise bounce. This parameter disables locally-generated
# bounces, and prevents the SMTP server from rejecting mail permanently
# (by changing 5xx replies into 4xx replies). However, soft_bounce
# is no cure for address rewriting mistakes or mail routing mistakes.
#
#soft_bounce = no
# LOCAL PATHNAME INFORMATION
#
# The queue_directory specifies the location of the Postfix queue.
# This is also the root directory of Postfix daemons that run chrooted.
# See the files in examples/chroot-setup for setting up Postfix chroot
# environments on different UNIX systems.
#
queue_directory = /var/spool/postfix
# The command_directory parameter specifies the location of all
# postXXX commands.
#
command_directory = /usr/sbin
# The daemon_directory parameter specifies the location of all Postfix
# daemon programs (i.e. programs listed in the master.cf file). This
# directory must be owned by root.
#
daemon_directory = /usr/libexec/postfix
# QUEUE AND PROCESS OWNERSHIP
#
# The mail_owner parameter specifies the owner of the Postfix queue
# and of most Postfix daemon processes. Â Specify the name of a user
# account THAT DOES NOT SHARE ITS USER OR GROUP ID WITH OTHER ACCOUNTS
# AND THAT OWNS NO OTHER FILES OR PROCESSES ON THE SYSTEM. Â In
# particular, don't specify nobody or daemon. PLEASE USE A DEDICATED
# USER.
#
mail_owner = postfix
# The default_privs parameter specifies the default rights used by
# the local delivery agent for delivery to external file or command.
# These rights are used in the absence of a recipient user context.
# DO NOT SPECIFY A PRIVILEGED USER OR THE POSTFIX OWNER.
#
#default_privs = nobody
# INTERNET HOST AND DOMAIN NAMES
#
# The myhostname parameter specifies the internet hostname of this
# mail system. The default is to use the fully-qualified domain name
# from gethostname(). $myhostname is used as a default value for many
# other configuration parameters.
#
#myhostname = host.domain.tld
#myhostname = virtual.domain.tld
myhostname = email.example.com
# The mydomain parameter specifies the local internet domain name.
# The default is to use $myhostname minus the first component.
# $mydomain is used as a default value for many other configuration
# parameters.
#
#mydomain = domain.tld
mydomain = example.com
# SENDING MAIL
#
# The myorigin parameter specifies the domain that locally-posted
# mail appears to come from. The default is to append $myhostname,
# which is fine for small sites. Â If you run a domain with multiple
# machines, you should (1) change this to $mydomain and (2) set up
# a domain-wide alias database that aliases each user to
# user@that.users.mailhost.
#
# For the sake of consistency between sender and recipient addresses,
# myorigin also specifies the default domain name that is appended
# to recipient addresses that have no @domain part.
#
#myorigin = $myhostname
myorigin = $mydomain
# RECEIVING MAIL
# The inet_interfaces parameter specifies the network interface
# addresses that this mail system receives mail on. Â By default,
# the software claims all active interfaces on the machine. The
# parameter also controls delivery of mail to user@[ip.address].
#
# See also the proxy_interfaces parameter, for network addresses that
# are forwarded to us via a proxy or network address translator.
#
# Note: you need to stop/start Postfix when this parameter changes.
#
#inet_interfaces = all
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, localhost
#inet_interfaces = localhost
# The proxy_interfaces parameter specifies the network interface
# addresses that this mail system receives mail on by way of a
# proxy or network address translation unit. This setting extends
# the address list specified with the inet_interfaces parameter.
#
# You must specify your proxy/NAT addresses when your system is a
# backup MX host for other domains, otherwise mail delivery loops
# will happen when the primary MX host is down.
#
#proxy_interfaces =
#proxy_interfaces = 1.2.3.4
# The mydestination parameter specifies the list of domains that this
# machine considers itself the final destination for.
#
# These domains are routed to the delivery agent specified with the
# local_transport parameter setting. By default, that is the UNIX
# compatible delivery agent that lookups all recipients in /etc/passwd
# and /etc/aliases or their equivalent.
#
# The default is $myhostname + localhost.$mydomain. Â On a mail domain
# gateway, you should also include $mydomain.
#
# Do not specify the names of virtual domains - those domains are
# specified elsewhere (see VIRTUAL_README).
#
# Do not specify the names of domains that this machine is backup MX
# host for. Specify those names via the relay_domains settings for
# the SMTP server, or use permit_mx_backup if you are lazy (see
# STANDARD_CONFIGURATION_REA DME).
#
# The local machine is always the final destination for mail addressed
# to user@[the.net.work.address ] of an interface that the mail system
# receives mail on (see the inet_interfaces parameter).
#
# Specify a list of host or domain names, /file/name or type:table
# patterns, separated by commas and/or whitespace. A /file/name
# pattern is replaced by its contents; a type:table is matched when
# a name matches a lookup key (the right-hand side is ignored).
# Continue long lines by starting the next line with whitespace.
#
# See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS".
#
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.example.net, webmail.example.net, email.example.net, example.net, localhost.example.net, mail.example.org, webmail.example.org, email.example.org, example.org, localhost.example.org
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
# Â Â Â Â Â mail.$mydomain, www.$mydomain, ftp.$mydomain
# REJECTING MAIL FOR UNKNOWN LOCAL USERS
#
# The local_recipient_maps parameter specifies optional lookup tables
# with all names or addresses of users that are local with respect
# to $mydestination, $inet_interfaces or $proxy_interfaces.
#
# If this parameter is defined, then the SMTP server will reject
# mail for unknown local users. This parameter is defined by default.
#
# To turn off local recipient checking in the SMTP server, specify
# local_recipient_maps = (i.e. empty).
#
# The default setting assumes that you use the default Postfix local
# delivery agent for local delivery. You need to update the
# local_recipient_maps setting if:
#
# - You define $mydestination domain recipients in files other than
# Â /etc/passwd, /etc/aliases, or the $virtual_alias_maps files.
#  For example, you define $mydestination domain recipients in  Â
# Â the $virtual_mailbox_maps files.
#
# - You redefine the local delivery agent in master.cf.
#
# - You redefine the "local_transport" setting in main.cf.
#
# - You use the "luser_relay", "mailbox_transport", or "fallback_transport"
# Â feature of the Postfix local delivery agent (see local(8)).
#
# Details are described in the LOCAL_RECIPIENT_README file.
#
# Beware: if the Postfix SMTP server runs chrooted, you probably have
# to access the passwd file via the proxymap service, in order to
# overcome chroot restrictions. The alternative, having a copy of
# the system passwd file in the chroot jail is just not practical.
#
# The right-hand side of the lookup tables is conveniently ignored.
# In the left-hand side, specify a bare username, an @domain.tld
# wild-card, or specify a user@domain.tld address.
#
#local_recipient_maps = unix:passwd.byname $alias_maps
#local_recipient_maps = proxy:unix:passwd.byname $alias_maps
#local_recipient_maps =
# The unknown_local_recipient_re ject_code specifies the SMTP server
# response code when a recipient domain matches $mydestination or
# ${proxy,inet}_interfaces, while $local_recipient_maps is non-empty
# and the recipient address or address local-part is not found.
#
# The default setting is 550 (reject mail) but it is safer to start
# with 450 (try again later) until you are certain that your
# local_recipient_maps settings are OK.
#
unknown_local_recipient_re ject_code = 550
# TRUST AND RELAY CONTROL
# The mynetworks parameter specifies the list of "trusted" SMTP
# clients that have more privileges than "strangers".
#
# In particular, "trusted" SMTP clients are allowed to relay mail
# through Postfix. Â See the smtpd_recipient_restrictio ns parameter
# in postconf(5).
#
# You can specify the list of "trusted" network addresses by hand
# or you can let Postfix do it for you (which is the default).
#
# By default (mynetworks_style = subnet), Postfix "trusts" SMTP
# clients in the same IP subnetworks as the local machine.
# On Linux, this does works correctly only with interfaces specified
# with the "ifconfig" command.
#
# Specify "mynetworks_style = class" when Postfix should "trust" SMTP
# clients in the same IP class A/B/C networks as the local machine.
# Don't do this with a dialup site - it would cause Postfix to "trust"
# your entire provider's network. Â Instead, specify an explicit
# mynetworks list by hand, as described below.
# Â
# Specify "mynetworks_style = host" when Postfix should "trust"
# only the local machine.
#
#mynetworks_style = class
#mynetworks_style = subnet
#mynetworks_style = host
# Alternatively, you can specify the mynetworks list by hand, in
# which case Postfix ignores the mynetworks_style setting.
#
# Specify an explicit list of network/netmask patterns, where the
# mask specifies the number of bits in the network part of a host
# address.
#
# You can also specify the absolute pathname of a pattern file instead
# of listing the patterns here. Specify type:table for table-based lookups
# (the value on the table right-hand side is not used).
#
mynetworks = 168.100.189.0/28, 127.0.0.0/8, 127.0.0.0/8, 123.123.0.0/16, 127.0.1.0/8, 123.123.1.0/16
#mynetworks = $config_directory/mynetwor ks
#mynetworks = hash:/etc/postfix/network_ table
# The relay_domains parameter restricts what destinations this system will
# relay mail to. Â See the smtpd_recipient_restrictio ns description in
# postconf(5) for detailed information.
#
# By default, Postfix relays mail
# - from "trusted" clients (IP address matches $mynetworks) to any destination,
# - from "untrusted" clients to destinations that match $relay_domains or
# Â subdomains thereof, except addresses with sender-specified routing.
# The default relay_domains value is $mydestination.
#
# In addition to the above, the Postfix SMTP server by default accepts mail
# that Postfix is final destination for:
# - destinations that match $inet_interfaces or $proxy_interfaces,
# - destinations that match $mydestination
# - destinations that match $virtual_alias_domains,
# - destinations that match $virtual_mailbox_domains.
# These destinations do not need to be listed in $relay_domains.
#
# Specify a list of hosts or domains, /file/name patterns or type:name
# lookup tables, separated by commas and/or whitespace. Â Continue
# long lines by starting the next line with whitespace. A file name
# is replaced by its contents; a type:name table is matched when a
# (parent) domain appears as lookup key.
#
# NOTE: Postfix will not automatically forward mail for domains that
# list this system as their primary or backup MX host. See the
# permit_mx_backup restriction description in postconf(5).
#
#relay_domains = $mydestination
# INTERNET OR INTRANET
# The relayhost parameter specifies the default host to send mail to
# when no entry is matched in the optional transport(5) table. When
# no relayhost is given, mail is routed directly to the destination.
#
# On an intranet, specify the organizational domain name. If your
# internal DNS uses no MX records, specify the name of the intranet
# gateway host instead.
#
# In the case of SMTP, specify a domain, host, host:port, [host]:port,
# [address] or [address]:port; the form [host] turns off MX lookups.
#
# If you're connected via UUCP, see also the default_transport parameter.
#
#relayhost = $mydomain
#relayhost = [gateway.my.domain]
#relayhost = [mailserver.isp.tld]
#relayhost = uucphost
#relayhost = [an.ip.add.ress]
relayhost = smtp.comcast.net
# REJECTING UNKNOWN RELAY USERS
#
# The relay_recipient_maps parameter specifies optional lookup tables
# with all addresses in the domains that match $relay_domains.
#
# If this parameter is defined, then the SMTP server will reject
# mail for unknown relay users. This feature is off by default.
#
# The right-hand side of the lookup tables is conveniently ignored.
# In the left-hand side, specify an @domain.tld wild-card, or specify
# a user@domain.tld address.
#
#relay_recipient_maps = hash:/etc/postfix/relay_re cipients
# INPUT RATE CONTROL
#
# The in_flow_delay configuration parameter implements mail input
# flow control. This feature is turned on by default, although it
# still needs further development (it's disabled on SCO UNIX due
# to an SCO bug).
#
# A Postfix process will pause for $in_flow_delay seconds before
# accepting a new message, when the message arrival rate exceeds the
# message delivery rate. With the default 100 SMTP server process
# limit, this limits the mail inflow to 100 messages a second more
# than the number of messages delivered per second.
#
# Specify 0 to disable the feature. Valid delays are 0..10.
#
#in_flow_delay = 1s
# ADDRESS REWRITING
#
# The ADDRESS_REWRITING_README document gives information about
# address masquerading or other forms of address rewriting including
# username->Firstname.Lastna me mapping.
masquerade_domains = $mydomain
# ADDRESS REDIRECTION (VIRTUAL DOMAIN)
#
# The VIRTUAL_README document gives information about the many forms
# of domain hosting that Postfix supports.
# "USER HAS MOVED" BOUNCE MESSAGES
#
# See the discussion in the ADDRESS_REWRITING_README document.
# TRANSPORT MAP
#
# See the discussion in the ADDRESS_REWRITING_README document.
# ALIAS DATABASE
#
# The alias_maps parameter specifies the list of alias databases used
# by the local delivery agent. The default list is system dependent.
#
# On systems with NIS, the default is to search the local alias
# database, then the NIS alias database. See aliases(5) for syntax
# details.
#
# If you change the alias database, run "postalias /etc/aliases" (or
# wherever your system stores the mail alias file), or simply run
# "newaliases" to build the necessary DBM or DB file.
#
# It will take a minute or so before changes become visible. Â Use
# "postfix reload" to eliminate the delay.
#
#alias_maps = dbm:/etc/aliases
alias_maps = hash:/etc/aliases
#alias_maps = hash:/etc/aliases, nis:mail.aliases
#alias_maps = netinfo:/aliases
# The alias_database parameter specifies the alias database(s) that
# are built with "newaliases" or "sendmail -bi". Â This is a separate
# configuration parameter, because alias_maps (see above) may specify
# tables that are not necessarily all under control by Postfix.
#
#alias_database = dbm:/etc/aliases
#alias_database = dbm:/etc/mail/aliases
alias_database = hash:/etc/aliases
#alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliase s
# ADDRESS EXTENSIONS (e.g., user+foo)
#
# The recipient_delimiter parameter specifies the separator between
# user names and address extensions (user+foo). See canonical(5),
# local(8), relocated(5) and virtual(5) for the effects this has on
# aliases, canonical, virtual, relocated and .forward file lookups.
# Basically, the software tries user+foo and .forward+foo before
# trying user and .forward.
#
#recipient_delimiter = +
# DELIVERY TO MAILBOX
#
# The home_mailbox parameter specifies the optional pathname of a
# mailbox file relative to a user's home directory. The default
# mailbox file is /var/spool/mail/user or /var/mail/user. Â Specify
# "Maildir/" for qmail-style delivery (the / is required).
#
#home_mailbox = Mailbox
#home_mailbox = Maildir/
Â
# The mail_spool_directory parameter specifies the directory where
# UNIX-style mailboxes are kept. The default setting depends on the
# system type.
#
#mail_spool_directory = /var/mail
#mail_spool_directory = /var/spool/mail
# The mailbox_command parameter specifies the optional external
# command to use instead of mailbox delivery. The command is run as
# the recipient with proper HOME, SHELL and LOGNAME environment settings.
# Exception: Â delivery for root is done as $default_user.
#
# Other environment variables of interest: USER (recipient username),
# EXTENSION (address extension), DOMAIN (domain part of address),
# and LOCAL (the address localpart).
#
# Unlike other Postfix configuration parameters, the mailbox_command
# parameter is not subjected to $parameter substitutions. This is to
# make it easier to specify shell syntax (see example below).
#
# Avoid shell meta characters because they will force Postfix to run
# an expensive shell process. Procmail alone is expensive enough.
#
# IF YOU USE THIS TO DELIVER MAIL SYSTEM-WIDE, YOU MUST SET UP AN
# ALIAS THAT FORWARDS MAIL FOR ROOT TO A REAL USER.
#
#mailbox_command = /some/where/procmail
#mailbox_command = /some/where/procmail -a "$EXTENSION"
# The mailbox_transport specifies the optional transport in master.cf
# to use after processing aliases and .forward files. This parameter
# has precedence over the mailbox_command, fallback_transport and
# luser_relay parameters.
#
# Specify a string of the form transport:nexthop, where transport is
# the name of a mail delivery transport defined in master.cf. Â The
# :nexthop part is optional. For more details see the sample transport
# configuration file.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must update the "local_recipient_maps" setting in
# the main.cf file, otherwise the SMTP server will reject mail for  Â
# non-UNIX accounts with "User unknown in local recipient table".
#
#mailbox_transport = lmtp:unix:/file/name
#mailbox_transport = cyrus
# The fallback_transport specifies the optional transport in master.cf
# to use for recipients that are not found in the UNIX passwd database.
# This parameter has precedence over the luser_relay parameter.
#
# Specify a string of the form transport:nexthop, where transport is
# the name of a mail delivery transport defined in master.cf. Â The
# :nexthop part is optional. For more details see the sample transport
# configuration file.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must update the "local_recipient_maps" setting in
# the main.cf file, otherwise the SMTP server will reject mail for  Â
# non-UNIX accounts with "User unknown in local recipient table".
#
#fallback_transport = lmtp:unix:/file/name
#fallback_transport = cyrus
#fallback_transport =
# The luser_relay parameter specifies an optional destination address
# for unknown recipients. Â By default, mail for unknown@$mydestination,
# unknown@[$inet_interfaces] or unknown@[$proxy_interfaces ] is returned
# as undeliverable.
#
# The following expansions are done on luser_relay: $user (recipient
# username), $shell (recipient shell), $home (recipient home directory),
# $recipient (full recipient address), $extension (recipient address
# extension), $domain (recipient domain), $local (entire recipient
# localpart), $recipient_delimiter. Specify ${name?value} or
# ${name:value} to expand value only when $name does (does not) exist.
#
# luser_relay works only for the default Postfix local delivery agent.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must specify "local_recipient_maps =" (i.e. empty) in
# the main.cf file, otherwise the SMTP server will reject mail for  Â
# non-UNIX accounts with "User unknown in local recipient table".
#
#luser_relay = $user@other.host
#luser_relay = $local@other.host
#luser_relay = admin+$local
Â
# JUNK MAIL CONTROLS
#
# The controls listed here are only a very small subset. The file
# SMTPD_ACCESS_README provides an overview.
# The header_checks parameter specifies an optional table with patterns
# that each logical message header is matched against, including
# headers that span multiple physical lines.
#
# By default, these patterns also apply to MIME headers and to the
# headers of attached messages. With older Postfix versions, MIME and
# attached message headers were treated as body text.
#
# For details, see "man header_checks".
#
#header_checks = regexp:/etc/postfix/header _checks
# FAST ETRN SERVICE
#
# Postfix maintains per-destination logfiles with information about
# deferred mail, so that mail can be flushed quickly with the SMTP
# "ETRN domain.tld" command, or by executing "sendmail -qRdomain.tld".
# See the ETRN_README document for a detailed description.
#
# The fast_flush_domains parameter controls what destinations are
# eligible for this service. By default, they are all domains that
# this server is willing to relay mail to.
#
#fast_flush_domains = $relay_domains
# SHOW SOFTWARE VERSION OR NOT
#
# The smtpd_banner parameter specifies the text that follows the 220
# code in the SMTP server's greeting banner. Some people like to see
# the mail version advertised. By default, Postfix shows no version.
#
# You MUST specify $myhostname at the start of the text. That is an
# RFC requirement. Postfix itself does not care.
#
#smtpd_banner = $myhostname ESMTP $mail_name
#smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)
# PARALLEL DELIVERY TO THE SAME DESTINATION
#
# How many parallel deliveries to the same user or domain? With local
# delivery, it does not make sense to do massively parallel delivery
# to the same user, because mailbox updates must happen sequentially,
# and expensive pipelines in .forward files can cause disasters when
# too many are run at the same time. With SMTP deliveries, 10
# simultaneous connections to the same domain could be sufficient to
# raise eyebrows.
#
# Each message delivery transport has its XXX_destination_concurrenc y_limit
# parameter. Â The default is $default_destination_concu rrency_lim it for
# most delivery transports. For the local delivery agent the default is 2.
#local_destination_concurr ency_limit = 2
#default_destination_concu rrency_lim it = 20
# DEBUGGING CONTROL
#
# The debug_peer_level parameter specifies the increment in verbose
# logging level when an SMTP client or server host name or address
# matches a pattern in the debug_peer_list parameter.
#
debug_peer_level = 2
# The debug_peer_list parameter specifies an optional list of domain
# or network patterns, /file/name patterns or type:name tables. When
# an SMTP client or server host name or address matches a pattern,
# increase the verbose logging level by the amount specified in the
# debug_peer_level parameter.
#
#debug_peer_list = 127.0.0.1
#debug_peer_list = some.domain
# The debugger_command specifies the external command that is executed
# when a Postfix daemon program is run with the -D option.
#
# Use "command .. &Â sleep 5" so that the debugger can attach before
# the process marches on. If you use an X-based debugger, be sure to
# set up your XAUTHORITY environment variable before starting Postfix.
#
debugger_command =
      PATH=/bin:/usr/bin:/usr/lo cal/bin:/u sr/X11R6/b in
      xxgdb $daemon_directory/$process _name $process_id & sleep 5
# If you can't use X, use this to capture the call stack when a
# daemon crashes. The result is in a file in the configuration
# directory, and is named after the process name and the process ID.
#
# debugger_command =
# Â Â Â Â Â PATH=/bin:/usr/bin:/usr/lo cal/bin; export PATH; (echo cont;
# Â Â Â Â Â echo where) | gdb $daemon_directory/$process _name $process_id 2>&1
# Â Â Â Â Â >$config_directory/$proces s_name.$pr ocess_id.l og &Â sleep 5
#
# Another possibility is to run gdb under a detached screen session.
# To attach to the screen sesssion, su root and run "screen -r
# <id_string>" where <id_string> uniquely matches one of the detached
# sessions (from "screen -list").
#
# debugger_command =
# Â Â Â Â Â PATH=/bin:/usr/bin:/sbin:/ usr/sbin; export PATH; screen
# Â Â Â Â Â -dmS $process_name gdb $daemon_directory/$process _name
# Â Â Â Â Â $process_id &Â sleep 1
# INSTALL-TIME CONFIGURATION INFORMATION
#
# The following parameters are used when installing a new Postfix version.
#
# sendmail_path: The full pathname of the Postfix sendmail command.
# This is the Sendmail-compatible mail posting interface.
#
sendmail_path = /usr/sbin/sendmail.postfix
# newaliases_path: The full pathname of the Postfix newaliases command.
# This is the Sendmail-compatible command to build alias databases.
#
newaliases_path = /usr/bin/newaliases.postfi x
# mailq_path: The full pathname of the Postfix mailq command. Â This
# is the Sendmail-compatible mail queue listing command.
#
mailq_path = /usr/bin/mailq.postfix
# setgid_group: The group for mail submission and queue management
# commands. Â This must be a group name with a numerical group ID that
# is not shared with other accounts, not even with the Postfix account.
#
setgid_group = postdrop
# html_directory: The location of the Postfix HTML documentation.
#
html_directory = no
# manpage_directory: The location of the Postfix on-line manual pages.
#
manpage_directory = /usr/share/man
# sample_directory: The location of the Postfix sample configuration files.
# This parameter is obsolete as of Postfix 2.1.
#
sample_directory = /usr/share/doc/postfix-2.2 .2/samples
# readme_directory: The location of the Postfix README files.
#
readme_directory = /usr/share/doc/postfix-2.2 .2/README_ FILES
-------------------------- ---------- ---------- ---------- ---------- ---------- -----
that is it the only thing I did was change the domain names before posting
Max
--------------------------
# Global Postfix configuration file. This file lists only a subset
# of all 300+ parameters. See the postconf(5) manual page for a
# complete list.
#
# The general format of each line is: parameter = value. Lines
# that begin with whitespace continue the previous line. A value can
# contain references to other $names or ${name}s.
#
# NOTE - CHANGE NO MORE THAN 2-3 PARAMETERS AT A TIME, AND TEST IF
# POSTFIX STILL WORKS AFTER EVERY CHANGE.
# SOFT BOUNCE
#
# The soft_bounce parameter provides a limited safety net for
# testing. Â When soft_bounce is enabled, mail will remain queued that
# would otherwise bounce. This parameter disables locally-generated
# bounces, and prevents the SMTP server from rejecting mail permanently
# (by changing 5xx replies into 4xx replies). However, soft_bounce
# is no cure for address rewriting mistakes or mail routing mistakes.
#
#soft_bounce = no
# LOCAL PATHNAME INFORMATION
#
# The queue_directory specifies the location of the Postfix queue.
# This is also the root directory of Postfix daemons that run chrooted.
# See the files in examples/chroot-setup for setting up Postfix chroot
# environments on different UNIX systems.
#
queue_directory = /var/spool/postfix
# The command_directory parameter specifies the location of all
# postXXX commands.
#
command_directory = /usr/sbin
# The daemon_directory parameter specifies the location of all Postfix
# daemon programs (i.e. programs listed in the master.cf file). This
# directory must be owned by root.
#
daemon_directory = /usr/libexec/postfix
# QUEUE AND PROCESS OWNERSHIP
#
# The mail_owner parameter specifies the owner of the Postfix queue
# and of most Postfix daemon processes. Â Specify the name of a user
# account THAT DOES NOT SHARE ITS USER OR GROUP ID WITH OTHER ACCOUNTS
# AND THAT OWNS NO OTHER FILES OR PROCESSES ON THE SYSTEM. Â In
# particular, don't specify nobody or daemon. PLEASE USE A DEDICATED
# USER.
#
mail_owner = postfix
# The default_privs parameter specifies the default rights used by
# the local delivery agent for delivery to external file or command.
# These rights are used in the absence of a recipient user context.
# DO NOT SPECIFY A PRIVILEGED USER OR THE POSTFIX OWNER.
#
#default_privs = nobody
# INTERNET HOST AND DOMAIN NAMES
#
# The myhostname parameter specifies the internet hostname of this
# mail system. The default is to use the fully-qualified domain name
# from gethostname(). $myhostname is used as a default value for many
# other configuration parameters.
#
#myhostname = host.domain.tld
#myhostname = virtual.domain.tld
myhostname = email.example.com
# The mydomain parameter specifies the local internet domain name.
# The default is to use $myhostname minus the first component.
# $mydomain is used as a default value for many other configuration
# parameters.
#
#mydomain = domain.tld
mydomain = example.com
# SENDING MAIL
#
# The myorigin parameter specifies the domain that locally-posted
# mail appears to come from. The default is to append $myhostname,
# which is fine for small sites. Â If you run a domain with multiple
# machines, you should (1) change this to $mydomain and (2) set up
# a domain-wide alias database that aliases each user to
# user@that.users.mailhost.
#
# For the sake of consistency between sender and recipient addresses,
# myorigin also specifies the default domain name that is appended
# to recipient addresses that have no @domain part.
#
#myorigin = $myhostname
myorigin = $mydomain
# RECEIVING MAIL
# The inet_interfaces parameter specifies the network interface
# addresses that this mail system receives mail on. Â By default,
# the software claims all active interfaces on the machine. The
# parameter also controls delivery of mail to user@[ip.address].
#
# See also the proxy_interfaces parameter, for network addresses that
# are forwarded to us via a proxy or network address translator.
#
# Note: you need to stop/start Postfix when this parameter changes.
#
#inet_interfaces = all
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, localhost
#inet_interfaces = localhost
# The proxy_interfaces parameter specifies the network interface
# addresses that this mail system receives mail on by way of a
# proxy or network address translation unit. This setting extends
# the address list specified with the inet_interfaces parameter.
#
# You must specify your proxy/NAT addresses when your system is a
# backup MX host for other domains, otherwise mail delivery loops
# will happen when the primary MX host is down.
#
#proxy_interfaces =
#proxy_interfaces = 1.2.3.4
# The mydestination parameter specifies the list of domains that this
# machine considers itself the final destination for.
#
# These domains are routed to the delivery agent specified with the
# local_transport parameter setting. By default, that is the UNIX
# compatible delivery agent that lookups all recipients in /etc/passwd
# and /etc/aliases or their equivalent.
#
# The default is $myhostname + localhost.$mydomain. Â On a mail domain
# gateway, you should also include $mydomain.
#
# Do not specify the names of virtual domains - those domains are
# specified elsewhere (see VIRTUAL_README).
#
# Do not specify the names of domains that this machine is backup MX
# host for. Specify those names via the relay_domains settings for
# the SMTP server, or use permit_mx_backup if you are lazy (see
# STANDARD_CONFIGURATION_REA
#
# The local machine is always the final destination for mail addressed
# to user@[the.net.work.address
# receives mail on (see the inet_interfaces parameter).
#
# Specify a list of host or domain names, /file/name or type:table
# patterns, separated by commas and/or whitespace. A /file/name
# pattern is replaced by its contents; a type:table is matched when
# a name matches a lookup key (the right-hand side is ignored).
# Continue long lines by starting the next line with whitespace.
#
# See also below, section "REJECTING MAIL FOR UNKNOWN LOCAL USERS".
#
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.example.net, webmail.example.net, email.example.net, example.net, localhost.example.net, mail.example.org, webmail.example.org, email.example.org, example.org, localhost.example.org
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain,
# Â Â Â Â Â mail.$mydomain, www.$mydomain, ftp.$mydomain
# REJECTING MAIL FOR UNKNOWN LOCAL USERS
#
# The local_recipient_maps parameter specifies optional lookup tables
# with all names or addresses of users that are local with respect
# to $mydestination, $inet_interfaces or $proxy_interfaces.
#
# If this parameter is defined, then the SMTP server will reject
# mail for unknown local users. This parameter is defined by default.
#
# To turn off local recipient checking in the SMTP server, specify
# local_recipient_maps = (i.e. empty).
#
# The default setting assumes that you use the default Postfix local
# delivery agent for local delivery. You need to update the
# local_recipient_maps setting if:
#
# - You define $mydestination domain recipients in files other than
# Â /etc/passwd, /etc/aliases, or the $virtual_alias_maps files.
#  For example, you define $mydestination domain recipients in  Â
# Â the $virtual_mailbox_maps files.
#
# - You redefine the local delivery agent in master.cf.
#
# - You redefine the "local_transport" setting in main.cf.
#
# - You use the "luser_relay", "mailbox_transport", or "fallback_transport"
# Â feature of the Postfix local delivery agent (see local(8)).
#
# Details are described in the LOCAL_RECIPIENT_README file.
#
# Beware: if the Postfix SMTP server runs chrooted, you probably have
# to access the passwd file via the proxymap service, in order to
# overcome chroot restrictions. The alternative, having a copy of
# the system passwd file in the chroot jail is just not practical.
#
# The right-hand side of the lookup tables is conveniently ignored.
# In the left-hand side, specify a bare username, an @domain.tld
# wild-card, or specify a user@domain.tld address.
#
#local_recipient_maps = unix:passwd.byname $alias_maps
#local_recipient_maps = proxy:unix:passwd.byname $alias_maps
#local_recipient_maps =
# The unknown_local_recipient_re
# response code when a recipient domain matches $mydestination or
# ${proxy,inet}_interfaces, while $local_recipient_maps is non-empty
# and the recipient address or address local-part is not found.
#
# The default setting is 550 (reject mail) but it is safer to start
# with 450 (try again later) until you are certain that your
# local_recipient_maps settings are OK.
#
unknown_local_recipient_re
# TRUST AND RELAY CONTROL
# The mynetworks parameter specifies the list of "trusted" SMTP
# clients that have more privileges than "strangers".
#
# In particular, "trusted" SMTP clients are allowed to relay mail
# through Postfix. Â See the smtpd_recipient_restrictio
# in postconf(5).
#
# You can specify the list of "trusted" network addresses by hand
# or you can let Postfix do it for you (which is the default).
#
# By default (mynetworks_style = subnet), Postfix "trusts" SMTP
# clients in the same IP subnetworks as the local machine.
# On Linux, this does works correctly only with interfaces specified
# with the "ifconfig" command.
#
# Specify "mynetworks_style = class" when Postfix should "trust" SMTP
# clients in the same IP class A/B/C networks as the local machine.
# Don't do this with a dialup site - it would cause Postfix to "trust"
# your entire provider's network. Â Instead, specify an explicit
# mynetworks list by hand, as described below.
# Â
# Specify "mynetworks_style = host" when Postfix should "trust"
# only the local machine.
#
#mynetworks_style = class
#mynetworks_style = subnet
#mynetworks_style = host
# Alternatively, you can specify the mynetworks list by hand, in
# which case Postfix ignores the mynetworks_style setting.
#
# Specify an explicit list of network/netmask patterns, where the
# mask specifies the number of bits in the network part of a host
# address.
#
# You can also specify the absolute pathname of a pattern file instead
# of listing the patterns here. Specify type:table for table-based lookups
# (the value on the table right-hand side is not used).
#
mynetworks = 168.100.189.0/28, 127.0.0.0/8, 127.0.0.0/8, 123.123.0.0/16, 127.0.1.0/8, 123.123.1.0/16
#mynetworks = $config_directory/mynetwor
#mynetworks = hash:/etc/postfix/network_
# The relay_domains parameter restricts what destinations this system will
# relay mail to. Â See the smtpd_recipient_restrictio
# postconf(5) for detailed information.
#
# By default, Postfix relays mail
# - from "trusted" clients (IP address matches $mynetworks) to any destination,
# - from "untrusted" clients to destinations that match $relay_domains or
# Â subdomains thereof, except addresses with sender-specified routing.
# The default relay_domains value is $mydestination.
#
# In addition to the above, the Postfix SMTP server by default accepts mail
# that Postfix is final destination for:
# - destinations that match $inet_interfaces or $proxy_interfaces,
# - destinations that match $mydestination
# - destinations that match $virtual_alias_domains,
# - destinations that match $virtual_mailbox_domains.
# These destinations do not need to be listed in $relay_domains.
#
# Specify a list of hosts or domains, /file/name patterns or type:name
# lookup tables, separated by commas and/or whitespace. Â Continue
# long lines by starting the next line with whitespace. A file name
# is replaced by its contents; a type:name table is matched when a
# (parent) domain appears as lookup key.
#
# NOTE: Postfix will not automatically forward mail for domains that
# list this system as their primary or backup MX host. See the
# permit_mx_backup restriction description in postconf(5).
#
#relay_domains = $mydestination
# INTERNET OR INTRANET
# The relayhost parameter specifies the default host to send mail to
# when no entry is matched in the optional transport(5) table. When
# no relayhost is given, mail is routed directly to the destination.
#
# On an intranet, specify the organizational domain name. If your
# internal DNS uses no MX records, specify the name of the intranet
# gateway host instead.
#
# In the case of SMTP, specify a domain, host, host:port, [host]:port,
# [address] or [address]:port; the form [host] turns off MX lookups.
#
# If you're connected via UUCP, see also the default_transport parameter.
#
#relayhost = $mydomain
#relayhost = [gateway.my.domain]
#relayhost = [mailserver.isp.tld]
#relayhost = uucphost
#relayhost = [an.ip.add.ress]
relayhost = smtp.comcast.net
# REJECTING UNKNOWN RELAY USERS
#
# The relay_recipient_maps parameter specifies optional lookup tables
# with all addresses in the domains that match $relay_domains.
#
# If this parameter is defined, then the SMTP server will reject
# mail for unknown relay users. This feature is off by default.
#
# The right-hand side of the lookup tables is conveniently ignored.
# In the left-hand side, specify an @domain.tld wild-card, or specify
# a user@domain.tld address.
#
#relay_recipient_maps = hash:/etc/postfix/relay_re
# INPUT RATE CONTROL
#
# The in_flow_delay configuration parameter implements mail input
# flow control. This feature is turned on by default, although it
# still needs further development (it's disabled on SCO UNIX due
# to an SCO bug).
#
# A Postfix process will pause for $in_flow_delay seconds before
# accepting a new message, when the message arrival rate exceeds the
# message delivery rate. With the default 100 SMTP server process
# limit, this limits the mail inflow to 100 messages a second more
# than the number of messages delivered per second.
#
# Specify 0 to disable the feature. Valid delays are 0..10.
#
#in_flow_delay = 1s
# ADDRESS REWRITING
#
# The ADDRESS_REWRITING_README document gives information about
# address masquerading or other forms of address rewriting including
# username->Firstname.Lastna
masquerade_domains = $mydomain
# ADDRESS REDIRECTION (VIRTUAL DOMAIN)
#
# The VIRTUAL_README document gives information about the many forms
# of domain hosting that Postfix supports.
# "USER HAS MOVED" BOUNCE MESSAGES
#
# See the discussion in the ADDRESS_REWRITING_README document.
# TRANSPORT MAP
#
# See the discussion in the ADDRESS_REWRITING_README document.
# ALIAS DATABASE
#
# The alias_maps parameter specifies the list of alias databases used
# by the local delivery agent. The default list is system dependent.
#
# On systems with NIS, the default is to search the local alias
# database, then the NIS alias database. See aliases(5) for syntax
# details.
#
# If you change the alias database, run "postalias /etc/aliases" (or
# wherever your system stores the mail alias file), or simply run
# "newaliases" to build the necessary DBM or DB file.
#
# It will take a minute or so before changes become visible. Â Use
# "postfix reload" to eliminate the delay.
#
#alias_maps = dbm:/etc/aliases
alias_maps = hash:/etc/aliases
#alias_maps = hash:/etc/aliases, nis:mail.aliases
#alias_maps = netinfo:/aliases
# The alias_database parameter specifies the alias database(s) that
# are built with "newaliases" or "sendmail -bi". Â This is a separate
# configuration parameter, because alias_maps (see above) may specify
# tables that are not necessarily all under control by Postfix.
#
#alias_database = dbm:/etc/aliases
#alias_database = dbm:/etc/mail/aliases
alias_database = hash:/etc/aliases
#alias_database = hash:/etc/aliases, hash:/opt/majordomo/aliase
# ADDRESS EXTENSIONS (e.g., user+foo)
#
# The recipient_delimiter parameter specifies the separator between
# user names and address extensions (user+foo). See canonical(5),
# local(8), relocated(5) and virtual(5) for the effects this has on
# aliases, canonical, virtual, relocated and .forward file lookups.
# Basically, the software tries user+foo and .forward+foo before
# trying user and .forward.
#
#recipient_delimiter = +
# DELIVERY TO MAILBOX
#
# The home_mailbox parameter specifies the optional pathname of a
# mailbox file relative to a user's home directory. The default
# mailbox file is /var/spool/mail/user or /var/mail/user. Â Specify
# "Maildir/" for qmail-style delivery (the / is required).
#
#home_mailbox = Mailbox
#home_mailbox = Maildir/
Â
# The mail_spool_directory parameter specifies the directory where
# UNIX-style mailboxes are kept. The default setting depends on the
# system type.
#
#mail_spool_directory = /var/mail
#mail_spool_directory = /var/spool/mail
# The mailbox_command parameter specifies the optional external
# command to use instead of mailbox delivery. The command is run as
# the recipient with proper HOME, SHELL and LOGNAME environment settings.
# Exception: Â delivery for root is done as $default_user.
#
# Other environment variables of interest: USER (recipient username),
# EXTENSION (address extension), DOMAIN (domain part of address),
# and LOCAL (the address localpart).
#
# Unlike other Postfix configuration parameters, the mailbox_command
# parameter is not subjected to $parameter substitutions. This is to
# make it easier to specify shell syntax (see example below).
#
# Avoid shell meta characters because they will force Postfix to run
# an expensive shell process. Procmail alone is expensive enough.
#
# IF YOU USE THIS TO DELIVER MAIL SYSTEM-WIDE, YOU MUST SET UP AN
# ALIAS THAT FORWARDS MAIL FOR ROOT TO A REAL USER.
#
#mailbox_command = /some/where/procmail
#mailbox_command = /some/where/procmail -a "$EXTENSION"
# The mailbox_transport specifies the optional transport in master.cf
# to use after processing aliases and .forward files. This parameter
# has precedence over the mailbox_command, fallback_transport and
# luser_relay parameters.
#
# Specify a string of the form transport:nexthop, where transport is
# the name of a mail delivery transport defined in master.cf. Â The
# :nexthop part is optional. For more details see the sample transport
# configuration file.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must update the "local_recipient_maps" setting in
# the main.cf file, otherwise the SMTP server will reject mail for  Â
# non-UNIX accounts with "User unknown in local recipient table".
#
#mailbox_transport = lmtp:unix:/file/name
#mailbox_transport = cyrus
# The fallback_transport specifies the optional transport in master.cf
# to use for recipients that are not found in the UNIX passwd database.
# This parameter has precedence over the luser_relay parameter.
#
# Specify a string of the form transport:nexthop, where transport is
# the name of a mail delivery transport defined in master.cf. Â The
# :nexthop part is optional. For more details see the sample transport
# configuration file.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must update the "local_recipient_maps" setting in
# the main.cf file, otherwise the SMTP server will reject mail for  Â
# non-UNIX accounts with "User unknown in local recipient table".
#
#fallback_transport = lmtp:unix:/file/name
#fallback_transport = cyrus
#fallback_transport =
# The luser_relay parameter specifies an optional destination address
# for unknown recipients. Â By default, mail for unknown@$mydestination,
# unknown@[$inet_interfaces]
# as undeliverable.
#
# The following expansions are done on luser_relay: $user (recipient
# username), $shell (recipient shell), $home (recipient home directory),
# $recipient (full recipient address), $extension (recipient address
# extension), $domain (recipient domain), $local (entire recipient
# localpart), $recipient_delimiter. Specify ${name?value} or
# ${name:value} to expand value only when $name does (does not) exist.
#
# luser_relay works only for the default Postfix local delivery agent.
#
# NOTE: if you use this feature for accounts not in the UNIX password
# file, then you must specify "local_recipient_maps =" (i.e. empty) in
# the main.cf file, otherwise the SMTP server will reject mail for  Â
# non-UNIX accounts with "User unknown in local recipient table".
#
#luser_relay = $user@other.host
#luser_relay = $local@other.host
#luser_relay = admin+$local
Â
# JUNK MAIL CONTROLS
#
# The controls listed here are only a very small subset. The file
# SMTPD_ACCESS_README provides an overview.
# The header_checks parameter specifies an optional table with patterns
# that each logical message header is matched against, including
# headers that span multiple physical lines.
#
# By default, these patterns also apply to MIME headers and to the
# headers of attached messages. With older Postfix versions, MIME and
# attached message headers were treated as body text.
#
# For details, see "man header_checks".
#
#header_checks = regexp:/etc/postfix/header
# FAST ETRN SERVICE
#
# Postfix maintains per-destination logfiles with information about
# deferred mail, so that mail can be flushed quickly with the SMTP
# "ETRN domain.tld" command, or by executing "sendmail -qRdomain.tld".
# See the ETRN_README document for a detailed description.
#
# The fast_flush_domains parameter controls what destinations are
# eligible for this service. By default, they are all domains that
# this server is willing to relay mail to.
#
#fast_flush_domains = $relay_domains
# SHOW SOFTWARE VERSION OR NOT
#
# The smtpd_banner parameter specifies the text that follows the 220
# code in the SMTP server's greeting banner. Some people like to see
# the mail version advertised. By default, Postfix shows no version.
#
# You MUST specify $myhostname at the start of the text. That is an
# RFC requirement. Postfix itself does not care.
#
#smtpd_banner = $myhostname ESMTP $mail_name
#smtpd_banner = $myhostname ESMTP $mail_name ($mail_version)
# PARALLEL DELIVERY TO THE SAME DESTINATION
#
# How many parallel deliveries to the same user or domain? With local
# delivery, it does not make sense to do massively parallel delivery
# to the same user, because mailbox updates must happen sequentially,
# and expensive pipelines in .forward files can cause disasters when
# too many are run at the same time. With SMTP deliveries, 10
# simultaneous connections to the same domain could be sufficient to
# raise eyebrows.
#
# Each message delivery transport has its XXX_destination_concurrenc
# parameter. Â The default is $default_destination_concu
# most delivery transports. For the local delivery agent the default is 2.
#local_destination_concurr
#default_destination_concu
# DEBUGGING CONTROL
#
# The debug_peer_level parameter specifies the increment in verbose
# logging level when an SMTP client or server host name or address
# matches a pattern in the debug_peer_list parameter.
#
debug_peer_level = 2
# The debug_peer_list parameter specifies an optional list of domain
# or network patterns, /file/name patterns or type:name tables. When
# an SMTP client or server host name or address matches a pattern,
# increase the verbose logging level by the amount specified in the
# debug_peer_level parameter.
#
#debug_peer_list = 127.0.0.1
#debug_peer_list = some.domain
# The debugger_command specifies the external command that is executed
# when a Postfix daemon program is run with the -D option.
#
# Use "command .. &Â sleep 5" so that the debugger can attach before
# the process marches on. If you use an X-based debugger, be sure to
# set up your XAUTHORITY environment variable before starting Postfix.
#
debugger_command =
      PATH=/bin:/usr/bin:/usr/lo
      xxgdb $daemon_directory/$process
# If you can't use X, use this to capture the call stack when a
# daemon crashes. The result is in a file in the configuration
# directory, and is named after the process name and the process ID.
#
# debugger_command =
# Â Â Â Â Â PATH=/bin:/usr/bin:/usr/lo
# Â Â Â Â Â echo where) | gdb $daemon_directory/$process
# Â Â Â Â Â >$config_directory/$proces
#
# Another possibility is to run gdb under a detached screen session.
# To attach to the screen sesssion, su root and run "screen -r
# <id_string>" where <id_string> uniquely matches one of the detached
# sessions (from "screen -list").
#
# debugger_command =
# Â Â Â Â Â PATH=/bin:/usr/bin:/sbin:/
# Â Â Â Â Â -dmS $process_name gdb $daemon_directory/$process
# Â Â Â Â Â $process_id &Â sleep 1
# INSTALL-TIME CONFIGURATION INFORMATION
#
# The following parameters are used when installing a new Postfix version.
#
# sendmail_path: The full pathname of the Postfix sendmail command.
# This is the Sendmail-compatible mail posting interface.
#
sendmail_path = /usr/sbin/sendmail.postfix
# newaliases_path: The full pathname of the Postfix newaliases command.
# This is the Sendmail-compatible command to build alias databases.
#
newaliases_path = /usr/bin/newaliases.postfi
# mailq_path: The full pathname of the Postfix mailq command. Â This
# is the Sendmail-compatible mail queue listing command.
#
mailq_path = /usr/bin/mailq.postfix
# setgid_group: The group for mail submission and queue management
# commands. Â This must be a group name with a numerical group ID that
# is not shared with other accounts, not even with the Postfix account.
#
setgid_group = postdrop
# html_directory: The location of the Postfix HTML documentation.
#
html_directory = no
# manpage_directory: The location of the Postfix on-line manual pages.
#
manpage_directory = /usr/share/man
# sample_directory: The location of the Postfix sample configuration files.
# This parameter is obsolete as of Postfix 2.1.
#
sample_directory = /usr/share/doc/postfix-2.2
# readme_directory: The location of the Postfix README files.
#
readme_directory = /usr/share/doc/postfix-2.2
--------------------------
that is it the only thing I did was change the domain names before posting
Max
ASKER
I found the loopback settings and it says for loopback that network is 127.0.0.0 but ipaddr is 127.0.0.1
Max
Max
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
ok after removing the ones with the one where it should be a 0 I get this
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: connect from rwcrmhc14.example.com[x.x. x.x]
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: NOQUEUE: reject: RCPT from rwcrmhc14.example.com[x.x. x.x]: 554 <max@example.net>: Relay access denied; from=<max@example.com> to=<max@example.net> proto=ESMTP helo=<rwcrmhc14.example.co m>
Mar 26 13:32:16 redhatresources postfix/smtpd[32476]: disconnect from rwcrmhc14.example.com[x.x. x.x]
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: connect from rwcrmhc14.example.com[x.x.
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: NOQUEUE: reject: RCPT from rwcrmhc14.example.com[x.x.
Mar 26 13:32:16 redhatresources postfix/smtpd[32476]: disconnect from rwcrmhc14.example.com[x.x.
can you do me a favor and repost your main.cf file, but without all the comments, its really hard to read with those in there. Â also can you post the master.cf. Â This one should be pretty easy to find the problem, though.
do a
cat main.cf | grep -v ^# | grep -v ^$
and
cat master.cf | grep -v ^# | grep -v ^$
Thanks
do a
cat main.cf | grep -v ^# | grep -v ^$
and
cat master.cf | grep -v ^# | grep -v ^$
Thanks
ASKER
main.cf:
queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
mail_owner = postfix
myhostname = email.example.com
mydomain = example.com
myorigin = $mydomain
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.example.net, webmail.example.net, email.example.net, example.net, localhost.example.net, mail.example.org, webmail.example.org, email.example.org, example.org, localhost.example.org
unknown_local_recipient_re ject_code = 550
mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
relayhost = smtp.comcast.net
masquerade_domains = $mydomain
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
debug_peer_level = 2
debugger_command =
     PATH=/bin:/usr/bin:/usr/lo cal/bin:/u sr/X11R6/b in
     xxgdb $daemon_directory/$process _name $process_id & sleep 5
sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfi x
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = no
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix-2.2 .2/samples
readme_directory = /usr/share/doc/postfix-2.2 .2/README_ FILES
master.cf:
smtp    inet  n    -    n    -    -    smtpd
pickup   fifo  n    -    n    60    1    pickup
cleanup  unix  n    -    n    -    0    cleanup
qmgr    fifo  n    -    n    300   1    qmgr
tlsmgr   unix  -    -    n    1000?  1    tlsmgr
rewrite  unix  -    -    n    -    -    trivial-rewrite
bounce   unix  -    -    n    -    0    bounce
defer   unix  -    -    n    -    0    bounce
trace   unix  -    -    n    -    0    bounce
verify   unix  -    -    n    -    1    verify
flush   unix  n    -    n    1000?  0    flush
proxymap  unix  -    -    n    -    -    proxymap
smtp    unix  -    -    n    -    -    smtp
relay   unix  -    -    n    -    -    smtp
    -o fallback_relay=
showq   unix  n    -    n    -    -    showq
error   unix  -    -    n    -    -    error
discard  unix  -    -    n    -    -    discard
local   unix  -    n    n    -    -    local
virtual  unix  -    n    n    -    -    virtual
lmtp    unix  -    -    n    -    -    lmtp
anvil   unix  -    -    n    -    1    anvil
scache   unix  -    -    n    -    1    scache
maildrop  unix  -    n    n    -    -    pipe
 flags=DRhu user=vmail argv=/usr/local/bin/maildr op -d ${recipient}
old-cyrus unix  -    n    n    -    -    pipe
 flags=R user=cyrus argv=/usr/lib/cyrus-imapd/ deliver -e -m ${extension} ${user}
cyrus   unix  -    n    n    -    -    pipe
 user=cyrus argv=/usr/lib/cyrus-imapd/ deliver -e -r ${sender} -m ${extension} ${user}
uucp    unix  -    n    n    -    -    pipe
 flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
ifmail   unix  -    n    n    -    -    pipe
 flags=F user=ftn argv=/usr/lib/ifmail/ifmai l -r $nexthop ($recipient)
bsmtp   unix  -    n    n    -    -    pipe
 flags=Fq. user=foo argv=/usr/local/sbin/bsmtp -f $sender $nexthop $recipient
Max
queue_directory = /var/spool/postfix
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
mail_owner = postfix
myhostname = email.example.com
mydomain = example.com
myorigin = $mydomain
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.example.net, webmail.example.net, email.example.net, example.net, localhost.example.net, mail.example.org, webmail.example.org, email.example.org, example.org, localhost.example.org
unknown_local_recipient_re
mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
relayhost = smtp.comcast.net
masquerade_domains = $mydomain
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
debug_peer_level = 2
debugger_command =
     PATH=/bin:/usr/bin:/usr/lo
     xxgdb $daemon_directory/$process
sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfi
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = no
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix-2.2
readme_directory = /usr/share/doc/postfix-2.2
master.cf:
smtp    inet  n    -    n    -    -    smtpd
pickup   fifo  n    -    n    60    1    pickup
cleanup  unix  n    -    n    -    0    cleanup
qmgr    fifo  n    -    n    300   1    qmgr
tlsmgr   unix  -    -    n    1000?  1    tlsmgr
rewrite  unix  -    -    n    -    -    trivial-rewrite
bounce   unix  -    -    n    -    0    bounce
defer   unix  -    -    n    -    0    bounce
trace   unix  -    -    n    -    0    bounce
verify   unix  -    -    n    -    1    verify
flush   unix  n    -    n    1000?  0    flush
proxymap  unix  -    -    n    -    -    proxymap
smtp    unix  -    -    n    -    -    smtp
relay   unix  -    -    n    -    -    smtp
    -o fallback_relay=
showq   unix  n    -    n    -    -    showq
error   unix  -    -    n    -    -    error
discard  unix  -    -    n    -    -    discard
local   unix  -    n    n    -    -    local
virtual  unix  -    n    n    -    -    virtual
lmtp    unix  -    -    n    -    -    lmtp
anvil   unix  -    -    n    -    1    anvil
scache   unix  -    -    n    -    1    scache
maildrop  unix  -    n    n    -    -    pipe
 flags=DRhu user=vmail argv=/usr/local/bin/maildr
old-cyrus unix  -    n    n    -    -    pipe
 flags=R user=cyrus argv=/usr/lib/cyrus-imapd/
cyrus   unix  -    n    n    -    -    pipe
 user=cyrus argv=/usr/lib/cyrus-imapd/
uucp    unix  -    n    n    -    -    pipe
 flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
ifmail   unix  -    n    n    -    -    pipe
 flags=F user=ftn argv=/usr/lib/ifmail/ifmai
bsmtp   unix  -    n    n    -    -    pipe
 flags=Fq. user=foo argv=/usr/local/sbin/bsmtp
Max
ASKER
and using the config above I get this in maillog:
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: connect from rwcrmhc14.example.com[x.x. x.x]
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: NOQUEUE: reject: RCPT from rwcrmhc14.example.com[x.x. x.x]: 554 <max@example.net>: Relay access denied; from=<max@example.com> to=<max@example.net> proto=ESMTP helo=<rwcrmhc14.example.co m>
Mar 26 13:32:16 redhatresources postfix/smtpd[32476]: disconnect from rwcrmhc14.example.com[x.x. x.x]
Max
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: connect from rwcrmhc14.example.com[x.x.
Mar 26 13:32:14 mydomain postfix/smtpd[32476]: NOQUEUE: reject: RCPT from rwcrmhc14.example.com[x.x.
Mar 26 13:32:16 redhatresources postfix/smtpd[32476]: disconnect from rwcrmhc14.example.com[x.x.
Max
okay, lets try to get a little more information.
First, is the computer you are trying to send the email from have an ip part of one of the ranges listed in the mynetworks parameter.
second, if yes. Â then in the master.cf file change that first line (non-commented line that is) from
smtp    inet  n    -    n    -    -    smtpd
to
smtp    inet  n    -    n    -    -    smtpd -v -v
and there is a space between the smtpd and the -v and the second -v
then restart postfix, the double -v will turn on high verbose logging and will hopefully give more information to help out.
First, is the computer you are trying to send the email from have an ip part of one of the ranges listed in the mynetworks parameter.
second, if yes. Â then in the master.cf file change that first line (non-commented line that is) from
smtp    inet  n    -    n    -    -    smtpd
to
smtp    inet  n    -    n    -    -    smtpd -v -v
and there is a space between the smtpd and the -v and the second -v
then restart postfix, the double -v will turn on high verbose logging and will hopefully give more information to help out.
ASKER
I am using my comcast mail account to send an email to my domain which has mx records forwarded to my server's ip
Max
Max
ASKER
ok this is what I got in my maillog:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: syslog_facility = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: mail
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  mail
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: syslog_facility = mail
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: inet_protocols = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: inet_protocols = ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: name_mask: ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mail_name = Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: syslog_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: syslog_name = postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_owner = postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: setgid_group = postdrop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postdrop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postdrop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com -> email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myorigin = $mydomain
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $mydomain
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $mydomain -> redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relayhost = smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: daemon_directory = /usr/libexec/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /usr/libexec/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  /usr/libexec/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: command_directory = /usr/sbin
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /usr/sbin
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  /usr/sbin
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: queue_directory = /var/spool/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /var/spool/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  /var/spool/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: process_id_directory = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: pid
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  pid
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: process_id_directory = pid
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: inet_interfaces = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: all
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  all
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: inet_interfaces = all
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: proxy_interfaces = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: proxy_interfaces =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: double_bounce_sender = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: double-bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  double-bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: double_bounce_sender = double-bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_privs = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: nobody
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  nobody
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_privs = nobody
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alias_database = hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_release_date = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 20050401
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  20050401
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mail_release_date = 20050401
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_version = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 2.2.2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  2.2.2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mail_version = 2.2.2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_database_type = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  hash
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_database_type = hash
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: hash_queue_names = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: deferred, defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  deferred, defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: hash_queue_names = deferred, defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: recipient_delimiter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: recipient_delimiter =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_domains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $mydestination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $mydestination -> email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_domains = email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fast_flush_domains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $relay_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_domains = email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $relay_domains -> email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fast_flush_domains = email.redhatresources.com, localhost.redhatresources. com, localhost, redhatresources.com, email.redhatresources.com, mail.redhatresources.com, webmail.redhatresources.co m, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: export_environment = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: TZ MAIL_CONFIG
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  TZ MAIL_CONFIG
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: export_environment = TZ MAIL_CONFIG
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: import_environment = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: import_environment = MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mynetworks_style = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: subnet
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  subnet
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mynetworks_style = subnet
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: debug_peer_list = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: debug_peer_list =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_verp_delimiters = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: +=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  +=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_verp_delimiters = +=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: verp_delimiter_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: -=+
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  -=+
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: verp_delimiter_filter = -=+
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: parent_domain_matches_subd omains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: debug_peer_list,fast_flush _domains,m ynetworks, permit_mx_ backup_net works,qmqp d_authoriz ed_clients ,relay_dom ains,smtpd _access_ma ps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  debug_peer_list,fast_flush _domains,m ynetworks, permit_mx_ backup_net works,qmqp d_authoriz ed_clients ,relay_dom ains,smtpd _access_ma ps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: parent_domain_matches_subd omains = debug_peer_list,fast_flush _domains,m ynetworks, permit_mx_ backup_net works,qmqp d_authoriz ed_clients ,relay_dom ains,smtpd _access_ma ps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alternate_config_directori es = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: alternate_config_directori es =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: bounce_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: bounce_service_name = bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: cleanup_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: cleanup_service_name = cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: defer_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: defer_service_name = defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: pickup_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: pickup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  pickup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: pickup_service_name = pickup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: queue_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: qmgr
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  qmgr
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: queue_service_name = qmgr
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: rewrite_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: rewrite_service_name = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: showq_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: showq
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  showq
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: showq_service_name = showq
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: error_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: error
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  error
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: error_service_name = error
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: flush_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: flush_service_name = flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_service_nam e = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: verify
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  verify
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_service_nam e = verify
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: trace_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: trace
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  trace
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: trace_service_name = trace
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: tls_random_exchange_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: ${config_directory}/prng_e xch
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: config_directory = /etc/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /etc/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand ${config_directory}/prng_e xch -> /etc/postfix/prng_exch
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: tls_random_exchange_name = /etc/postfix/prng_exch
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_cert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_key_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtpd_tls_cert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtpd_tls_cert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_key_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dcert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dkey_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtpd_tls_dcert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtpd_tls_dcert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dkey_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_CAfile = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_CAfile =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_CApath = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_CApath =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_cipherlist = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_cipherlist =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dh512_param_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dh512_param_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dh1024_param_fil e = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dh1024_param_fil e =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_session_cache_da tabase = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_session_cache_da tabase =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_cert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_key_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtp_tls_cert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtp_tls_cert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_key_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_dcert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_dkey_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtp_tls_dcert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtp_tls_dcert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_dkey_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_CAfile = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_CAfile =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_CApath = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_CApath =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_cipherlist = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_cipherlist =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_session_cache_dat abase = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_session_cache_dat abase =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: max_use = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: max_use = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: dont_remove = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: dont_remove = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: line_length_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: line_length_limit = 2048
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: message_size_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: message_size_limit = 10240000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: hash_queue_depth = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: hash_queue_depth = 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fork_attempts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fork_attempts = 5
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: deliver_lock_attempts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: deliver_lock_attempts = 20
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: debug_peer_level = 2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fault_injection_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fault_injection_code = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: berkeley_db_create_buffer_ size = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: berkeley_db_create_buffer_ size = 16777216
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: berkeley_db_read_buffer_si ze = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: berkeley_db_read_buffer_si ze = 131072
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: header_size_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: header_size_limit = 102400
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: header_address_token_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: header_address_token_limit = 10240
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mime_nesting_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mime_nesting_limit = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mime_boundary_length_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mime_boundary_length_limit = 2048
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_loglevel = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_loglevel = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_loglevel = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_loglevel = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: tls_daemon_random_bytes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: tls_daemon_random_bytes = 32
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_dns_lookups = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_dns_lookups = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: soft_bounce = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: soft_bounce = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: owner_request_special = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: owner_request_special = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_8bitmime = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_8bitmime = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_7bit_headers = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_7bit_headers = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_8bitmime_body = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_8bitmime_body = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_mime_encoding_domai n = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_mime_encoding_domai n = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_mime_input_process ing = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_mime_input_process ing = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_mime_output_conver sion = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_mime_output_conver sion = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_negative_ca che = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_negative_ca che = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: backwards_bounce_logfile_c ompatibili ty = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: backwards_bounce_logfile_c ompatibili ty = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: helpful_warnings = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: helpful_warnings = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: application_event_drain_ti me = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: application_event_drain_ti me = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: application_event_drain_ti me = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: max_idle = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: max_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: max_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: ipc_timeout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_timeout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_idle = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: ipc_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_ttl = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: ipc_ttl = 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_ttl = 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: trigger_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: trigger_timeout = 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: trigger_timeout = 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fork_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fork_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fork_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: deliver_lock_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: deliver_lock_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: deliver_lock_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: stale_lock_time = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: stale_lock_time = 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: stale_lock_time = 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_session_cache_ti meout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_session_cache_ti meout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_session_cache_ti meout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_session_cache_tim eout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_session_cache_tim eout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_session_cache_tim eout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: daemon_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: daemon_timeout = 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: daemon_timeout = 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: in_flow_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: in_flow_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: in_flow_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 127.0.0.1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 255.0.0.0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 192.168.1.100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 255.255.255.0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_local: configured 2 IPv4 addresses
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: process_id = 858
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_recipient_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_recipient_limit = 1000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_soft_error_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_soft_error_limit = 10
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_hard_error_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_hard_error_limit = 20
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: queue_minfree = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: queue_minfree = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_client_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_client_reject_code = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: invalid_hostname_reject_co de = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: invalid_hostname_reject_co de = 501
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_hostname_reject_co de = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_hostname_reject_co de = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_address_reject_cod e = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_address_reject_cod e = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_domains_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_domains_reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: maps_rbl_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: maps_rbl_reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: access_map_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: access_map_reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: defer_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: defer_code = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: non_fqdn_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: non_fqdn_reject_code = 504
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_junk_command_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_junk_command_limit = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_recipient_overshoot_ limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_recipient_overshoot_ limit = 1000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_history_flush_thresh old = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_history_flush_thresh old = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unverified_sender_reject_c ode = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unverified_sender_reject_c ode = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unverified_recipient_rejec t_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unverified_recipient_rejec t_code = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: multi_recipient_bounce_rej ect_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: multi_recipient_bounce_rej ect_code = 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_local_recipient_re ject_code = 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_virtual_alias_reje ct_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_virtual_alias_reje ct_code = 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_virtual_mailbox_re ject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_virtual_mailbox_re ject_code = 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_relay_recipient_re ject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_relay_recipient_re ject_code = 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_poll_count = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_poll_count = 3
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_connection_ra te_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_connection_ra te_limit = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_connection_co unt_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_connection_co unt_limit = 50
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_message_rate_ limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_message_rate_ limit = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_recipient_rat e_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_recipient_rat e_limit = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_ccert_verifydept h = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_ccert_verifydept h = 5
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_banner = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname ESMTP $mail_name
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_name = Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $myhostname ESMTP $mail_name -> email.redhatresources.com ESMTP Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_banner = email.redhatresources.com ESMTP Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: notify_classes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: resource, software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  resource, software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: notify_classes = resource, software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_helo_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_helo_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sender_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sender_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_recipient_restrictio ns = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: permit_mynetworks, reject_unauth_destination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  permit_mynetworks, reject_unauth_destination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_recipient_restrictio ns = permit_mynetworks, reject_unauth_destination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_etrn_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_etrn_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_data_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_data_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_end_of_data_restrict ions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_end_of_data_restrict ions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: maps_rbl_domains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: maps_rbl_domains =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: rbl_reply_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: rbl_reply_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: error_notice_recipient = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: error_notice_recipient = postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_restriction_classes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_restriction_classes =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: canonical_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: canonical_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: recipient_canonical_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: recipient_canonical_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: virtual_alias_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $virtual_maps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: virtual_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $virtual_maps ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: virtual_alias_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: virtual_mailbox_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: virtual_mailbox_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alias_maps = hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: local_recipient_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: proxy:unix:passwd.byname $alias_maps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alias_maps = hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand proxy:unix:passwd.byname $alias_maps -> proxy:unix:passwd.byname hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: local_recipient_maps = proxy:unix:passwd.byname hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_security_option s = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_security_option s = noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_application_nam e = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: smtpd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  smtpd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_application_nam e = smtpd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_local_domain = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_local_domain =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_exceptions_netw orks = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_exceptions_netw orks =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: content_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: content_filter =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: permit_mx_backup_networks = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: permit_mx_backup_networks =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sender_login_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sender_login_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_noop_commands = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_noop_commands =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_forbidden_commands = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: CONNECT GET POST
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  CONNECT GET POST
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_forbidden_commands = CONNECT GET POST
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_null_access_lookup_k ey = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: <>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  <>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_null_access_lookup_k ey = <>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_recipient_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_recipient_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_sender = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_sender = postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_authorized_verp_clie nts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $authorized_verp_clients
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: authorized_verp_clients = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $authorized_verp_clients ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_authorized_verp_clie nts =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_proxy_filter =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_ehlo = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $myhostname -> email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_proxy_ehlo = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: receive_override_options = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: receive_override_options =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_authorized_xclient_h osts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_authorized_xclient_h osts =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_authorized_xforward_ hosts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_authorized_xforward_ hosts =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_event_limit_e xceptions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: ${smtpd_client_connection_ limit_exce ptions:$my networks}
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_connection_li mit_except ions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand ${smtpd_client_connection_ limit_exce ptions:$my networks} -> 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_event_limit_e xceptions = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: local_header_rewrite_clien ts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: local_header_rewrite_clien ts = permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_discard_ehlo_keyword s = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_discard_ehlo_keyword s =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_discard_ehlo_keyword _address_m aps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_discard_ehlo_keyword _address_m aps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_clientcerts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_clientcerts =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_tls_security_op tions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtpd_sasl_security_optio ns
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_security_option s = noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtpd_sasl_security_optio ns -> noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_tls_security_op tions = noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_expansion_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_expansion_filter = \t\40!"#$%&'()*+,-./012345 6789:;<=>? @ABCDEFGHI JKLMNOPQRS TUVWXYZ[\\ ]^_`abcdef ghijklmnop qrstuvwxyz {|}~
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_rbl_reply = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_rbl_reply = $rbl_code Service unavailable; $rbl_class [$rbl_what] blocked using $rbl_domain${rbl_reason?; $rbl_reason}
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_helo_required = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_helo_required = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_delay_reject = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_delay_reject = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_rfc821_envelopes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_rfc821_envelopes = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_vrfy_command = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_vrfy_command = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: allow_untrusted_routing = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: allow_untrusted_routing = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_auth_enable = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_auth_enable = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: broken_sasl_auth_clients = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: broken_sasl_auth_clients = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: show_user_unknown_table_na me = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: show_user_unknown_table_na me = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_reject_unlisted_send er = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_reject_unlisted_send er = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_reject_unlisted_reci pient = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_reject_unlisted_reci pient = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_use_tls = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_use_tls = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_enforce_tls = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_enforce_tls = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_wrappermode = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_wrappermode = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_auth_only = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_auth_only = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_ask_ccert = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_ask_ccert = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_req_ccert = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_req_ccert = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_received_header = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_received_header = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_error_sleep_time = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_error_sleep_time = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_error_sleep_time = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_proxy_timeout = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_timeout = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_poll_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_poll_delay = 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_poll_delay = 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_timeo ut = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_policy_service_timeo ut = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_timeo ut = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_i dle = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_policy_service_max_i dle = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_i dle = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_t tl = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_policy_service_max_t tl = 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_t tl = 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_starttls_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_starttls_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_starttls_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: process generation: 3 (3)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: mynetworks ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: mynetworks ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: mynetworks ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? permit_mx_backup_networks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? qmqpd_authorized_clients
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? relay_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? permit_mx_backup_networks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect to subsystem private/proxymap
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = open
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr table = unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 64
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 80
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_proxy_open: connect to map=unix:passwd.byname status=0 server_flags=0120
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_open: proxy:unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_register: proxy:unix:passwd.byname(0 ,100) 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_open: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_register: hash:/etc/aliases(0,100) 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? permit_mx_backup_networks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? qmqpd_authorized_clients
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? relay_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? smtpd_access_maps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: fast_flush_domains ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: fast_flush_domains ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: chroot (none) user postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: attr_clnt_create: transport=local endpoint=private/anvil
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_create: 0x929cf30 18000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_stop: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_start: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connection established
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: master_notify: status 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: name_mask: resource
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: name_mask: software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect from rwcrmhc13.comcast.net[216. 148.227.15 3]
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: attr_clnt_connect: connected to private/anvil
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = connect
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr ident = smtp:216.148.227.153
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: count
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: count
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: rate
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: rate
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 220 email.redhatresources.com ESMTP Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216. 148.227.15 3]: EHLO rwcrmhc13.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250-email.redhatresources. com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250-PIPELINING
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250-SIZE 10240000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250-VRFY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250-ETRN
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250 8BITMIME
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216. 148.227.15 3]: MAIL FROM:<m-weisel@comcast.net > SIZE=600
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: input: <m-weisel@comcast.net>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_addr: addr=m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect to subsystem private/rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr rule = local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: rewrite_clnt: local: m-weisel@comcast.net -> m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = resolve
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: smtp
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 4096
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: resolve_clnt: `m-weisel@comcast.net' -> transp=`smtp' host=`smtp.comcast.net' rcpt=`m-weisel@comcast.net ' flags= class=default
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: install entry key m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: result: m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: fsspace: .: block size 4096, blocks free 2004304
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_size: blocks 4096 avail 2004304 min_free 0 msg_size_limit 10240000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250 Ok
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216. 148.227.15 3]: RCPT TO:<max@maxweisel.com>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: input: <max@maxweisel.com>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_addr: addr=max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr rule = local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: rewrite_clnt: local: max@maxweisel.com -> max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = resolve
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 256
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: resolve_clnt: `max@maxweisel.com' -> transp=`local' host=`email.redhatresource s.com' rcpt=`max@maxweisel.com' flags= class=local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: install entry key max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: result: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr rule = local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: postmaster@redhatresources .com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: rewrite_clnt: local: postmaster -> postmaster@redhatresources .com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >>>Â START Recipient address RESTRICTIONS <<<
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=permit_mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: permit_mynetworks: rwcrmhc13.comcast.net 216.148.227.153
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=permit_mynetworks status=0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=reject_unauth_destina tion
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: reject_unauth_destination: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: permit_auth_destination: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: leave existing entry key max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=reject_unauth_destina tion status=0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >>>Â END Recipient address RESTRICTIONS <<<
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >>>Â CHECKING RECIPIENT MAPS <<<
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: leave existing entry key max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: recipient_canonical_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources. com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co m
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: recipient_canonical_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: recipient_canonical_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: canonical_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources. com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co m
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: canonical_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: canonical_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources. com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co m
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = lookup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr table = unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 64
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr key = max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_proxy_lookup: table=unix:passwd.byname flags=0100 key=max@maxweisel.com -> status=1 result=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: local_recipient_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources. com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co m
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = lookup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr table = unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 64
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr key = max
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: max:x:503:504::/var/www/ho sting/max: /bin/ftpac cess
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_proxy_lookup: table=unix:passwd.byname flags=0100 key=max -> status=0 result=max:x:503:504::/var /www/hosti ng/max:/bi n/ftpacces s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: local_recipient_maps: proxy:unix:passwd.byname(0 ,100): max = max:x:503:504::/var/www/ho sting/max: /bin/ftpac cess
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> max:x:503:504::/var/www/ho sting/max: /bin/ftpac cess
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_rewrite: trying: permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: permit_inet_interfaces: rwcrmhc13.comcast.net 216.148.227.153
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: before input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: after input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect to subsystem public/cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: queue_id
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: queue_id
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: ED855230F70
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 50
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ED855230F70: client=rwcrmhc13.comcast.n et[216.148 .227.153]
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250 Ok
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216. 148.227.15 3]: DATA
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 354 End data with <CR><LF>.<CR><LF>
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: status
Mar 26 14:56:07 redhatresources postfix/cleanup[862]: ED855230F70: message-id=<032620062154.8 493.44270D 97000E3ACB 0000212D22 0700095304 0A9C070A99 D303@comca st.net>
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: reason
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute name: reason
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute value: (end)
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: (list terminator)
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 250 Ok: queued as ED855230F70
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:07 redhatresources postfix/qmgr[854]: ED855230F70: from=<m-weisel@comcast.net >, size=812, nrcpt=1 (queue active)
Mar 26 14:56:07 redhatresources postfix/local[863]: ED855230F70: to=<max@maxweisel.com>, relay=local, delay=1, status=sent (delivered to mailbox)
Mar 26 14:56:07 redhatresources postfix/qmgr[854]: ED855230F70: removed
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216. 148.227.15 3]: QUIT
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216. 148.227.15 3]: 221 Bye
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 168.100.189.0/28
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 168.100.189.0/28
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 127.0.0.0/8
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 127.0.0.0/8
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 123.123.0.0/16
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 123.123.0.0/16
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: send attr request = disconnect
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: send attr ident = smtp:216.148.227.153
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: status
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: (list terminator)
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: disconnect from rwcrmhc13.comcast.net[216. 148.227.15 3]
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: master_notify: status 1
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: connection closed
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: watchdog_stop: 0x929cf30
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: watchdog_start: 0x929cf30
Max
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: syslog_facility = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: mail
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  mail
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: syslog_facility = mail
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: inet_protocols = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: inet_protocols = ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: name_mask: ipv4
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mail_name = Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: syslog_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: syslog_name = postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_owner = postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: setgid_group = postdrop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postdrop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postdrop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com -> email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myorigin = $mydomain
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $mydomain
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $mydomain -> redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relayhost = smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: daemon_directory = /usr/libexec/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /usr/libexec/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  /usr/libexec/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: command_directory = /usr/sbin
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /usr/sbin
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  /usr/sbin
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: queue_directory = /var/spool/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /var/spool/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  /var/spool/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: process_id_directory = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: pid
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  pid
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: process_id_directory = pid
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: inet_interfaces = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: all
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  all
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: inet_interfaces = all
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: proxy_interfaces = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: proxy_interfaces =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: double_bounce_sender = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: double-bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  double-bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: double_bounce_sender = double-bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_privs = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: nobody
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  nobody
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_privs = nobody
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alias_database = hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_release_date = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 20050401
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  20050401
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mail_release_date = 20050401
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_version = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 2.2.2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  2.2.2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mail_version = 2.2.2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_database_type = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  hash
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_database_type = hash
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: hash_queue_names = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: deferred, defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  deferred, defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: hash_queue_names = deferred, defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: recipient_delimiter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: recipient_delimiter =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_domains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $mydestination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname, localhost.$mydomain, localhost, $mydomain, email.$mydomain, mail.$mydomain, webmail.$mydomain, mail.mypspradio.com, webmail.mypspradio.com, email.mypspradio.com, mypspradio.com, localhost.mypspradio.com, mail.maxweisel.com, webmail.maxweisel.com, email.maxweisel.com, maxweisel.com, localhost.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mydomain = redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $mydestination -> email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_domains = email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fast_flush_domains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $relay_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_domains = email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $relay_domains -> email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fast_flush_domains = email.redhatresources.com,
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: export_environment = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: TZ MAIL_CONFIG
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  TZ MAIL_CONFIG
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: export_environment = TZ MAIL_CONFIG
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: import_environment = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: import_environment = MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mynetworks_style = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: subnet
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  subnet
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mynetworks_style = subnet
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: debug_peer_list = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: debug_peer_list =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_verp_delimiters = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: +=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  +=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_verp_delimiters = +=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: verp_delimiter_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: -=+
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  -=+
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: verp_delimiter_filter = -=+
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: parent_domain_matches_subd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: debug_peer_list,fast_flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  debug_peer_list,fast_flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: parent_domain_matches_subd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alternate_config_directori
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: alternate_config_directori
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: bounce_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: bounce_service_name = bounce
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: cleanup_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: cleanup_service_name = cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: defer_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: defer_service_name = defer
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: pickup_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: pickup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  pickup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: pickup_service_name = pickup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: queue_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: qmgr
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  qmgr
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: queue_service_name = qmgr
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: rewrite_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: rewrite_service_name = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: showq_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: showq
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  showq
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: showq_service_name = showq
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: error_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: error
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  error
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: error_service_name = error
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: flush_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: flush_service_name = flush
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_service_nam
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: verify
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  verify
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_service_nam
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: trace_service_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: trace
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  trace
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: trace_service_name = trace
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: tls_random_exchange_name = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: ${config_directory}/prng_e
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: config_directory = /etc/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: /etc/postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand ${config_directory}/prng_e
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: tls_random_exchange_name = /etc/postfix/prng_exch
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_cert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_key_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtpd_tls_cert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtpd_tls_cert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_key_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dcert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dkey_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtpd_tls_dcert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtpd_tls_dcert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dkey_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_CAfile = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_CAfile =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_CApath = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_CApath =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_cipherlist = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_cipherlist =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dh512_param_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dh512_param_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_dh1024_param_fil
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_dh1024_param_fil
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_session_cache_da
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_session_cache_da
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_cert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_key_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtp_tls_cert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_cert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtp_tls_cert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_key_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_dcert_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_dkey_file = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtp_tls_dcert_file
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_dcert_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtp_tls_dcert_file ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_dkey_file =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_CAfile = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_CAfile =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_CApath = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_CApath =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_cipherlist = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_cipherlist =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_session_cache_dat
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_session_cache_dat
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: max_use = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: max_use = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: dont_remove = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: dont_remove = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: line_length_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: line_length_limit = 2048
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: message_size_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: message_size_limit = 10240000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: hash_queue_depth = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: hash_queue_depth = 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fork_attempts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fork_attempts = 5
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: deliver_lock_attempts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: deliver_lock_attempts = 20
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: debug_peer_level = 2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  2
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fault_injection_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fault_injection_code = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: berkeley_db_create_buffer_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: berkeley_db_create_buffer_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: berkeley_db_read_buffer_si
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: berkeley_db_read_buffer_si
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: header_size_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: header_size_limit = 102400
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: header_address_token_limit
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: header_address_token_limit
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mime_nesting_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mime_nesting_limit = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mime_boundary_length_limit
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: mime_boundary_length_limit
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_loglevel = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_loglevel = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_loglevel = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_loglevel = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: tls_daemon_random_bytes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: tls_daemon_random_bytes = 32
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_dns_lookups = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_dns_lookups = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: soft_bounce = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: soft_bounce = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: owner_request_special = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: owner_request_special = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_8bitmime = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_8bitmime = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_7bit_headers = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_7bit_headers = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_8bitmime_body = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_8bitmime_body = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_mime_encoding_domai
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_mime_encoding_domai
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_mime_input_process
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_mime_input_process
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_mime_output_conver
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_mime_output_conver
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_negative_ca
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_negative_ca
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: backwards_bounce_logfile_c
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: backwards_bounce_logfile_c
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: helpful_warnings = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: helpful_warnings = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: application_event_drain_ti
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: application_event_drain_ti
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: application_event_drain_ti
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: max_idle = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: max_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: max_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: ipc_timeout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_timeout = 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_idle = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: ipc_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_idle = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_ttl = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: ipc_ttl = 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: ipc_ttl = 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: trigger_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: trigger_timeout = 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: trigger_timeout = 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  10s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fork_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: fork_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: fork_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: deliver_lock_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: deliver_lock_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: deliver_lock_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: stale_lock_time = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: stale_lock_time = 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: stale_lock_time = 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  500s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_session_cache_ti
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_session_cache_ti
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_session_cache_ti
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_session_cache_tim
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtp_tls_session_cache_tim
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtp_tls_session_cache_tim
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3600s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: daemon_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: daemon_timeout = 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: daemon_timeout = 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  18000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: in_flow_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: in_flow_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: in_flow_delay = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 127.0.0.1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 255.0.0.0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 192.168.1.100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_list_append: 255.255.255.0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: inet_addr_local: configured 2 IPv4 addresses
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: process_id = 858
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_recipient_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_recipient_limit = 1000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_soft_error_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_soft_error_limit = 10
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_hard_error_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_hard_error_limit = 20
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: queue_minfree = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: queue_minfree = 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_client_reject_code
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_client_reject_code
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: invalid_hostname_reject_co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: invalid_hostname_reject_co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_hostname_reject_co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_hostname_reject_co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_address_reject_cod
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_address_reject_cod
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_domains_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_domains_reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: maps_rbl_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: maps_rbl_reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: access_map_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: access_map_reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: reject_code = 554
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: defer_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: defer_code = 450
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: non_fqdn_reject_code = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: non_fqdn_reject_code = 504
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_junk_command_limit = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_junk_command_limit = 100
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_recipient_overshoot_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_recipient_overshoot_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_history_flush_thresh
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_history_flush_thresh
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unverified_sender_reject_c
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unverified_sender_reject_c
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unverified_recipient_rejec
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unverified_recipient_rejec
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: multi_recipient_bounce_rej
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: multi_recipient_bounce_rej
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_local_recipient_re
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  550
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_virtual_alias_reje
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_virtual_alias_reje
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_virtual_mailbox_re
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_virtual_mailbox_re
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: unknown_relay_recipient_re
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: unknown_relay_recipient_re
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_poll_count = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_poll_count = 3
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_connection_ra
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_connection_ra
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_connection_co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_connection_co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_message_rate_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_message_rate_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_recipient_rat
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_recipient_rat
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_ccert_verifydept
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_ccert_verifydept
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_banner = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname ESMTP $mail_name
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mail_name = Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $myhostname ESMTP $mail_name -> email.redhatresources.com ESMTP Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_banner = email.redhatresources.com ESMTP Postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: notify_classes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: resource, software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  resource, software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: notify_classes = resource, software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_helo_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_helo_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sender_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sender_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_recipient_restrictio
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: permit_mynetworks, reject_unauth_destination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  permit_mynetworks, reject_unauth_destination
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_recipient_restrictio
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_etrn_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_etrn_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_data_restrictions = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_data_restrictions =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_end_of_data_restrict
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_end_of_data_restrict
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: maps_rbl_domains = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: maps_rbl_domains =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: rbl_reply_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: rbl_reply_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: error_notice_recipient = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: error_notice_recipient = postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_restriction_classes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_restriction_classes =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: canonical_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: canonical_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: recipient_canonical_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: recipient_canonical_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: virtual_alias_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $virtual_maps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: virtual_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $virtual_maps ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: virtual_alias_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: virtual_mailbox_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: virtual_mailbox_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alias_maps = hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: local_recipient_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: proxy:unix:passwd.byname $alias_maps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: alias_maps = hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand proxy:unix:passwd.byname $alias_maps -> proxy:unix:passwd.byname hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: local_recipient_maps = proxy:unix:passwd.byname hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_security_option
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_security_option
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_application_nam
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: smtpd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  smtpd
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_application_nam
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_local_domain = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_local_domain =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_exceptions_netw
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_exceptions_netw
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: content_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: content_filter =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: permit_mx_backup_networks = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: permit_mx_backup_networks =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sender_login_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sender_login_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_noop_commands = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_noop_commands =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_forbidden_commands = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: CONNECT GET POST
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  CONNECT GET POST
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_forbidden_commands = CONNECT GET POST
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_null_access_lookup_k
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: <>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  <>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_null_access_lookup_k
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_recipient_maps = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_recipient_maps =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_sender = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_sender = postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_authorized_verp_clie
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $authorized_verp_clients
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: authorized_verp_clients = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $authorized_verp_clients ->
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_authorized_verp_clie
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_proxy_filter =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_ehlo = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $myhostname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: myhostname = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $myhostname -> email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_proxy_ehlo = email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: receive_override_options = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: receive_override_options =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_authorized_xclient_h
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_authorized_xclient_h
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_authorized_xforward_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_authorized_xforward_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_event_limit_e
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: ${smtpd_client_connection_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_client_connection_li
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand ${smtpd_client_connection_
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_client_event_limit_e
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: local_header_rewrite_clien
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: local_header_rewrite_clien
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_discard_ehlo_keyword
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_discard_ehlo_keyword
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_discard_ehlo_keyword
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_discard_ehlo_keyword
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: relay_clientcerts = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const Â
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: relay_clientcerts =
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_tls_security_op
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: $smtpd_sasl_security_optio
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_security_option
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: noanonymous
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: expand $smtpd_sasl_security_optio
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_tls_security_op
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_expansion_filter = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_expansion_filter = \t\40!"#$%&'()*+,-./012345
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: default_rbl_reply = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: default_rbl_reply = $rbl_code Service unavailable; $rbl_class [$rbl_what] blocked using $rbl_domain${rbl_reason?; $rbl_reason}
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_helo_required = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_helo_required = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_delay_reject = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_delay_reject = yes
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: strict_rfc821_envelopes = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: strict_rfc821_envelopes = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: disable_vrfy_command = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: disable_vrfy_command = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: allow_untrusted_routing = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: allow_untrusted_routing = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_sasl_auth_enable = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_sasl_auth_enable = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: broken_sasl_auth_clients = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: broken_sasl_auth_clients = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: show_user_unknown_table_na
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: show_user_unknown_table_na
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_reject_unlisted_send
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_reject_unlisted_send
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_reject_unlisted_reci
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_reject_unlisted_reci
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_use_tls = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_use_tls = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_enforce_tls = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_enforce_tls = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_wrappermode = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_wrappermode = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_auth_only = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_auth_only = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_ask_ccert = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_ask_ccert = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_req_ccert = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_req_ccert = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_tls_received_header = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_tls_received_header = no
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_error_sleep_time = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_error_sleep_time = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_error_sleep_time = 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_proxy_timeout = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_proxy_timeout = 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_poll_delay = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: address_verify_poll_delay = 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: address_verify_poll_delay = 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  3s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_timeo
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_policy_service_timeo
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_timeo
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  100s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_i
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_policy_service_max_i
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_i
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_t
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_policy_service_max_t
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_policy_service_max_t
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  1000s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_starttls_timeout = (notfound)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_update: smtpd_starttls_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_lookup: smtpd_starttls_timeout = 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mac_parse: 300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_eval: const  300s
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: process generation: 3 (3)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: mynetworks ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: mynetworks ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: mynetworks ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? permit_mx_backup_networks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? qmqpd_authorized_clients
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: relay_domains ~? relay_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: permit_mx_backup_networks ~? permit_mx_backup_networks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect to subsystem private/proxymap
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = open
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr table = unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 64
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 80
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_proxy_open: connect to map=unix:passwd.byname status=0 server_flags=0120
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_open: proxy:unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_register: proxy:unix:passwd.byname(0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_open: hash:/etc/aliases
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_register: hash:/etc/aliases(0,100) 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? permit_mx_backup_networks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? qmqpd_authorized_clients
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? relay_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: smtpd_access_maps ~? smtpd_access_maps
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: fast_flush_domains ~? debug_peer_list
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: fast_flush_domains ~? fast_flush_domains
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: chroot (none) user postfix
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: attr_clnt_create: transport=local endpoint=private/anvil
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_create: 0x929cf30 18000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_stop: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_start: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connection established
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: master_notify: status 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: name_mask: resource
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: name_mask: software
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect from rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: attr_clnt_connect: connected to private/anvil
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = connect
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr ident = smtp:216.148.227.153
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: count
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: count
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: rate
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: rate
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: input: <m-weisel@comcast.net>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_addr: addr=m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect to subsystem private/rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr rule = local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: rewrite_clnt: local: m-weisel@comcast.net -> m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = resolve
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: smtp
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: smtp.comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 4096
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: resolve_clnt: `m-weisel@comcast.net' -> transp=`smtp' host=`smtp.comcast.net' rcpt=`m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: install entry key m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: result: m-weisel@comcast.net
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: fsspace: .: block size 4096, blocks free 2004304
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_size: blocks 4096 avail 2004304 min_free 0 msg_size_limit 10240000
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: input: <max@maxweisel.com>
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_addr: addr=max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr rule = local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: rewrite_clnt: local: max@maxweisel.com -> max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = resolve
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: transport
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: nexthop
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: recipient
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 256
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: resolve_clnt: `max@maxweisel.com' -> transp=`local' host=`email.redhatresource
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: install entry key max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: extract_addr: result: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = rewrite
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr rule = local
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr address = postmaster
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: flags
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: address
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: postmaster@redhatresources
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/rewrite socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: rewrite_clnt: local: postmaster -> postmaster@redhatresources
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >>>Â START Recipient address RESTRICTIONS <<<
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=permit_mynetworks
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: permit_mynetworks: rwcrmhc13.comcast.net 216.148.227.153
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 168.100.189.0/28
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 127.0.0.0/8
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 123.123.0.0/16
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=permit_mynetworks status=0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=reject_unauth_destina
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: reject_unauth_destination:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: permit_auth_destination: max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: leave existing entry key max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: generic_checks: name=reject_unauth_destina
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >>>Â END Recipient address RESTRICTIONS <<<
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >>>Â CHECKING RECIPIENT MAPS <<<
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ctable_locate: leave existing entry key max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: recipient_canonical_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: recipient_canonical_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: recipient_canonical_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: canonical_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: canonical_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: canonical_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = lookup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr table = unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 64
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr key = max@maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 1
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_proxy_lookup: table=unix:passwd.byname flags=0100 key=max@maxweisel.com -> status=1 result=
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: local_recipient_maps: max@maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.redhatresources.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.redhatresources.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.redhatresources.co
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? localhost.mypspradio.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? mail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? webmail.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? email.maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: match_string: maxweisel.com ~? maxweisel.com
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr request = lookup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr table = unix:passwd.byname
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 64
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr key = max
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: value
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: max:x:503:504::/var/www/ho
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: private/proxymap socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: dict_proxy_lookup: table=unix:passwd.byname flags=0100 key=max -> status=0 result=max:x:503:504::/var
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: local_recipient_maps: proxy:unix:passwd.byname(0
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> max:x:503:504::/var/www/ho
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: smtpd_check_rewrite: trying: permit_inet_interfaces
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: permit_inet_interfaces: rwcrmhc13.comcast.net 216.148.227.153
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: before input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: after input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: connect to subsystem public/cleanup
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: queue_id
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: queue_id
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute value: ED855230F70
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: (list terminator)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: send attr flags = 50
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: ED855230F70: client=rwcrmhc13.comcast.n
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: status
Mar 26 14:56:07 redhatresources postfix/cleanup[862]: ED855230F70: message-id=<032620062154.8
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: reason
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute name: reason
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute value: (end)
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: public/cleanup socket: wanted attribute: (list terminator)
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:07 redhatresources postfix/smtpd[858]: watchdog_pat: 0x929cf30
Mar 26 14:56:07 redhatresources postfix/qmgr[854]: ED855230F70: from=<m-weisel@comcast.net
Mar 26 14:56:07 redhatresources postfix/local[863]: ED855230F70: to=<max@maxweisel.com>, relay=local, delay=1, status=sent (delivered to mailbox)
Mar 26 14:56:07 redhatresources postfix/qmgr[854]: ED855230F70: removed
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: <Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: >Â rwcrmhc13.comcast.net[216.
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 168.100.189.0/28
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 168.100.189.0/28
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 127.0.0.0/8
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 127.0.0.0/8
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostname: rwcrmhc13.comcast.net ~? 123.123.0.0/16
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_hostaddr: 216.148.227.153 ~? 123.123.0.0/16
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_list_match: rwcrmhc13.comcast.net: no match
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: match_list_match: 216.148.227.153: no match
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: send attr request = disconnect
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: send attr ident = smtp:216.148.227.153
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: status
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: input attribute name: status
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: input attribute value: 0
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: private/anvil: wanted attribute: (list terminator)
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: input attribute name: (end)
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: disconnect from rwcrmhc13.comcast.net[216.
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: master_notify: status 1
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: connection closed
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: watchdog_stop: 0x929cf30
Mar 26 14:56:08 redhatresources postfix/smtpd[858]: watchdog_start: 0x929cf30
Max
ASKER
ok my domain is redhatresources.com but the domain that I am sending the email to is maxweisel.com
Max
Max
ASKER
and when I say mydomain I mean $mydomain variable.
Max
Max
ASKER
ok I figured it out.
once I posted my main.cf with example.net and stuff I accidentally saved it after fixing the 127.0.1.0
Max
once I posted my main.cf with example.net and stuff I accidentally saved it after fixing the 127.0.1.0
Max
what is
rwcrmhc14.example.com
then?
also, if you are sending from your comcast account, then how is it that the log you posted is saying from max@example.com to max@example.net
The from should be your comcast account then shouildn't it.
rwcrmhc14.example.com
then?
also, if you are sending from your comcast account, then how is it that the log you posted is saying from max@example.com to max@example.net
The from should be your comcast account then shouildn't it.
also, please add the double -v in the master.cf file so we can get more verbose logs
Here is a problem:
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
also here:
maps_find: local_recipient_maps: max@maxweisel.com: not found
Do your postfix should maintain only 'redhatresources.com' domain and send everithing else to 'smarthost'?
If yes, maxweisel.com is not your domain and the problem is in your trusted networks. Mail should never be
relayed when coming from networks other then 'mynetworks'.
You are sending from '216.148.227.153', it's not in 'mynetworks', so either append '216.148.227.0/24' to your networks OR configure user authorization.
In first case:
mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16, 216.148.227.0/24
BUT entire 216.148.227.0/24 netwerk will be able to send messages through your server
In second case, read docs: http://www.postfix.org/SASL_README.html
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: max: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: maps_find: virtual_alias_maps: @maxweisel.com: not found
Mar 26 14:56:06 redhatresources postfix/smtpd[858]: mail_addr_find: max@maxweisel.com -> (not found)
also here:
maps_find: local_recipient_maps: max@maxweisel.com: not found
Do your postfix should maintain only 'redhatresources.com' domain and send everithing else to 'smarthost'?
If yes, maxweisel.com is not your domain and the problem is in your trusted networks. Mail should never be
relayed when coming from networks other then 'mynetworks'.
You are sending from '216.148.227.153', it's not in 'mynetworks', so either append '216.148.227.0/24' to your networks OR configure user authorization.
In first case:
mynetworks = 168.100.189.0/28, 127.0.0.0/8, 123.123.0.0/16, 216.148.227.0/24
BUT entire 216.148.227.0/24 netwerk will be able to send messages through your server
In second case, read docs: http://www.postfix.org/SASL_README.html
ASKER
My mail server is for 3 of my domains.
Max
Max
Somehow your  host ( computer ) loopback IP address ( which is by default  127.0.0.0 ) has a wrong octet and it is -according to the error message you're geting -  now  127.0.1.0 Â
That's really puzzling thing and to be honest I don't know how to get arround suggested solution:
"perhaps you should use "127.0.0.0/8" instead"
Probably by reconfiguring your host network card ID address .
Try pinging localhost on both postfix server and on workstation you're trying to send an email from to see
which one has wrong loopback IP address ( 127.0.1.0 )
--------------------------
I'll be watching this thread for the answer too.
sincerely
nedvis
 Â