summaryrefslogtreecommitdiff
path: root/test/stderr/0375
blob: 5ef71ed20265231e5d7c36ef1f42979e462f02f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
Exim version x.yz ....
configuration file is TESTSUITE/test-config
admin user
LOG: MAIN
  <= CALLER@myhost.test.ex U=CALLER P=local S=sss
created log directory TESTSUITE/spool/log
Exim version x.yz ....
configuration file is TESTSUITE/test-config
trusted user
admin user
dropping to exim gid; retaining priv uid
locking TESTSUITE/spool/db/retry.lockfile
no retry data available
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: a1@myhost.test.ex
unique = a1@myhost.test.ex
a1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: b1@myhost.test.ex
unique = b1@myhost.test.ex
b1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: c1@myhost.test.ex
unique = c1@myhost.test.ex
c1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: d1@myhost.test.ex
unique = d1@myhost.test.ex
d1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: d2@myhost.test.ex
unique = d2@myhost.test.ex
d2@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: d3@myhost.test.ex
unique = d3@myhost.test.ex
d3@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: e1@myhost.test.ex
unique = e1@myhost.test.ex
e1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: f1@myhost.test.ex
unique = f1@myhost.test.ex
f1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: f2@myhost.test.ex
unique = f2@myhost.test.ex
f2@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: f3@myhost.test.ex
unique = f3@myhost.test.ex
f3@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: g1@myhost.test.ex
unique = g1@myhost.test.ex
g1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing g1@myhost.test.ex
--------> u1 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=g1 domain=myhost.test.ex
checking local_parts
processing address_data
LOG: MAIN
  == g1@myhost.test.ex R=ut7 defer (-1): expansion of "$bad expansion" failed in ut7 router: unknown variable name "bad"
log writing disabled
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing f3@myhost.test.ex
--------> u1 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
processing address_data
calling ut6 router
ut6 router called for f3@myhost.test.ex
  domain = myhost.test.ex
set transport ut6
queued for ut6 transport: local_part = f3
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^f\d
routed by ut6 router (unseen)
  envelope to: f3@myhost.test.ex
  transport: ut6
  errors to 
"unseen" set: replicated f3@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing f2@myhost.test.ex
--------> u1 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
processing address_data
calling ut6 router
ut6 router called for f2@myhost.test.ex
  domain = myhost.test.ex
queued for ut6 transport: local_part = f2
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^f\d
routed by ut6 router (unseen)
  envelope to: f2@myhost.test.ex
  transport: ut6
  errors to 
"unseen" set: replicated f2@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing f1@myhost.test.ex
--------> u1 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
processing address_data
calling ut6 router
ut6 router called for f1@myhost.test.ex
  domain = myhost.test.ex
queued for ut6 transport: local_part = f1
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^f\d
routed by ut6 router (unseen)
  envelope to: f1@myhost.test.ex
  transport: ut6
  errors to 
"unseen" set: replicated f1@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing e1@myhost.test.ex
--------> u1 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
calling ut5 router
ut5 router called for e1@myhost.test.ex
  domain = myhost.test.ex
set transport ut5
queued for ut5 transport: local_part = e1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=^e\d
routed by ut5 router (unseen)
  envelope to: e1@myhost.test.ex
  transport: ut5
"unseen" set: replicated e1@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing d3@myhost.test.ex
--------> u1 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
calling ut4 router
ut4 router called for d3@myhost.test.ex
  domain = myhost.test.ex
set transport ut4
queued for ut4 transport: local_part = d3
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^d\d
routed by ut4 router (unseen)
  envelope to: d3@myhost.test.ex
  transport: ut4
  errors to 
"unseen" set: replicated d3@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing d2@myhost.test.ex
--------> u1 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
calling ut4 router
ut4 router called for d2@myhost.test.ex
  domain = myhost.test.ex
queued for ut4 transport: local_part = d2
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^d\d
routed by ut4 router (unseen)
  envelope to: d2@myhost.test.ex
  transport: ut4
  errors to 
"unseen" set: replicated d2@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing d1@myhost.test.ex
--------> u1 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
calling ut4 router
ut4 router called for d1@myhost.test.ex
  domain = myhost.test.ex
