Skip to content

Lost connection after CONNECT from localhost #104

@yfhyou

Description

@yfhyou

Behaviour

After some time running anonaddy in docker, receiving emails stops working with the following output:

Jan 25 11:12:55 anonaddy postfix/smtpd[1281]: lost connection after CONNECT from localhost[127.0.0.1]
Jan 25 11:12:55 anonaddy postfix/smtpd[1281]: disconnect from localhost[127.0.0.1] commands=0/0
Jan 25 11:12:55 anonaddy postfix/pipe[1287]: 7DAF417C92E: to=<2yq3jgy4@mydomain.com>, relay=anonaddy, delay=92, delays=0.4/0.01/0/91, dsn=4.3.0, status=deferred (An error has occurred, please try again later. )

Steps to reproduce this issue

  1. Install anonaddy following traefik example
  2. Wait? Not sure what changes as emails forwarded for awhile then stopped.

Expected behaviour

Emails sent to aliases get forwarded to my recipient email address

Actual behaviour

Emails stop getting forwarded to my recipient address. The alias will still show an additional forwarded email on the dashboard, but the email never goes through to the final destination. Replying to emails I've received before it breaks seems to still work. The 'Send From' option appears to work as well.

Configuration

  • Docker version (type docker --version) : Docker version 20.10.12, build e91ed57
  • Docker compose version if applicable (type docker-compose --version) : docker-compose version 1.29.2, build 5becea4c
  • Platform (Debian 9, Ubuntu 18.04, ...) : Ubuntu 20.04
  • System info (type uname -a) : Linux mail.mydomain.com 5.11.0-1027-oracle 30~20.04.1-Ubuntu SMP Thu Jan 13 09:42:39 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
  • Include all necessary configuration files : docker-compose.yml, .env, ...
docker-compose.yml

version: "3.5"

services:
  traefik:
    image: traefik:2.5
    container_name: traefik
    command:
      - "--global.checknewversion=false"
      - "--global.sendanonymoususage=false"
      - "--log=true"
      - "--log.level=INFO"
      - "--entrypoints.http=true"
      - "--entrypoints.http.address=:80"
      - "--entrypoints.http.http.redirections.entrypoint.to=https"
      - "--entrypoints.http.http.redirections.entrypoint.scheme=https"
      - "--entrypoints.https=true"
      - "--entrypoints.https.address=:443"
      - "--certificatesresolvers.letsencrypt"
      - "--certificatesresolvers.letsencrypt.acme.storage=acme.json"
      - "--certificatesresolvers.letsencrypt.acme.email=webmaster@mydomain.com"
      - "--certificatesresolvers.letsencrypt.acme.httpchallenge"
      - "--certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=http"
      - "--providers.docker"
      - "--providers.docker.watch=true"
      - "--providers.docker.exposedbydefault=false"
    ports:
      - target: 80
        published: 80
        protocol: tcp
      - target: 443
        published: 443
        protocol: tcp
    volumes:
      - "./acme.json:/acme.json"
      - "/var/run/docker.sock:/var/run/docker.sock"
    restart: always

  db:
    image: mariadb:10.5
    container_name: anonaddy_db
    command:
      - "mysqld"
      - "--character-set-server=utf8mb4"
      - "--collation-server=utf8mb4_unicode_ci"
    volumes:
      - "./db:/var/lib/mysql"
    environment:
      - "MYSQL_ALLOW_EMPTY_PASSWORD=yes"
      - "MYSQL_DATABASE"
      - "MYSQL_USER"
      - "MYSQL_PASSWORD"
    restart: always

  redis:
    image: redis:4.0-alpine
    container_name: anonaddy_redis
    restart: always

  anonaddy:
    image: anonaddy/anonaddy:latest
    container_name: anonaddy
    depends_on:
      - db
      - redis
    ports:
      - target: 25
        published: 25
        protocol: tcp
    volumes:
      - "./data:/data"
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.anonaddy.entrypoints=https"
      - "traefik.http.routers.anonaddy.rule=Host(`anonaddy.mydomain.com`)"
      - "traefik.http.routers.anonaddy.tls=true"
      - "traefik.http.routers.anonaddy.tls.certresolver=letsencrypt"
      - "traefik.http.routers.anonaddy.tls.domains[0].main=anonaddy.mydomain.com"
      - "traefik.http.services.anonaddy.loadbalancer.server.port=8000"
    env_file:
      - "./anonaddy.env"
    environment:
      - "DB_HOST=db"
      - "DB_DATABASE=${MYSQL_DATABASE}"
      - "DB_USERNAME=${MYSQL_USER}"
      - "DB_PASSWORD=${MYSQL_PASSWORD}"
      - "REDIS_HOST=redis"
    restart: always

anonaddy.env

TZ=America/New_York
PUID=1001
PGID=1001

MEMORY_LIMIT=256M
UPLOAD_MAX_SIZE=16M
OPCACHE_MEM_SIZE=128
REAL_IP_FROM=0.0.0.0/32
REAL_IP_HEADER=X-Forwarded-For
LOG_IP_VAR=http_x_forwarded_for

APP_KEY=base64:rW4Tj+NDlAagNRtFhEPOJAt1Ix7YJ7t8kByKtXb9omo=
APP_DEBUG=false
APP_URL=https://anonaddy.mydomain.com

