Package: postfix-pcre
Version: 2.7.0-1

Brief explanation:

I'm using a pcre receipient_canonical file for recipient address
rewriting. According to the verbose postfix logs, the correct address is
being chosen by postfix when consulting the file, but the incorrect
address is being used when the message is delivered. 

Longer explanation:

In my tests, I'm sending an email from the server hobo. The message is
received on dodo. 

I've configured postfix on dodo to use a pcre recipient_canonical file
to re-write the recipient envelope information for all incoming messages.

/etc/postfix/main.cf:

recipient_canonical_classes = envelope_recipient
recipient_canonical_maps = pcre:/etc/postfix/recipient_canonical

/etc/postfix/recipient_canonical:

/^f...@example\.net$/ root
/.*/ jamie

I expect messages addressed to [email protected] to be rewritten to root
and all other addresses to be re-written to jamie. 

Testing with postmap gives the expected results:

dodo:/etc/postfix# postmap -q [email protected] 
pcre:/etc/postfix/recipient_canonical
root
dodo:/etc/postfix# postmap -q [email protected] 
pcre:/etc/postfix/recipient_canonical
jamie
dodo:/etc/postfix#

With verbose logging enabled, the postfix log also correctly identifies
the right target when consulting the recipient_canonical file, but still
fails to send the email to the correct address. See attached mail.log.
The relevant lines are:

postfix finds correct address:

May 11 12:59:47 localhost postfix/smtpd[31840]: maps_find: 
recipient_canonical_maps: 
pcre:/etc/postfix/recipient_canonical(0,lock|fold_fix): [email protected] = root

however, still sends to jamie:

May 11 12:59:47 localhost postfix/local[31844]: C13562AE: to=<ja...@dodo>, 
orig_to=<[email protected]>, relay=local, delay=0.06, delays=0.03/0.01/0/0.02, 
dsn=2.0.0, status=sent (delivered to mailbox)

jamie


-- 
Jamie McClelland
718-303-3204 ext. 101

May First/People Link
Growing networks to build a just world
http://www.mayfirst.org
https://support.mayfirst.org
Members Local 1180, Communications Workers of America, AFL-CIO