queued for ut4 transport: local_part = d1
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^d\d
routed by ut4 router (unseen)
  envelope to: d1@myhost.test.ex
  transport: ut4
  errors to 
"unseen" set: replicated d1@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing c1@myhost.test.ex
--------> u1 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
calling ut3 router
ut3 router called for c1@myhost.test.ex
  domain = myhost.test.ex
set transport ut3
queued for ut3 transport: local_part = c1
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^c\d
routed by ut3 router (unseen)
  envelope to: c1@myhost.test.ex
  transport: ut3
  errors to 
"unseen" set: replicated c1@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing b1@myhost.test.ex
--------> u1 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
calling ut2 router
ut2 router called for b1@myhost.test.ex
  domain = myhost.test.ex
set transport ut2
queued for ut2 transport: local_part = b1
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^b\d
routed by ut2 router (unseen)
  envelope to: b1@myhost.test.ex
  transport: ut2
  errors to 
"unseen" set: replicated b1@myhost.test.ex
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing a1@myhost.test.ex
--------> u1 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
calling u1 router
u1 router called for a1@myhost.test.ex
  domain = myhost.test.ex
set transport ut1
queued for ut1 transport: local_part = a1
domain = myhost.test.ex
  errors_to=
  domain_data=NULL local_part_data=^a\d
routed by u1 router (unseen)
  envelope to: a1@myhost.test.ex
  transport: ut1
  errors to 
"unseen" set: replicated a1@myhost.test.ex
locking TESTSUITE/spool/db/retry.lockfile
no retry data available
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: a1@myhost.test.ex
unique = \0\a1@myhost.test.ex
a1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: b1@myhost.test.ex
unique = \0\b1@myhost.test.ex
b1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: c1@myhost.test.ex
unique = \0\c1@myhost.test.ex
c1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: d1@myhost.test.ex
unique = \0\d1@myhost.test.ex
d1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: d2@myhost.test.ex
unique = \0\d2@myhost.test.ex
d2@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: d3@myhost.test.ex
unique = \0\d3@myhost.test.ex
d3@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: e1@myhost.test.ex
unique = \0\e1@myhost.test.ex
e1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: f1@myhost.test.ex
unique = \0\f1@myhost.test.ex
f1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: f2@myhost.test.ex
unique = \0\f2@myhost.test.ex
f2@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: f3@myhost.test.ex
unique = \0\f3@myhost.test.ex
f3@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing f3@myhost.test.ex
--------> ut7 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=f3 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=f3 domain=myhost.test.ex
calling real router
real router called for f3@myhost.test.ex
  domain = myhost.test.ex
set transport real
queued for real transport: local_part = f3
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: f3@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing f2@myhost.test.ex
--------> ut7 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=f2 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=f2 domain=myhost.test.ex
calling real router
real router called for f2@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = f2
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: f2@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing f1@myhost.test.ex
--------> ut7 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=f1 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=f1 domain=myhost.test.ex
calling real router
real router called for f1@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = f1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: f1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing e1@myhost.test.ex
--------> ut6 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=e1 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=e1 domain=myhost.test.ex
calling real router
real router called for e1@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = e1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: e1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing d3@myhost.test.ex
--------> ut5 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=d3 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=d3 domain=myhost.test.ex
calling real router
real router called for d3@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = d3
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: d3@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing d2@myhost.test.ex
--------> ut5 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=d2 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=d2 domain=myhost.test.ex
calling real router
real router called for d2@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = d2
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: d2@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing d1@myhost.test.ex
--------> ut5 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=d1 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=d1 domain=myhost.test.ex
calling real router
real router called for d1@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = d1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: d1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing c1@myhost.test.ex
--------> ut4 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=c1 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=c1 domain=myhost.test.ex
calling real router
real router called for c1@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = c1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: c1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing b1@myhost.test.ex
--------> ut3 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=b1 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=b1 domain=myhost.test.ex
calling real router
real router called for b1@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = b1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: b1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing a1@myhost.test.ex
--------> ut2 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=a1 domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=a1 domain=myhost.test.ex
calling real router
real router called for a1@myhost.test.ex
  domain = myhost.test.ex