ANONADDY_RETURN_PATH=bounces@mydomain.com
ANONADDY_ADMIN_USERNAME=anonaddy
ANONADDY_ENABLE_REGISTRATION=false
ANONADDY_DOMAIN=mydomain.com
ANONADDY_ALL_DOMAINS=mydomain.com
ANONADDY_HOSTNAME=anonaddy.mydomain.com
ANONADDY_DNS_RESOLVER=127.0.0.1
ANONADDY_SECRET=v7s0GaeVcSSVsYLmqzqYXV5uj5aKPRI1saM6sQA3FPA4
ANONADDY_LIMIT=200
ANONADDY_BANDWIDTH_LIMIT=104857600
ANONADDY_NEW_ALIAS_LIMIT=10
ANONADDY_ADDITIONAL_USERNAME_LIMIT=3

MAIL_FROM_NAME=AnonAddy
MAIL_FROM_ADDRESS=anonaddy@mydomain.com

POSTFIX_DEBUG=true
POSTFIX_SMTPD_TLS=false
POSTFIX_SMTP_TLS=false

DKIM_ENABLE=true

Docker info

Client:
 Context:    default
 Debug Mode: false
 Plugins:
  app: Docker App (Docker Inc., v0.9.1-beta3)
  buildx: Docker Buildx (Docker Inc., v0.7.1-docker)
  scan: Docker Scan (Docker Inc., v0.12.0)

Server:
 Containers: 5
  Running: 4
  Paused: 0
  Stopped: 1
 Images: 5
 Server Version: 20.10.12
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: false
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 1
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 7b11cfaabd73bb80907dd23182b9347b4245eb5d
 runc version: v1.0.2-0-g52b36a2
 init version: de40ad0
 Security Options:
  apparmor
  seccomp
   Profile: default
 Kernel Version: 5.11.0-1027-oracle
 Operating System: Ubuntu 20.04.3 LTS
 OSType: linux
 Architecture: x86_64
 CPUs: 2
 Total Memory: 972.1MiB
 Name: mail.stea.pro
 ID: SKJ5:NHSF:IRW4:COG7:FVW6:E7DM:D64S:VKFM:USX6:ZUSN:WOR6:CK6P
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

Logs

