postfix/postfix.txt

changeset 781
25504c2d46b1
parent 664
3045cab269c7
equal deleted inserted replaced
5:4981b968fee8 6:96a733a7f3a2
23 T_TRANSPORT = transport 23 T_TRANSPORT = transport
24 T_ALIASES = aliases 24 T_ALIASES = aliases
25 T_CLIENTS = clients 25 T_CLIENTS = clients
26 T_SENDERS = senders 26 T_SENDERS = senders
27 T_CLICRT = clicrt 27 T_CLICRT = clicrt
28 T_RECIPIENT = recipient
29 T_HELO = helo
28 30
29 # dependency tracking 31 # dependency tracking
30 TIMESTAMP = .up-to-date 32 TIMESTAMP = .up-to-date
31 DEPENDENCIES = Makefile master.cf main.cf $(TABLES) 33 DEPENDENCIES = Makefile master.cf main.cf $(TABLES)
32 34
41 $(T_RELOCATED).db \ 43 $(T_RELOCATED).db \
42 $(T_TRANSPORT).db \ 44 $(T_TRANSPORT).db \
43 $(T_ALIASES).db \ 45 $(T_ALIASES).db \
44 $(T_CLIENTS).db \ 46 $(T_CLIENTS).db \
45 $(T_SENDERS).db \ 47 $(T_SENDERS).db \
46 $(T_CLICRT).db 48 $(T_CLICRT).db \
49 $(T_RECIPIENT).db \
50 $(T_HELO).db
47 51
48 # default target 52 # default target
49 all: $(TABLES) $(TIMESTAMP) 53 all: $(TABLES) $(TIMESTAMP)
50 54
51 # implicit checking and reloading 55 # implicit checking and reloading
77 $(POSTMAP) hash:$(T_CLIENTS) 81 $(POSTMAP) hash:$(T_CLIENTS)
78 $(T_SENDERS).db: $(T_SENDERS) $(MAKEFILE) 82 $(T_SENDERS).db: $(T_SENDERS) $(MAKEFILE)
79 $(POSTMAP) hash:$(T_SENDERS) 83 $(POSTMAP) hash:$(T_SENDERS)
80 $(T_CLICRT).db: $(T_CLICRT) $(MAKEFILE) 84 $(T_CLICRT).db: $(T_CLICRT) $(MAKEFILE)
81 $(POSTMAP) hash:$(T_CLICRT) 85 $(POSTMAP) hash:$(T_CLICRT)
86 $(T_RECIPIENT).db: $(T_RECIPIENT) $(MAKEFILE)
87 $(POSTMAP) hash:$(T_RECIPIENT)
88 $(T_HELO).db: $(T_HELO) $(MAKEFILE)
89 $(POSTMAP) hash:$(T_HELO)
82 90
83 # cleanup target 91 # cleanup target
84 clean: 92 clean:
85 -rm -f $(TABLES) 93 -rm -f $(TABLES)
86 -rm -f $(TIMESTAMP) 94 -rm -f $(TIMESTAMP)
438 # Examples: 446 # Examples:
439 # | B8:B8:A8:AE:B8:2A:2B:74:EC:43:FF:4F:B2:B2:AC:1E:B4:CE:26:1D user1 447 # | B8:B8:A8:AE:B8:2A:2B:74:EC:43:FF:4F:B2:B2:AC:1E:B4:CE:26:1D user1
440 # | 18:81:F5:22:18:BA:EB:15:FF:40:30:00:EA:C0:B4:2E:EC:AE:86:8E user2 448 # | 18:81:F5:22:18:BA:EB:15:FF:40:30:00:EA:C0:B4:2E:EC:AE:86:8E user2
441 449
442 </file> 450 </file>
451 <file name="recipient">
452 ##
453 ## @l_prefix@/etc/postfix/recipient -- control for relaying recipients
454 ##
455 ## Searched for RCPT TO address, domain, parent domains, or localpart@
456 ## and rejects the request if the result is REJECT or "[45]XX text" or
457 ## permits the request if the result is OK or RELAY or all-numerical.
458 ##
459
460 # Syntax (see access(5)):
461 # | user@domain action
462 # | domain action
463 # | user@ action
464 # | net.work.addr.ess action
465 # | net.work.addr action
466 # | net.work action
467 # | net action
468 # where "action" is one of:
469 # "[45]NN text", "REJECT", "OK", "restriction..."
470 #
471 # Examples:
472 # | mail.example.com OK
473 # | example.com REJECT
474 # | 192.168.0.1 OK
475 # | 192.168 REJECT
476 # | postmaster@ OK
477
478 </file>
479 <file name="helo">
480 ##
481 ## @l_prefix@/etc/postfix/helo -- control for relaying helo transmissions
482 ##
483 ## Searched for HELO or EHLO hostname or parent domains and rejects the
484 ## request if the result is REJECT or "[45]XX text" or permits the request
485 ## if the result is OK or RELAY or all-numerical.
486 ##
487
488 # Syntax (see access(5)):
489 # | user@domain action
490 # | domain action
491 # | user@ action
492 # | net.work.addr.ess action
493 # | net.work.addr action
494 # | net.work action
495 # | net action
496 # where "action" is one of:
497 # "[45]NN text", "REJECT", "OK", "restriction..."
498 #
499 # Examples:
500 # | mail.example.com OK
501 # | example.com REJECT
502 # | 192.168.0.1 OK
503 # | 192.168 REJECT
504 # | postmaster@ OK
505
506 </file>

mercurial