queued for real transport: local_part = a1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: a1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
After routing:
  Local deliveries:
    a1@myhost.test.ex
    b1@myhost.test.ex
    c1@myhost.test.ex
    d1@myhost.test.ex
    d2@myhost.test.ex
    d3@myhost.test.ex
    e1@myhost.test.ex
    f1@myhost.test.ex
    f2@myhost.test.ex
    f3@myhost.test.ex
    a1@myhost.test.ex
    b1@myhost.test.ex
    c1@myhost.test.ex
  Remote deliveries:
    d1@myhost.test.ex
    d2@myhost.test.ex
    d3@myhost.test.ex
    e1@myhost.test.ex
    f1@myhost.test.ex
    f2@myhost.test.ex
    f3@myhost.test.ex
  Failed addresses:
  Deferred addresses:
    g1@myhost.test.ex
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => a1 <a1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => b1 <b1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => c1 <c1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => d1 <d1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => d2 <d2@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => d3 <d3@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => e1 <e1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => f1 <f1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => f2 <f2@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => f3 <f3@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => a1 <a1@myhost.test.ex> P=<> R=u1 T=ut1
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
transport error EPIPE ignored
LOG: MAIN
  ** b1@myhost.test.ex P=<> R=ut2 T=ut2: Child process of ut2 transport returned 127 (could mean unable to exec or command does not exist) from command: /non/existent/file
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
transport error EPIPE ignored
LOG: MAIN
  == c1@myhost.test.ex R=ut3 T=ut3 defer (0): Child process of ut3 transport returned 127 (could mean unable to exec or command does not exist) from command: /non/existent/file
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
locking TESTSUITE/spool/db/wait-ut4.lockfile
cmdlog: '220'
LOG: MAIN
  => d1@myhost.test.ex P=<> R=ut4 T=ut4 H=127.0.0.1 [127.0.0.1] C="250 OK"
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
cmdlog: '220'
LOG: MAIN
  == d2@myhost.test.ex R=ut4 T=ut4 defer (-44) H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after RCPT TO:<d2@myhost.test.ex>: 450 soft error
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
locking TESTSUITE/spool/db/wait-ut4.lockfile
cmdlog: '220'
LOG: MAIN
  ** d3@myhost.test.ex P=<> R=ut4 T=ut4 H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after RCPT TO:<d3@myhost.test.ex>: 550 hard error
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
locking TESTSUITE/spool/db/wait-ut5.lockfile
cmdlog: '220'
LOG: MAIN
  ** e1@myhost.test.ex P=<> R=ut5 T=ut5 H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after RCPT TO:<e1@myhost.test.ex>: 550 hard error
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
locking TESTSUITE/spool/db/wait-ut6.lockfile
cmdlog: '220'
LOG: MAIN
  => f1@myhost.test.ex P=<CALLER@myhost.test.ex> R=ut6 T=ut6 H=127.0.0.1 [127.0.0.1] C="250 OK"
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
cmdlog: '220'
LOG: MAIN
  == f2@myhost.test.ex R=ut6 T=ut6 defer (-44) H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after RCPT TO:<f2@myhost.test.ex>: 450 soft error
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
locking TESTSUITE/spool/db/wait-ut6.lockfile
cmdlog: '220'
LOG: MAIN
  ** f3@myhost.test.ex P=<CALLER@myhost.test.ex> R=ut6 T=ut6 H=127.0.0.1 [127.0.0.1]: SMTP error from remote mail server after RCPT TO:<f3@myhost.test.ex>: 550 hard error
log writing disabled
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  f3@myhost.test.ex <f3@myhost.test.ex>: error ignored
log writing disabled
Exim version x.yz ....
configuration file is TESTSUITE/test-config
trusted user
admin user
LOG: MAIN
  <= <> R=10HmaX-0005vi-00 U=EXIMUSER P=local S=sss
Exim version x.yz ....
configuration file is TESTSUITE/test-config
trusted user
admin user
dropping to exim gid; retaining priv uid
locking TESTSUITE/spool/db/retry.lockfile
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: CALLER@myhost.test.ex
unique = CALLER@myhost.test.ex
CALLER@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing CALLER@myhost.test.ex
--------> u1 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=CALLER domain=myhost.test.ex
checking local_parts
ut8 router skipped: local_parts mismatch
--------> real router <--------
local_part=CALLER domain=myhost.test.ex
calling real router
real router called for CALLER@myhost.test.ex
  domain = myhost.test.ex
set transport real
queued for real transport: local_part = CALLER
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: CALLER@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
After routing:
  Local deliveries:
    CALLER@myhost.test.ex
  Remote deliveries:
  Failed addresses:
  Deferred addresses:
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => CALLER <CALLER@myhost.test.ex> P=<> R=real T=real
LOG: MAIN
  Completed
>>>>>>>>>>>>>>>> Exim pid=p1238 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Exim pid=p1237 (bounce-message) terminating with rc=0 >>>>>>>>>>>>>>>>
LOG: MAIN
  d3@myhost.test.ex <d3@myhost.test.ex>: error ignored
log writing disabled
LOG: MAIN
  b1@myhost.test.ex <b1@myhost.test.ex>: error ignored
log writing disabled
>>>>>>>>>>>>>>>> Exim pid=p1236 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Exim pid=p1235 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>>
Exim version x.yz ....
configuration file is TESTSUITE/test-config
admin user
LOG: MAIN
  <= CALLER@myhost.test.ex U=CALLER P=local S=sss
Exim version x.yz ....
configuration file is TESTSUITE/test-config
trusted user
admin user
dropping to exim gid; retaining priv uid
locking TESTSUITE/spool/db/retry.lockfile
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: h1@myhost.test.ex
unique = h1@myhost.test.ex
h1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing h1@myhost.test.ex
--------> u1 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
u1 router skipped: local_parts mismatch
--------> ut2 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
ut2 router skipped: local_parts mismatch
--------> ut3 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
ut3 router skipped: local_parts mismatch
--------> ut4 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
ut4 router skipped: local_parts mismatch
--------> ut5 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
ut5 router skipped: local_parts mismatch
--------> ut6 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
ut6 router skipped: local_parts mismatch
--------> ut7 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
ut7 router skipped: local_parts mismatch
--------> ut8 router <--------
local_part=h1 domain=myhost.test.ex
checking local_parts
calling ut8 router
ut8 router called for h1@myhost.test.ex
  domain = myhost.test.ex
forced expansion failure - ignoring errors_to
set transport ut1
queued for ut1 transport: local_part = h1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=^h\d
routed by ut8 router (unseen)
  envelope to: h1@myhost.test.ex
  transport: ut1
"unseen" set: replicated h1@myhost.test.ex
locking TESTSUITE/spool/db/retry.lockfile
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Considering: h1@myhost.test.ex
unique = \0\h1@myhost.test.ex
h1@myhost.test.ex: queued for routing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
routing h1@myhost.test.ex
--------> real router <--------
local_part=h1 domain=myhost.test.ex
calling real router
real router called for h1@myhost.test.ex
  domain = myhost.test.ex
set transport real
queued for real transport: local_part = h1
domain = myhost.test.ex
  errors_to=NULL
  domain_data=NULL local_part_data=NULL
routed by real router
  envelope to: h1@myhost.test.ex
  transport: real
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
After routing:
  Local deliveries:
    h1@myhost.test.ex
    h1@myhost.test.ex
  Remote deliveries:
  Failed addresses:
  Deferred addresses:
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => h1 <h1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=real T=real
locking TESTSUITE/spool/db/retry.lockfile
LOG: MAIN
  => h1 <h1@myhost.test.ex> P=<CALLER@myhost.test.ex> R=ut8 T=ut1
log writing disabled
LOG: MAIN
  Completed
>>>>>>>>>>>>>>>> Exim pid=p1240 (local-accept-delivery) terminating with rc=0 >>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Exim pid=p1239 (fresh-exec) terminating with rc=0 >>>>>>>>>>>>>>>>