PGP Key: http://current.workingdirectory.net/pages/identity/ 
May 11 12:59:47 localhost postfix/smtpd[31840]: connect from hobo[10.11.12.2]
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostname: hobo ~? 
127.0.0.0/8
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostaddr: 10.11.12.2 ~? 
127.0.0.0/8
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostname: hobo ~? 
10.11.12.0/24
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostaddr: 10.11.12.2 ~? 
10.11.12.0/24
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 220 dodo 
ESMTP Postfix (Debian/GNU)
May 11 12:59:47 localhost postfix/smtpd[31840]: watchdog_pat: 0x7f31ba07a470
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 13 
flush 37
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 13 
got 11
May 11 12:59:47 localhost postfix/smtpd[31840]: < hobo[10.11.12.2]: EHLO hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250-dodo
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 
250-PIPELINING
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250-SIZE 
10240000
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250-VRFY
May 11 12:59:47 localhost postfix/smtpd[31840]: match_list_match: hobo: no match
May 11 12:59:47 localhost postfix/smtpd[31840]: match_list_match: 10.11.12.2: 
no match
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250-ETRN
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 
250-ENHANCEDSTATUSCODES
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250-8BITMIME
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250 DSN
May 11 12:59:47 localhost postfix/smtpd[31840]: watchdog_pat: 0x7f31ba07a470
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 13 
flush 113
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 13 
got 23
May 11 12:59:47 localhost postfix/smtpd[31840]: < hobo[10.11.12.2]: MAIL 
FROM:<r...@hobo>
May 11 12:59:47 localhost postfix/smtpd[31840]: extract_addr: input: <r...@hobo>
May 11 12:59:47 localhost postfix/smtpd[31840]: smtpd_check_addr: addr=r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: connect to subsystem 
private/rewrite
May 11 12:59:47 localhost postfix/smtpd[31840]: event_enable_read: fd 16
May 11 12:59:47 localhost postfix/smtpd[31840]: event_extend: fd 16
May 11 12:59:47 localhost postfix/smtpd[31840]: event_request_timer: set 
0x7f31b8f403a0 0x7f31ba07e4b0 5
May 11 12:59:47 localhost postfix/smtpd[31840]: event_request_timer: set 
0x7f31b8f403d0 0x7f31ba07e4b0 1000
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr request = rewrite
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr rule = local
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr address = r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 16 
flush 46
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 16 
got 27
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 0
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: address
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: address
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: rewrite_clnt: local: r...@hobo 
-> r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: event_request_timer: reset 
0x7f31b8f403a0 0x7f31ba07e4b0 5
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr request = resolve
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr sender = 
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr address = r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 16 
flush 43
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 16 
got 74
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 0
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: transport
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: transport
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: smtp
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: nexthop
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: nexthop
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 
10.11.12.1
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: recipient
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: recipient
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 4096
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: resolve_clnt: `' -> `r...@hobo' 
-> transp=`smtp' host=`10.11.12.1' rcpt=`r...@hobo' flags= class=default
May 11 12:59:47 localhost postfix/smtpd[31840]: ctable_locate: install entry 
key r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: extract_addr: in: <r...@hobo>, 
result: r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: fsspace: .: block size 4096, 
blocks free 103654
May 11 12:59:47 localhost postfix/smtpd[31840]: smtpd_check_queue: blocks 4096 
avail 103654 min_free 0 msg_size_limit 10240000
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250 2.1.0 Ok
May 11 12:59:47 localhost postfix/smtpd[31840]: watchdog_pat: 0x7f31ba07a470
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 13 
flush 14
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 13 
got 28
May 11 12:59:47 localhost postfix/smtpd[31840]: < hobo[10.11.12.2]: RCPT 
TO:<[email protected]>
May 11 12:59:47 localhost postfix/smtpd[31840]: extract_addr: input: 
<[email protected]>
May 11 12:59:47 localhost postfix/smtpd[31840]: smtpd_check_addr: 
[email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: event_request_timer: reset 
0x7f31b8f403a0 0x7f31ba07e4b0 5
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr request = rewrite
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr rule = local
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr address = 
[email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 16 
flush 53
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 16 
got 34
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 0
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: address
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: address
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 
[email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: rewrite_clnt: local: 
[email protected] -> [email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: event_request_timer: reset 
0x7f31b8f403a0 0x7f31ba07e4b0 5
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr request = resolve
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr sender = 
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr address = 
[email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 16 
flush 50
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 16 
got 81
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 0
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: transport
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: transport
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: smtp
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: nexthop
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: nexthop
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 
10.11.12.1
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: recipient
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: recipient
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 
[email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 4096
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: resolve_clnt: `' -> 
`[email protected]' -> transp=`smtp' host=`10.11.12.1' rcpt=`[email protected]' 
flags= class=default
May 11 12:59:47 localhost postfix/smtpd[31840]: ctable_locate: install entry 
key [email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: extract_addr: in: 
<[email protected]>, result: [email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: event_request_timer: reset 
0x7f31b8f403a0 0x7f31ba07e4b0 5
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr request = rewrite
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr rule = local
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr address = 
double-bounce
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 16 
flush 50
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 16 
got 36
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: flags
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 0
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: address
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: address
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 
double-bou...@dodo
May 11 12:59:47 localhost postfix/smtpd[31840]: private/rewrite socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: rewrite_clnt: local: 
double-bounce -> double-bou...@dodo
May 11 12:59:47 localhost postfix/smtpd[31840]: >>> START Recipient address 
RESTRICTIONS <<<
May 11 12:59:47 localhost postfix/smtpd[31840]: generic_checks: 
name=permit_mynetworks
May 11 12:59:47 localhost postfix/smtpd[31840]: permit_mynetworks: hobo 
10.11.12.2
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostname: hobo ~? 
127.0.0.0/8
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostaddr: 10.11.12.2 ~? 
127.0.0.0/8
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostname: hobo ~? 
10.11.12.0/24
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostaddr: 10.11.12.2 ~? 
10.11.12.0/24
May 11 12:59:47 localhost postfix/smtpd[31840]: generic_checks: 
name=permit_mynetworks status=1
May 11 12:59:47 localhost postfix/smtpd[31840]: >>> CHECKING RECIPIENT MAPS <<<
May 11 12:59:47 localhost postfix/smtpd[31840]: ctable_locate: leave existing 
entry key [email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: dict_pcre_lookup: 
/etc/postfix/recipient_canonical: [email protected]
May 11 12:59:47 localhost postfix/smtpd[31840]: maps_find: 
recipient_canonical_maps: 
pcre:/etc/postfix/recipient_canonical(0,lock|fold_fix): [email protected] = root
May 11 12:59:47 localhost postfix/smtpd[31840]: mail_addr_find: 
[email protected] -> root
May 11 12:59:47 localhost postfix/smtpd[31840]: smtpd_check_rewrite: trying: 
permit_inet_interfaces
May 11 12:59:47 localhost postfix/smtpd[31840]: permit_inet_interfaces: hobo 
10.11.12.2
May 11 12:59:47 localhost postfix/smtpd[31840]: before input_transp_cleanup: 
cleanup flags = enable_header_body_filter enable_automatic_bcc 
enable_address_mapping enable_milters
May 11 12:59:47 localhost postfix/smtpd[31840]: after input_transp_cleanup: 
cleanup flags = enable_header_body_filter enable_automatic_bcc 
enable_address_mapping
May 11 12:59:47 localhost postfix/smtpd[31840]: connect to subsystem 
public/cleanup
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 17 
got 19
May 11 12:59:47 localhost postfix/smtpd[31840]: public/cleanup socket: wanted 
attribute: queue_id
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: queue_id
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: C13562AE
May 11 12:59:47 localhost postfix/smtpd[31840]: public/cleanup socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: send attr flags = 178
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type T len 17 data 
1273597187
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 22 data 
rewrite_co
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type S len 9 data 
r...@hobo
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 20 data 
log_client
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 29 data 
log_client
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 21 data 
log_client
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 35 data 
log_messag
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 18 data 
log_helo_n
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 23 data 
log_protoc
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 16 data 
client_nam
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 24 data 
reverse_cl
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 25 data 
client_add
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 17 data 
client_por
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 14 data 
helo_name=
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 19 data 
protocol_n
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 21 data 
client_add
May 11 12:59:47 localhost postfix/smtpd[31840]: C13562AE: 
client=hobo[10.11.12.2]
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type A len 37 data 
dsn_orig_r
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type R len 16 data 
f...@examp
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 17 
flush 430
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250 2.1.5 Ok
May 11 12:59:47 localhost postfix/smtpd[31840]: watchdog_pat: 0x7f31ba07a470
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 13 
flush 14
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 13 
got 6
May 11 12:59:47 localhost postfix/smtpd[31840]: < hobo[10.11.12.2]: DATA
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type M len 0 data 
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 39 data 
Received: 
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 41 data ?by 
dodo (
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 62 data 
?for <fred
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 354 End 
data with <CR><LF>.<CR><LF>
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 13 
flush 37
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 13 
got 283
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 37 data 
Date: Tue,
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 20 data To: 
f...@e
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 13 data 
Subject: t
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 39 data 
User-Agent
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 17 data 
MIME-Versi
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 42 data 
Content-Ty
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 31 data 
Content-Tr
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 15 data 
From: root
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 42 data 
Message-Id
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 0 data 
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type N len 2 data Hi
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type X len 0 data 
May 11 12:59:47 localhost postfix/smtpd[31840]: rec_put: type E len 0 data 
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 17 
flush 434
May 11 12:59:47 localhost postfix/cleanup[31843]: C13562AE: 
message-id=<1273597187.793498.31...@hobo>
May 11 12:59:47 localhost postfix/qmgr[31799]: C13562AE: from=<r...@hobo>, 
size=428, nrcpt=1 (queue active)
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 17 
got 18
May 11 12:59:47 localhost postfix/smtpd[31840]: public/cleanup socket: wanted 
attribute: status
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: status
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: 0
May 11 12:59:47 localhost postfix/smtpd[31840]: public/cleanup socket: wanted 
attribute: reason
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: reason
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute value: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: public/cleanup socket: wanted 
attribute: (list terminator)
May 11 12:59:47 localhost postfix/smtpd[31840]: input attribute name: (end)
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 250 2.0.0 
Ok: queued as C13562AE
May 11 12:59:47 localhost postfix/smtpd[31840]: watchdog_pat: 0x7f31ba07a470
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_fflush_some: fd 13 
flush 34
May 11 12:59:47 localhost postfix/smtpd[31840]: vstream_buf_get_ready: fd 13 
got 6
May 11 12:59:47 localhost postfix/smtpd[31840]: < hobo[10.11.12.2]: QUIT
May 11 12:59:47 localhost postfix/smtpd[31840]: > hobo[10.11.12.2]: 221 2.0.0 
Bye
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostname: hobo ~? 
127.0.0.0/8
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostaddr: 10.11.12.2 ~? 
127.0.0.0/8
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostname: hobo ~? 
10.11.12.0/24
May 11 12:59:47 localhost postfix/smtpd[31840]: match_hostaddr: 10.11.12.2 ~? 
10.11.12.0/24
May 11 12:59:47 localhost postfix/smtpd[31840]: disconnect from hobo[10.11.12.2]
May 11 12:59:47 localhost postfix/local[31844]: C13562AE: to=<ja...@dodo>, 
orig_to=<[email protected]>, relay=local, delay=0.06, delays=0.03/0.01/0/0.02, 
dsn=2.0.0, status=sent (delivered to mailbox)
May 11 12:59:47 localhost postfix/qmgr[31799]: C13562AE: removed

Attachment: signature.asc
Description: Digital signature

Reply via email to