anonaddy log (postfix debug enabled)

Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: name_mask: ipv4
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: inet_addr_local: configured 2 IPv4 addresses
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: process generation: 4 (4)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? permit_mx_backup_networks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? qmqpd_authorized_clients
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? relay_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_client_event_limit_exceptions ~? smtpd_access_maps
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: smtpd_client_event_limit_exceptions: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: mynetworks ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: mynetworks ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: mynetworks ~? mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: name_mask: host
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: been_here: 127.0.0.1/32: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: been_here: 172.20.0.5/32: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: mynetworks_core: 127.0.0.1/32 172.20.0.5/32
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: mynetworks ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: mynetworks ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: mynetworks ~? mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: relay_domains ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: relay_domains ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: relay_domains ~? mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: relay_domains ~? permit_mx_backup_networks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: relay_domains ~? qmqpd_authorized_clients
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: relay_domains ~? relay_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: permit_mx_backup_networks ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: permit_mx_backup_networks ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: permit_mx_backup_networks ~? mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: permit_mx_backup_networks ~? permit_mx_backup_networks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? permit_mx_backup_networks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? qmqpd_authorized_clients
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? relay_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: smtpd_access_maps ~? smtpd_access_maps
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: user = anonaddy
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: password = anonaddy
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: dbname = anonaddy
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: result_format = %s
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: option_file = <NULL>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: option_group = client
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: tls_key_file = <NULL>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: tls_cert_file = <NULL>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: tls_CAfile = <NULL>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: tls_CApath = <NULL>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: tls_ciphers = <NULL>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_bool: /etc/postfix/mysql-recipient-access.cf: tls_verify_cert = on
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_bool: /etc/postfix/mysql-recipient-access.cf: require_result_set = on
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_int: /etc/postfix/mysql-recipient-access.cf: expansion_limit = 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: query = CALL check_access('%s')
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: domain =
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: cfg_get_str: /etc/postfix/mysql-recipient-access.cf: hosts = db:3306
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: dict_open: mysql:/etc/postfix/mysql-recipient-access.cf
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: unknown_helo_hostname_tempfail_action = defer_if_permit
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: unknown_address_tempfail_action = defer_if_permit
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: unverified_recipient_tempfail_action = defer_if_permit
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: unverified_sender_tempfail_action = defer_if_permit
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: fast_flush_domains ~? debug_peer_list
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_string: parent_domain_matches_subdomains: fast_flush_domains ~? fast_flush_domains
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: auto_clnt_create: transport=local endpoint=private/anvil
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: connection established
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: master_notify: status 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: name_mask: resource
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: name_mask: software
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: connect from mail-ua1-f42.google.com[209.85.222.42]
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: smtp_stream_setup: maxtime=300 enable_deadline=0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 127.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 127.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? [::1]/128
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? [::1]/128
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 10.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 10.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 172.16.0.0/12
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 172.16.0.0/12
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 192.168.0.0/16
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 192.168.0.0/16
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: auto_clnt_open: connected to private/anvil
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: protocol
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: protocol
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: anvil_protocol
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = connect
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr ident = 25:209.85.222.42
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: status
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: status
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: count
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: count
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 1
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: rate
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: rate
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 1
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: report connect to all milters
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: non-protocol events for protocol version 6:
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: transport=unix endpoint=opendkim/opendkim.sock
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: my_version=0x6
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: my_actions=0x1ff SMFIF_ADDHDRS SMFIF_CHGBODY SMFIF_ADDRCPT SMFIF_DELRCPT SMFIF_CHGHDRS SMFIF_QUARANTINE SMFIF_CHGFROM SMFIF_ADDRCPT_PAR SMFIF_SETSYMLIST
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: my_events=0x1fffff SMFIP_NOCONNECT SMFIP_NOHELO SMFIP_NOMAIL SMFIP_NORCPT SMFIP_NOBODY SMFIP_NOHDRS SMFIP_NOEOH SMFIP_NR_HDR SMFIP_NOUNKNOWN SMFIP_NODATA SMFIP_SKIP SMFIP_RCPT_REJ SMFIP_NR_CONN SMFIP_NR_HELO SMFIP_NR_MAIL SMFIP_NR_RCPT SMFIP_NR_DATA SMFIP_NR_UNKN SMFIP_NR_EOH SMFIP_NR_BODY SMFIP_HDR_LEADSPC
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: milter unix:opendkim/opendkim.sock version 6
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: events SMFIP_NOHELO SMFIP_NOUNKNOWN SMFIP_NODATA SMFIP_SKIP SMFIP_HDR_LEADSPC
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_connect: requests SMFIF_ADDHDRS SMFIF_CHGHDRS SMFIF_SETSYMLIST
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "j"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy.mydomain.com"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{daemon_name}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy.mydomain.com"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{daemon_addr}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "172.20.0.5"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "v"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "Postfix 3.6.4"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "_"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "mail-ua1-f42.google.com [209.85.222.42]"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_conn_event: milter unix:opendkim/opendkim.sock: connect mail-ua1-f42.google.com/209.85.222.42
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: event: SMFIC_CONNECT; macros: j=anonaddy.mydomain.com {daemon_name}=anonaddy.mydomain.com {daemon_addr}=172.20.0.5 v=Postfix 3.6.4 _=mail-ua1-f42.google.com [209.85.222.42]
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 220 anonaddy.mydomain.com ESMTP
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: < mail-ua1-f42.google.com[209.85.222.42]: EHLO mail-ua1-f42.google.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: report helo to all milters
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{tls_version}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cipher}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cipher_bits}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cert_subject}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cert_issuer}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_helo_event: milter unix:opendkim/opendkim.sock: helo mail-ua1-f42.google.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: event: SMFIC_HELO; macros: (none)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: skipping event SMFIC_HELO for milter unix:opendkim/opendkim.sock
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-anonaddy.mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-PIPELINING
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-SIZE 10240000
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-ETRN
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-ENHANCEDSTATUSCODES
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-8BITMIME
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-DSN
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250-SMTPUTF8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250 CHUNKING
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: < mail-ua1-f42.google.com[209.85.222.42]: MAIL FROM:<mytestemail@gmail.com> SIZE=2330
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: extract_addr: input: <mytestemail@gmail.com>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: smtpd_check_addr: addr=mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: connect to subsystem private/rewrite
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: protocol
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: protocol
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: trivial_rewrite_protocol
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = ""
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: ""
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: "" -> ""
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: mytestemail@gmail.com -> mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = resolve
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr sender =
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: transport
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: transport
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: smtp
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: nexthop
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: nexthop
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: recipient
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: recipient
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 4096
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: resolve_clnt: `' -> `mytestemail@gmail.com' -> transp=`smtp' host=`gmail.com' rcpt=`mytestemail@gmail.com' flags= class=default
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key ?mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: extract_addr: in: <mytestemail@gmail.com>, result: mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = double-bounce
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: double-bounce@anonaddy.mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: double-bounce -> double-bounce@anonaddy.mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: report sender to all milters
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "i"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{mail_addr}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key ?mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "mytestemail@gmail.com"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{client_addr}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "209.85.222.42"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{client_name}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "mail-ua1-f42.google.com"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{auth_authen}"
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: milter8_mail_event: milter unix:opendkim/opendkim.sock: mail <mytestemail@gmail.com> SIZE=2330
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: event: SMFIC_MAIL; macros: {mail_addr}=mytestemail@gmail.com {client_addr}=209.85.222.42 {client_name}=mail-ua1-f42.google.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: smtpd_check_rewrite: trying: permit_inet_interfaces
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: permit_inet_interfaces: mail-ua1-f42.google.com 209.85.222.42
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: fsspace: .: block size 4096, blocks free 10645742
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: smtpd_check_queue: blocks 4096 avail 10645742 min_free 0 msg_size_limit 10240000
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250 2.1.0 Ok
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: < mail-ua1-f42.google.com[209.85.222.42]: RCPT TO:<thbjk7oh@mydomain.com>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: extract_addr: input: <thbjk7oh@mydomain.com>
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: smtpd_check_addr: addr=thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: mytestemail@gmail.com -> mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: thbjk7oh@mydomain.com -> thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr request = resolve
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr sender = mytestemail@gmail.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: send attr address = thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: transport
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: transport
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: anonaddy
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: nexthop
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: nexthop
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: recipient
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: recipient
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute value: 1024
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: resolve_clnt: `mytestemail@gmail.com' -> `thbjk7oh@mydomain.com' -> transp=`anonaddy' host=`mydomain.com' rcpt=`thbjk7oh@mydomain.com' flags= class=virtual
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: extract_addr: in: <thbjk7oh@mydomain.com>, result: thbjk7oh@mydomain.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: >>> START Helo command RESTRICTIONS <<<
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: permit_mynetworks: mail-ua1-f42.google.com 209.85.222.42
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 127.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 127.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::1]/128
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::1]/128
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 10.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 10.0.0.0/8
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 172.16.0.0/12
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 172.16.0.0/12
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 192.168.0.0/16
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 192.168.0.0/16
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_sasl_authenticated
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_sasl_authenticated status=0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_invalid_helo_hostname
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: reject_invalid_hostname: mail-ua1-f42.google.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_invalid_helo_hostname status=0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_non_fqdn_helo_hostname
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: reject_non_fqdn_hostname: mail-ua1-f42.google.com
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_non_fqdn_helo_hostname status=0
Jan 25 11:19:58 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unknown_helo_hostname
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unknown_hostname: mail-ua1-f42.google.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: lookup mail-ua1-f42.google.com type A flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_query: mail-ua1-f42.google.com (A): OK
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_get_answer: type A for mail-ua1-f42.google.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unknown_helo_hostname status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> END Helo command RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> START Sender address RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: permit_mynetworks: mail-ua1-f42.google.com 209.85.222.42
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_sasl_authenticated
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_sasl_authenticated status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_non_fqdn_sender
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_non_fqdn_address: mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_non_fqdn_sender status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unknown_sender_domain
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unknown_address: mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: rewrite_clnt: cached: local: thbjk7oh@mydomain.com -> thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr address = mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: mytestemail@gmail.com -> mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr request = resolve
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr sender = thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr address = mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: transport
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: transport
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: smtp
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: nexthop
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: nexthop
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: recipient
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: recipient
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 4096
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: resolve_clnt: `thbjk7oh@mydomain.com' -> `mytestemail@gmail.com' -> transp=`smtp' host=`gmail.com' rcpt=`mytestemail@gmail.com' flags= class=default
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key thbjk7oh@mydomain.com?mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unknown_mailhost: gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: lookup gmail.com type MX flags
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_query: gmail.com (MX): OK
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_get_answer: type MX for gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_get_answer: type MX for gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_get_answer: type MX for gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_get_answer: type MX for gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_get_answer: type MX for gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unknown_sender_domain status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unknown_reverse_client_hostname
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unknown_reverse_name: mail-ua1-f42.google.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unknown_reverse_client_hostname status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> END Sender address RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> START Recipient address RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: permit_mynetworks: mail-ua1-f42.google.com 209.85.222.42
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unauth_destination
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unauth_destination: thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: permit_auth_destination: thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: move existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unauth_destination status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=check_recipient_access
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: check_mail_access: thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dict_mysql_get_active: attempting to connect to host db:3306
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dict_mysql: successful connection to host db:3306
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: mysql:/etc/postfix/mysql-recipient-access.cf: successful query result from host db:3306
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dict_mysql_lookup: retrieved 1 rows
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: mysql:/etc/postfix/mysql-recipient-access.cf: mysql:/etc/postfix/mysql-recipient-access.cf(0,lock|fold_fix|utf8_request): thbjk7oh@mydomain.com = DUNNO
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: mail_addr_find: thbjk7oh@mydomain.com -> DUNNO
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: check_table_result: mysql:/etc/postfix/mysql-recipient-access.cf DUNNO thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=check_recipient_access status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rhsbl_helo
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_rbl_domain: dbl.spamhaus.org mail-ua1-f42.google.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_query: mail-ua1-f42.google.com.dbl.spamhaus.org (A): Host not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key mail-ua1-f42.google.com.dbl.spamhaus.org
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rhsbl_helo status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rhsbl_reverse_client
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_rbl_domain: dbl.spamhaus.org mail-ua1-f42.google.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mail-ua1-f42.google.com.dbl.spamhaus.org
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rhsbl_reverse_client status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rhsbl_sender
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_rbl_domain: dbl.spamhaus.org mytestemail@gmail.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_query: gmail.com.dbl.spamhaus.org (A): Host not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key gmail.com.dbl.spamhaus.org
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rhsbl_sender status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rbl_client
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_rbl_addr: Client host 209.85.222.42
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_query: 42.222.85.209.zen.spamhaus.org (A): Host not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key 42.222.85.209.zen.spamhaus.org
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rbl_client status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rbl_client
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_rbl_addr: Client host 209.85.222.42
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: dns_query: 42.222.85.209.dul.dnsbl.sorbs.net (A): Host not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key 42.222.85.209.dul.dnsbl.sorbs.net
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_rbl_client status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> END Recipient address RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> START Recipient address RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: permit_mynetworks: mail-ua1-f42.google.com 209.85.222.42
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: mail-ua1-f42.google.com ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 209.85.222.42 ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_sasl_authenticated
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_sasl_authenticated status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=defer_unauth_destination
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unauth_destination: thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: permit_auth_destination: thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=defer_unauth_destination status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> END Recipient address RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> CHECKING Recipient address VALIDATION MAPS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: recipient_canonical_maps: thbjk7oh@mydomain.com: not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_string: mydestination: mydomain.com ~? localhost.mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_string: mydestination: mydomain.com ~? localhost
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mydomain.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: recipient_canonical_maps: @mydomain.com: not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: mail_addr_find: thbjk7oh@mydomain.com -> (not found)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: canonical_maps: thbjk7oh@mydomain.com: not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_string: mydestination: mydomain.com ~? localhost.mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_string: mydestination: mydomain.com ~? localhost
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mydomain.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: canonical_maps: @mydomain.com: not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: mail_addr_find: thbjk7oh@mydomain.com -> (not found)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: virtual_alias_maps: thbjk7oh@mydomain.com: not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_string: mydestination: mydomain.com ~? localhost.mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_string: mydestination: mydomain.com ~? localhost
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mydomain.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: maps_find: virtual_alias_maps: @mydomain.com: not found
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: mail_addr_find: thbjk7oh@mydomain.com -> (not found)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: report recipient to all milters (flags=0x0)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "i"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{rcpt_addr}"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "thbjk7oh@mydomain.com"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{rcpt_host}"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "mydomain.com"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{rcpt_mailer}"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key mytestemail@gmail.com?thbjk7oh@mydomain.com
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter8_rcpt_event: milter unix:opendkim/opendkim.sock: rcpt <thbjk7oh@mydomain.com>
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: event: SMFIC_RCPT; macros: {rcpt_addr}=thbjk7oh@mydomain.com {rcpt_host}=mydomain.com {rcpt_mailer}=anonaddy
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: before input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping enable_milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: after input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping enable_milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: name_mask: sendmail
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: name_mask: verify
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: connect to subsystem public/cleanup
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: protocol
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: protocol
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: cleanup_protocol
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: queue_id
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: queue_id
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 72D2E17C911
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr flags = 242
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send 0 milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: 72D2E17C911: client=mail-ua1-f42.google.com[209.85.222.42]
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250 2.1.5 Ok
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: < mail-ua1-f42.google.com[209.85.222.42]: BDAT 2330 LAST
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> START Data command RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unauth_pipelining
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: reject_unauth_pipelining: BDAT
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unauth_pipelining status=0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: >>> END Data command RESTRICTIONS <<<
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: report data to all milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "i"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "72D2E17C911"
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter8_data_event: milter unix:opendkim/opendkim.sock: data command
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: event: SMFIC_DATA; macros: i=72D2E17C911
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: skipping event SMFIC_DATA for milter unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send 1 milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr conn_macros = j {daemon_name} {daemon_addr} v _
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr helo_macros = {tls_version} {cipher} {cipher_bits} {cert_subject} {cert_issuer}
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr mail_macros = i {mail_addr} {client_addr} {client_name} {auth_authen}
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr rcpt_macros = i {rcpt_addr} {rcpt_host} {rcpt_mailer}
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr data_macros = i
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr eoh_macros = i
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr eod_macros = i
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr unk_macros =
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr size = 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter8_send: milter unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_name = unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_version = 6
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_actions = 273
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_events = 1050370
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_non_events = 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_state = 4
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_conn_timeout = 30
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_cmd_timeout = 30
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_msg_timeout = 300
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_action = accept
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr milter_macro_list = 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: dummy
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: dummy
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: dummy
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: dummy
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: status
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: status
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/cleanup[1056]: 72D2E17C911: message-id=<CAKtBCyg81YUoKLVoFNfOWWD6yHL1coLot7nadbYqdRySUFRjvg@mail.gmail.com>
mail.info: Jan 25 16:19:59 opendkim[825]: 72D2E17C911: mail-ua1-f42.google.com [209.85.222.42] not internal
mail.info: Jan 25 16:19:59 opendkim[825]: 72D2E17C911: not authenticated
mail.info: Jan 25 16:19:59 opendkim[825]: 72D2E17C911: DKIM verification successful
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: status
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: status
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: reason
Jan 25 11:19:59 anonaddy postfix/qmgr[1021]: 72D2E17C911: from=<mytestemail@gmail.com>, size=2570, nrcpt=1 (queue active)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: reason
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 250 2.0.0 Ok: 2330 bytes queued as 72D2E17C911
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: abort all milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter8_abort: abort milter unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: < mail-ua1-f42.google.com[209.85.222.42]: QUIT
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: > mail-ua1-f42.google.com[209.85.222.42]: 221 2.0.0 Bye
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 127.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? [::ffff:127.0.0.0]/104
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? [::1]/128
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 10.0.0.0/8
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 172.16.0.0/12
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: mail-ua1-f42.google.com ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 209.85.222.42 ~? 192.168.0.0/16
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: mail-ua1-f42.google.com: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: match_list_match: 209.85.222.42: no match
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr request = disconnect
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: send attr ident = 25:209.85.222.42
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: status
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: status
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: private/anvil: wanted attribute: (list terminator)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: abort all milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter8_abort: abort milter unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: disconnect event to all milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: milter8_disc_event: quit milter unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: disconnect from mail-ua1-f42.google.com[209.85.222.42] ehlo=1 mail=1 rcpt=1 bdat=1 quit=1 commands=5
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: free all milters
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: free milter unix:opendkim/opendkim.sock
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: master_notify: status 1
Jan 25 11:19:59 anonaddy postfix/smtpd[1051]: connection closed
crond: USER anonaddy pid 1065 cmd php /var/www/anonaddy/artisan schedule:run --no-ansi --no-interaction --quiet
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: connection established
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: master_notify: status 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: name_mask: resource
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: name_mask: software
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: connect from localhost[127.0.0.1]
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: localhost: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: 127.0.0.1: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: localhost: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: 127.0.0.1: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtp_stream_setup: maxtime=300 enable_deadline=0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: localhost ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: report connect to all milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: non-protocol events for protocol version 6:
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: transport=unix endpoint=opendkim/opendkim.sock
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: my_version=0x6
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: my_actions=0x1ff SMFIF_ADDHDRS SMFIF_CHGBODY SMFIF_ADDRCPT SMFIF_DELRCPT SMFIF_CHGHDRS SMFIF_QUARANTINE SMFIF_CHGFROM SMFIF_ADDRCPT_PAR SMFIF_SETSYMLIST
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: my_events=0x1fffff SMFIP_NOCONNECT SMFIP_NOHELO SMFIP_NOMAIL SMFIP_NORCPT SMFIP_NOBODY SMFIP_NOHDRS SMFIP_NOEOH SMFIP_NR_HDR SMFIP_NOUNKNOWN SMFIP_NODATA SMFIP_SKIP SMFIP_RCPT_REJ SMFIP_NR_CONN SMFIP_NR_HELO SMFIP_NR_MAIL SMFIP_NR_RCPT SMFIP_NR_DATA SMFIP_NR_UNKN SMFIP_NR_EOH SMFIP_NR_BODY SMFIP_HDR_LEADSPC
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: milter unix:opendkim/opendkim.sock version 6
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: events SMFIP_NOHELO SMFIP_NOUNKNOWN SMFIP_NODATA SMFIP_SKIP SMFIP_HDR_LEADSPC
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_connect: requests SMFIF_ADDHDRS SMFIF_CHGHDRS SMFIF_SETSYMLIST
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "j"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy.mydomain.com"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{daemon_name}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy.mydomain.com"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{daemon_addr}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "127.0.0.1"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "v"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "Postfix 3.6.4"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "_"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "localhost [127.0.0.1]"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_conn_event: milter unix:opendkim/opendkim.sock: connect localhost/127.0.0.1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: event: SMFIC_CONNECT; macros: j=anonaddy.mydomain.com {daemon_name}=anonaddy.mydomain.com {daemon_addr}=127.0.0.1 v=Postfix 3.6.4 _=localhost [127.0.0.1]
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 220 anonaddy.mydomain.com ESMTP
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: < localhost[127.0.0.1]: EHLO [127.0.0.1]
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: report helo to all milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{tls_version}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cipher}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cipher_bits}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cert_subject}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{cert_issuer}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_helo_event: milter unix:opendkim/opendkim.sock: helo [127.0.0.1]
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: event: SMFIC_HELO; macros: (none)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: skipping event SMFIC_HELO for milter unix:opendkim/opendkim.sock
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: localhost: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: 127.0.0.1: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-anonaddy.mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-PIPELINING
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-SIZE 10240000
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-ETRN
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-ENHANCEDSTATUSCODES
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-8BITMIME
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-DSN
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250-SMTPUTF8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250 CHUNKING
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: < localhost[127.0.0.1]: MAIL FROM:<thbjk7oh@mydomain.com>
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: extract_addr: input: <thbjk7oh@mydomain.com>
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_check_addr: addr=thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr address = ""
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: ""
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: "" -> ""
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr address = thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: thbjk7oh@mydomain.com -> thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr request = resolve
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr sender =
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr address = thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: transport
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: transport
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: anonaddy
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: nexthop
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: nexthop
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: recipient
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: recipient
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 1024
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: resolve_clnt: `' -> `thbjk7oh@mydomain.com' -> transp=`anonaddy' host=`mydomain.com' rcpt=`thbjk7oh@mydomain.com' flags= class=virtual
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key ?thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: extract_addr: in: <thbjk7oh@mydomain.com>, result: thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: report sender to all milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "i"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{mail_addr}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key ?thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "thbjk7oh@mydomain.com"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{client_addr}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "127.0.0.1"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{client_name}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "localhost"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{auth_authen}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_mail_event: milter unix:opendkim/opendkim.sock: mail <thbjk7oh@mydomain.com>
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: event: SMFIC_MAIL; macros: {mail_addr}=thbjk7oh@mydomain.com {client_addr}=127.0.0.1 {client_name}=localhost
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_check_rewrite: trying: permit_inet_interfaces
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: permit_inet_interfaces: localhost 127.0.0.1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: fsspace: .: block size 4096, blocks free 10645719
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_check_queue: blocks 4096 avail 10645719 min_free 0 msg_size_limit 10240000
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250 2.1.0 Ok
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: < localhost[127.0.0.1]: RCPT TO:<tyler.b.young@protonmail.com>
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: extract_addr: input: <tyler.b.young@protonmail.com>
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_check_addr: addr=tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: rewrite_clnt: cached: local: thbjk7oh@mydomain.com -> thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr request = rewrite
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr rule = local
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr address = tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: address
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: address
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: rewrite_clnt: local: tyler.b.young@protonmail.com -> tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr request = resolve
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr sender = thbjk7oh@mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr address = tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: transport
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: transport
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: smtp
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: nexthop
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: nexthop
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: recipient
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: recipient
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: flags
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 4096
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: private/rewrite socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: resolve_clnt: `thbjk7oh@mydomain.com' -> `tyler.b.young@protonmail.com' -> transp=`smtp' host=`protonmail.com' rcpt=`tyler.b.young@protonmail.com' flags= class=default
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: install entry key thbjk7oh@mydomain.com?tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: extract_addr: in: <tyler.b.young@protonmail.com>, result: tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> START Helo command RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: permit_mynetworks: localhost 127.0.0.1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: localhost ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: checking smtpd_log_access_permit_actions settings
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: permit_mynetworks: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: smtpd_log_access_permit_actions: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> END Helo command RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> START Sender address RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: permit_mynetworks: localhost 127.0.0.1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: localhost ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: checking smtpd_log_access_permit_actions settings
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: permit_mynetworks: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: smtpd_log_access_permit_actions: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> END Sender address RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> START Recipient address RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: permit_mynetworks: localhost 127.0.0.1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: localhost ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: checking smtpd_log_access_permit_actions settings
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: permit_mynetworks: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: smtpd_log_access_permit_actions: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> END Recipient address RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> START Recipient address RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: permit_mynetworks: localhost 127.0.0.1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostname: mynetworks: localhost ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_hostaddr: mynetworks: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: checking smtpd_log_access_permit_actions settings
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: permit_mynetworks: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: smtpd_acl_permit: smtpd_log_access_permit_actions: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=permit_mynetworks status=1
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> END Recipient address RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> CHECKING Recipient address VALIDATION MAPS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key thbjk7oh@mydomain.com?tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: maps_find: recipient_canonical_maps: tyler.b.young@protonmail.com: not found
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_string: mydestination: protonmail.com ~? localhost.mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_string: mydestination: protonmail.com ~? localhost
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: protonmail.com: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: maps_find: recipient_canonical_maps: @protonmail.com: not found
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: mail_addr_find: tyler.b.young@protonmail.com -> (not found)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: maps_find: canonical_maps: tyler.b.young@protonmail.com: not found
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_string: mydestination: protonmail.com ~? localhost.mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_string: mydestination: protonmail.com ~? localhost
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: protonmail.com: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: maps_find: canonical_maps: @protonmail.com: not found
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: mail_addr_find: tyler.b.young@protonmail.com -> (not found)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: maps_find: virtual_alias_maps: tyler.b.young@protonmail.com: not found
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_string: mydestination: protonmail.com ~? localhost.mydomain.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_string: mydestination: protonmail.com ~? localhost
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: match_list_match: protonmail.com: no match
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: maps_find: virtual_alias_maps: @protonmail.com: not found
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: mail_addr_find: tyler.b.young@protonmail.com -> (not found)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: report recipient to all milters (flags=0x0)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "i"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{rcpt_addr}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key thbjk7oh@mydomain.com?tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "tyler.b.young@protonmail.com"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{rcpt_host}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key thbjk7oh@mydomain.com?tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "protonmail.com"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{rcpt_mailer}"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: ctable_locate: leave existing entry key thbjk7oh@mydomain.com?tyler.b.young@protonmail.com
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "smtp"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_rcpt_event: milter unix:opendkim/opendkim.sock: rcpt <tyler.b.young@protonmail.com>
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: event: SMFIC_RCPT; macros: {rcpt_addr}=tyler.b.young@protonmail.com {rcpt_host}=protonmail.com {rcpt_mailer}=smtp
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: before input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping enable_milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: after input_transp_cleanup: cleanup flags = enable_header_body_filter enable_automatic_bcc enable_address_mapping enable_milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: name_mask: sendmail
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: name_mask: verify
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: connect to subsystem public/cleanup
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: protocol
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: protocol
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: cleanup_protocol
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: queue_id
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: queue_id
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 4CF4417C916
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr flags = 242
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send 0 milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: 4CF4417C916: client=localhost[127.0.0.1]
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 250 2.1.5 Ok
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: < localhost[127.0.0.1]: DATA
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> START Data command RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unauth_pipelining
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: reject_unauth_pipelining: DATA
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: generic_checks: name=reject_unauth_pipelining status=0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: >>> END Data command RESTRICTIONS <<<
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: report data to all milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "i"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "4CF4417C916"
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_data_event: milter unix:opendkim/opendkim.sock: data command
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: event: SMFIC_DATA; macros: i=4CF4417C916
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: skipping event SMFIC_DATA for milter unix:opendkim/opendkim.sock
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send 1 milters
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr conn_macros = j {daemon_name} {daemon_addr} v _
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr helo_macros = {tls_version} {cipher} {cipher_bits} {cert_subject} {cert_issuer}
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr mail_macros = i {mail_addr} {client_addr} {client_name} {auth_authen}
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr rcpt_macros = i {rcpt_addr} {rcpt_host} {rcpt_mailer}
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr data_macros = i
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr eoh_macros = i
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr eod_macros = i
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr unk_macros =
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr size = 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: milter8_send: milter unix:opendkim/opendkim.sock
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_name = unix:opendkim/opendkim.sock
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_version = 6
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_actions = 273
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_events = 1050370
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_non_events = 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_state = 4
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_conn_timeout = 30
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_cmd_timeout = 30
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_msg_timeout = 300
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_action = accept
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: send attr milter_macro_list = 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: dummy
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: dummy
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: dummy
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: dummy
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: status
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: status
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute value: 0
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: public/cleanup socket: wanted attribute: (list terminator)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: input attribute name: (end)
Jan 25 11:20:01 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 354 End data with <CR><LF>.<CR><LF>
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: smtp_get: EOF
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: localhost ~? 127.0.0.0/8
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: lost connection after DATA (0 bytes) from localhost[127.0.0.1]
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: abort all milters
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_abort: abort milter unix:opendkim/opendkim.sock
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: abort all milters
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_abort: abort milter unix:opendkim/opendkim.sock
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: disconnect event to all milters
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_disc_event: quit milter unix:opendkim/opendkim.sock
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: disconnect from localhost[127.0.0.1] ehlo=1 mail=1 rcpt=1 data=0/1 commands=3/4
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: free all milters
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: free milter unix:opendkim/opendkim.sock
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: master_notify: status 1
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: connection closed
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: rewrite stream disconnect
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: connection established
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: master_notify: status 0
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: name_mask: resource
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: name_mask: software
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: connect from localhost[127.0.0.1]
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_list_match: localhost: no match
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_list_match: 127.0.0.1: no match
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_list_match: localhost: no match
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_list_match: 127.0.0.1: no match
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: smtp_stream_setup: maxtime=300 enable_deadline=0
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: localhost ~? 127.0.0.0/8
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: report connect to all milters
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: non-protocol events for protocol version 6:
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: transport=unix endpoint=opendkim/opendkim.sock
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: my_version=0x6
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: my_actions=0x1ff SMFIF_ADDHDRS SMFIF_CHGBODY SMFIF_ADDRCPT SMFIF_DELRCPT SMFIF_CHGHDRS SMFIF_QUARANTINE SMFIF_CHGFROM SMFIF_ADDRCPT_PAR SMFIF_SETSYMLIST
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: my_events=0x1fffff SMFIP_NOCONNECT SMFIP_NOHELO SMFIP_NOMAIL SMFIP_NORCPT SMFIP_NOBODY SMFIP_NOHDRS SMFIP_NOEOH SMFIP_NR_HDR SMFIP_NOUNKNOWN SMFIP_NODATA SMFIP_SKIP SMFIP_RCPT_REJ SMFIP_NR_CONN SMFIP_NR_HELO SMFIP_NR_MAIL SMFIP_NR_RCPT SMFIP_NR_DATA SMFIP_NR_UNKN SMFIP_NR_EOH SMFIP_NR_BODY SMFIP_HDR_LEADSPC
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: milter unix:opendkim/opendkim.sock version 6
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: events SMFIP_NOHELO SMFIP_NOUNKNOWN SMFIP_NODATA SMFIP_SKIP SMFIP_HDR_LEADSPC
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_connect: requests SMFIF_ADDHDRS SMFIF_CHGHDRS SMFIF_SETSYMLIST
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "j"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy.mydomain.com"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{daemon_name}"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "anonaddy.mydomain.com"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "{daemon_addr}"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "127.0.0.1"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "v"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "Postfix 3.6.4"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: "_"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter_macro_lookup: result "localhost [127.0.0.1]"
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: milter8_conn_event: milter unix:opendkim/opendkim.sock: connect localhost/127.0.0.1
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: event: SMFIC_CONNECT; macros: j=anonaddy.mydomain.com {daemon_name}=anonaddy.mydomain.com {daemon_addr}=127.0.0.1 v=Postfix 3.6.4 _=localhost [127.0.0.1]
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: reply: SMFIR_CONTINUE data 0 bytes
Jan 25 11:20:31 anonaddy postfix/smtpd[1051]: > localhost[127.0.0.1]: 220 anonaddy.mydomain.com ESMTP
173.92.179.148 - - [25/Jan/2022:11:20:55 -0500] "GET / HTTP/1.1" 200 2177 "https://anonaddy.mydomain.com/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96.0"
crond: USER anonaddy pid 1090 cmd php /var/www/anonaddy/artisan schedule:run --no-ansi --no-interaction --quiet
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: smtp_get: EOF
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: match_hostname: smtpd_client_event_limit_exceptions: localhost ~? 127.0.0.0/8
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: match_hostaddr: smtpd_client_event_limit_exceptions: 127.0.0.1 ~? 127.0.0.0/8
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: lost connection after CONNECT from localhost[127.0.0.1]
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: disconnect event to all milters
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: milter8_disc_event: quit milter unix:opendkim/opendkim.sock
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: disconnect from localhost[127.0.0.1] commands=0/0
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: free all milters
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: free milter unix:opendkim/opendkim.sock
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: master_notify: status 1
Jan 25 11:21:31 anonaddy postfix/smtpd[1051]: connection closed
Jan 25 11:21:31 anonaddy postfix/pipe[1057]: 72D2E17C911: to=<thbjk7oh@mydomain.com>, relay=anonaddy, delay=93, delays=0.6/0.01/0/92, dsn=4.3.0, status=deferred (An error has occurred, please try again later. )
crond: USER anonaddy pid 1098 cmd php /var/www/anonaddy/artisan schedule:run --no-ansi --no-interaction --quiet
crond: USER anonaddy pid 1105 cmd php /var/www/anonaddy/artisan schedule:run --no-ansi --no-interaction --quiet
Jan 25 11:23:11 anonaddy postfix/smtpd[1051]: idle timeout -- exiting

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions