+ All Categories
Home > Documents > Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and...

Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and...

Date post: 06-Jun-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
45
Postfix Postfix
Transcript
Page 1: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

PostfixPostfix

Page 2: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

2

Page 3: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

3

Role of PostfixRole of Postfix

MTA that• Receive and deliver email over the network via SMTP• Local delivery directly or use other mail delivery agent

Page 4: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

4

Postfix ArchitecturePostfix Architecture

Modular-design MTA• Not like sendmail of monolithic system• Decompose into several individual program that each one handle

specific task• The most important daemon: master daemon

Reside in memoryGet configuration information from master.cf and main.cfInvoke other process to do jobs

Major tasks• Receive mail and put in queue• Queue management• Delivery mail from queue

Page 5: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

5

Postfix Architecture Postfix Architecture ––Message INMessage IN

Four ways• Local submission

postdrop commandmaildrop directorypickup daemon cleanup daemon

– Header validation– address translation

incoming directory• Network submission

smtpd daemon• Local forwarding

Resubmit for such as .forward• Notification

defer daemonbounce daemon

Local submission

Network submission

Page 6: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

6

Postfix Architecture Postfix Architecture ––QueueQueue

Five different queues• incoming

The first queue that every incoming email will stay• active

Queue manager will move message into active queue whenever there is enough system resourcesQueue manager then invokes suitable DA to delivery it

• deferredMessages that cannot be delivered are moved hereThese messages are sent back either with bounce or defer daemons

• corruptUsed to store damaged or unreadable message

• hold

Page 7: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

7

Postfix Architecture Postfix Architecture ––Message OUT (1)Message OUT (1)

Address classes• Used to determine which destinations to accept for delivery• How the delivery take place

Main address classes• Local delivery

Domain names in “mydestination” is local deliveredEx:

– mydestination = nabsd.cs.nctu.edu.tw localhostIt will check alias and .forward file to do further delivery

• Virtual aliasEx:

– virtual-alias.domain– [email protected] address1

• Virtual mailboxEach recipient address can have its own mailboxEx:

– virtual_mailbox_base = /var/vmail– /var/mail/vmail/CSIE, /var/mail/vmail/CS

• RelayTransfer mail for others to not yours domainIt is common for centralize mail architecture to relay trusted domain

• Deliver mail to other domain for authorized userThe queue manager will invoke the smtp DA to deliver this mail

Page 8: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

8

Postfix Architecture Postfix Architecture ––Message OUT (2)Message OUT (2)

Other delivery agent (MDA)• Specify in /usr/local/etc/postfix/master.cf

– How a client program connects to a service and what daemon program runs when a service is requested

• lmtpLocal Mail Transfer ProtocolUsed for deliveries between mail systems on the same network even the same host

– Such as postfix POP/IMAP to store message in store with POP/IMAP proprietary format

• pipeUsed to deliver message to external program

pickup fifo n - n 60 1 pickupcleanup unix n - n - 0 cleanupbounce unix - - n - 0 bouncedefer unix - - n - 0 bouncesmtp unix - - n - - smtprelay unix - - n - - smtp

Page 9: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

9

Message Flow in Postfix (1)Message Flow in Postfix (1)

Example• [email protected] [email protected] ([email protected])• Phase1:

Helene compose mail using her MUA, and then call postfix’s sendmail command to send it

Page 10: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

10

Message Flow in Postfix (2)Message Flow in Postfix (2)

• Phase2:The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queueThe local DA find that frank is an alias, so it resubmits it through cleanup daemon for further delivery

Page 11: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

11

Message Flow in Postfix (3)Message Flow in Postfix (3)

• Phase3The smtpd on onlamp.com takes this message and invoke cleanup then put in incoming queueLocal delivery to message store

Page 12: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

12

Message Store FormatMessage Store Format

The Mbox format• Store messages in single file for each user• Each message start with “From ” line and continued with message headers

and body• Mbox format has file-locking problem

The Maildir format• Use structure of directories to store email messages• Each message is in its owned file• Three subdirectories

cur, new and tmp• Maildir format has scalability problem

Quick in locating and deletingRelated parameters (in main.cf)• mail_spool_directory = /var/spool/mail (Mbox)• mail_spool_directory = /var/spool/mail/ (Maildir)

Page 13: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

13

Postfix and POP/IMAPPostfix and POP/IMAP

POP vs. IMAP• Both are used to retrieve mail from server for remote clients• POP has to download entire message, while IMAP can download

headers only• POP can download only single mailbox, while IMAP can let you

maintain multiple mailboxes and folders on server

Cooperation between Postfix and POP/IMAP• Postfix and POP/IMAP must agree on the type of mailbox format

and style of lockingStandard message storeUnstandard message store (using LMTP)

– Such as Cyrus IMAP

Page 14: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

14

Postfix ConfigurationPostfix Configuration

Two most important configuration files• /usr/local/etc/postfix/main.cf

Core configuration

• /usr/local/etc/postfix/master.cfWhich postfix service should invoke which program

Edit configuration file• Using text editor• postconf

% postconf –e myhostname=nabsd.cs.nctu.edu.tw% postconf –d myhostname (print default setting)% postconf myhostname (print current setting)

Reload postfix whenever there is a change• % postfix reload

Page 15: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

15

Postfix Configuration Postfix Configuration ––Lookup tables (1)Lookup tables (1)

Parameters that use external files to store values• Such as mydestination, mynetwork, relay_domains• Text-based table is ok, but time-consuming when table is large

Lookup tables syntax• Key values

postmap command• % postmap /etc/access (generate database)• % postmap –q nctu.edu.tw /etc/access (query)

Page 16: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

16

Postfix Configuration Postfix Configuration ––Lookup tables (2)Lookup tables (2)

Database format• % postconf –m

List all available database format• % postconf default_database_type

Use databased-lookup table inmain.cf• syntax

Parameter = type:name• Ex:

check_client_access hash:/etc/access

% postconf -mbtreecidrenvironhashpcreproxyregexpstaticunix% postconf default_database_typedefault_database_type = hash

Page 17: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

17

Postfix Configuration Postfix Configuration ––Lookup tables (3)Lookup tables (3)

Regular expression tables• More flexible for matching keys in lookup tables

• Two regular expression libraries used in PostfixPOSIX extended regular expression (regexp, default)Perl-Compatible regular expression (PCRE)

• Usage/pattern/ valueIt is useful to use regular expression tables to do checks, such as

– header_checks and body_checks parameters

Page 18: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

18

Postfix Configuration Postfix Configuration ––systemsystem--wide aliases fileswide aliases files

Using aliases in Postfix• alias_maps = hash:/etc/aliases• alias_maps = hash:/etc/aliases, nis:mail.aliases• alias_database = hash:/etc/aliases

Tell newaliases command which aliases file to build

To Build alias database file• % postalias /etc/aliases

Alias file format (same as sendmail)• RHS can be

Email address, filename, command, :include:

Alias restriction• allow_mail_to_commands = alias, forward• allow_mail_to_files = alias, forward

Page 19: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

19

Postfix Configuration Postfix Configuration ––MTA IdentityMTA Identity

Four related parameters• myhostname

myhostname = nabsd.cs.nctu.edu.twIf un-specified, postfix will use ‘hostname’ command

• mydomainmydomain = cs.nctu.edu.twIf un-specified, postfix use myhostname minus the first component

• myoriginmyorigin = $mydomain (default is myhostname)Used to append unqualified address

• mydestinationList all the domains that postfix should accept for local deliverymydestination = $myhostname, localhost.$mydomain $mydomainmydestination = $myhostname, localhost.$mydomain

– This is the CSIE situation that mx will route mail to mailgate

Page 20: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

20

Postfix Configuration Postfix Configuration ––Relay Control (1)Relay Control (1)

Open relay• A mail server that permit anyone to relay mails• By default, postfix is not an open relay

A mail server should• Relay mail for trusted user

Such as smtp.cs.nctu.edu.tw

• Relay mail for trusted domainSuch as smtp.csie.nctu.edu.tw trust nctu.edu.tw

Page 21: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

21

Postfix Configuration Postfix Configuration ––Relay Control (2)Relay Control (2)

Restricting relay access by mynetworks_style• mynetworks_style = subnet

Allow relaying from other hosts in the same subnet• mynetworks_style = host

Allow relaying for only local machine• mynetworks_style = class

Any host in the same class A, B or C

Restricting relay access by mynetworks• List individual IP or subnets in network/netmask notation• Ex: in /usr/local/etc/postfix/mynetworks

127.0.0.0/8140.113.0.0/1610.113.0.0/16

Relay depends on what kind of your mail server is• smtp.cs.nctu.edu.tw will be different from csmx1.cs.nctu.edu.tw

Page 22: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

22

Postfix Configuration Postfix Configuration ––master.cf (1)master.cf (1)

/usr/local/etc/postfix/master.cf• Define what services the master daemon can invoke• Each row defines a service and• Each column contains a specific configuration option

# ==========================================================================# service type private unpriv chroot wakeup maxproc command + args# (yes) (yes) (yes) (never) (100)# ==========================================================================smtp inet n - n - - smtpdpickup fifo n - n 60 1 pickupcleanup unix n - n - 0 cleanupqmgr fifo n - n 300 1 qmgrtlsmgr unix - - n 1000? 1 tlsmgrrewrite unix - - n - - trivial-rewritebounce unix - - n - 0 bounceflush unix n - n 1000? 0 flush127.0.0.1:10025 inet n - n - - smtpd

Page 23: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

23

Postfix Configuration Postfix Configuration ––master.cf (2)master.cf (2)

Configuration options• Service name and transport type

inet– Network socket– In this type, name can be combination of IP:Port

unix and fifo– Unix domain socket and named pipe respectively– Inter-process communication through file

• privateAccess to this component is restricted to the Postfix system

• unprivRun with the least amount of privilege required

– y will run with the account defined in “mail_owner”– n will run with root privilege

Page 24: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

24

Postfix Configuration Postfix Configuration ––master.cfmaster.cf (3)(3)

• chrootchroot location is defined in “queue_directory”

• wakeupPeriodic wake up to do jobs, such as pickup daemon

• maxprocNumber of processes that can be invoked simultaneouslyDefault count is defined in “default_process_limit”

• command + argsDefault path is defined in “daemon_directory”/usr/libexec/postfix

Page 25: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

25

Postfix Configuration Postfix Configuration ––Receiving limitsReceiving limits

Enforce limits on incoming mail• The number of recipients for single delivery

smtpd_recipient_limit = 1000• Message size

message_size_limit = 10240000

• The number of errors before breaking off communicationPostfix keep a counter of errors for each client and increase delay time once there is errorsmtpd_error_sleep_time = 1ssmtpd_soft_error_limit = 10smtpd_hard_error_limit = 20

Page 26: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

26

Postfix Configuration Postfix Configuration ––Rewriting address (1)Rewriting address (1)

For unqualified address• To append “myorigin” to local name.

append_dot_mydomain = yes

• To append “mydomain” to address that contain only host.append_at_myorigin = yes

Masquerading hostname• Hide the names of internal hosts to make all addresses appear as if they

come from the mail gateway • It is often used in out-going mail gateway

masquerade_domains = cs.nctu.edu.twmasquerade_domains = !chairman.cs.nctu.edu.tw cs.nctu.edu.twmasquerade_exceptions = admin, root

• Rewrite to all envelope and header address excepts envelope recipient address

masquerade_class = envelope_sender, header_sender, header_recipient

Page 27: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

27

Postfix Configuration Postfix Configuration ––Rewriting address (2)Rewriting address (2)

Canonical address• Rewrite both header and envelope recursively invoked by cleanup daemon• Configuration

canonical_maps = hash:/usr/local/etc/postfix/canonicalcanonical_classes = envelope_sender, envelope_recipient, header_sender, header_recipient

• /usr/local/etc/postfix/[email protected] [email protected]@cs.nctu.edu.tw [email protected]

• Simlar mapssender_canonical_mapsrecipient_canonical_maps

Page 28: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

28

Postfix Configuration Postfix Configuration ––Rewriting address (3)Rewriting address (3)

Relocated users• Used to inform sender that the recipient is moved• relocated_maps = hash:/usr/local/etc/postfix/relocated• Ex:

@nabsd.cs.nctu.edu.tw [email protected] [email protected]

Unknown users• Not local user and not found in maps• Default action: reject

Page 29: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

29

Queue ManagementQueue Management

The queue manage daemon• qmgr daemon• Queue directories (under /var/spool/postfix)

active, bounce, corrupt, deferred, hold

Message movement between queues• Temporary problem deferred queue• qmgr takes messages alternatively between incoming and deferred

queue to active queue

Page 30: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

30

Queue Management Queue Management ––Queue Scheduling Queue Scheduling

Double delay in deferred messages• Between

minimal_backoff_time = 1000smaximal_backoff_time = 4000s

• qmgr daemon periodically scan deferred queue for reborn messagesqueue_run_delay = 1000s

Deferred bounce• maximal_queue_lifetime = 5d

Page 31: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

31

Queue Management Queue Management ––Message DeliveryMessage Delivery

Controlling outgoing messages• When there are lots of messages in queue for the same destination, it should

be careful not to overwhelm it• If concurrent delivery is success, postfix can increase concurrency between:

initial_destination_concurrency = 5default_destination_concurrency_limit = 20

Under control by – maxproc in /usr/local/etc/postfix/master.cf– default_process_limit

You can override the default_destination_concurrency_limit for any transport mailer:

– smtp_destination_concurrency_limit = 25– local_destination_concurrency_limit = 10

• Control how many recipients for a single outgoing messagedefault_destination_recipient_limit = 50

You can override it for any transport mailer in the same idea:– smtp_destination_recipient_limit = 100

Page 32: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

32

Queue Management Queue Management ––Error NotificationError Notification

Sending error messages to administrator• Set notify_classes parameter to list error classes that should be

generated and sent to administratorEx: notify_classes = resource, software

• Error classes

error_notice_recipientSend notice because of software pro.software

error_notice_recipientSend notice because of resource pro.resource

error_notice_recipientSend transcript that has SMTP errorprotocol

error_notice_recipientSend transcript when mail is reject due toanti-spam restrictions

policy

delay_notice_recipientSend headers of delayed mailsdelay

2boucne_notice_recipientSend undeliverable bounced mails2bounce

bounce_notice_recipientSend headers of bounced mailsbounce

Noticed Recipient(all default to postmaster)DescriptionError Class

Page 33: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

33

Queue Management Queue Management ––Queue Tools (1)Queue Tools (1)

postqueue command• postqueue –p

Generate sendmail mailq output• postqueue –f

Attempt to deliver all queued mail• postqueue –s cs.nctu.edu.tw

Schedule immediate delivery of all mail queued for sitepostsuper command

• postsuper –d DBA3F1A9 (from incoming, active, deferred, hold)• postsuper –d ALL

Delete queued messages• postsuper –h DBA3F1A9 (from incoming, active, deferred)• postsuper –h ALL

Put messages “on hold” so that no attempt is made to deliver it• postsuper –H DBA3F1A9• postsuper –H ALL

Release messages in hold queue• postsuper –r DBA3F1A9• postsuper –r ALL

Requeue messages into maildrop queue

Page 34: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

34

Queue Management Queue Management ––Queue Tools (2)Queue Tools (2)

postcat • Display the

contents of a queue file

nabsd [/home/chwong] -chwong- sudo postqueue -p-Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient-------DEC003B50E2 344 Tue May 8 19:58:37 [email protected]

(connect to chbsd.cs.nctu.edu.tw[140.113.17.212]: Connection refused)[email protected]

-- 0 Kbytes in 1 Request.

nabsd [/home/chwong] -chwong- sudo postcat -q DEC003B50E2*** ENVELOPE RECORDS deferred/D/DEC003B50E2 ***message_size: 344 252 1 0 344message_arrival_time: Tue May 8 19:58:37 2007create_time: Tue May 8 19:58:37 2007named_attribute: rewrite_context=localsender_fullname: Tsung-Hsi Wengsender: [email protected]_recipient: [email protected]: [email protected]*** MESSAGE CONTENTS deferred/D/DEC003B50E2 ***Received: by nabsd.cs.nctu.edu.tw (Postfix, from userid 1001)id DEC003B50E2; Tue, 8 May 2007 19:58:37 +0800 (CST)To: [email protected]: Testing MailMessage-Id: <[email protected]>Date: Tue, 8 May 2007 19:58:37 +0800 (CST)From: [email protected] (Tsung-Hsi Weng)

hello*** HEADER EXTRACTED deferred/D/DEC003B50E2 ****** MESSAGE FILE END deferred/D/DEC003B50E2 ***

Page 35: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

35

Mail Relaying Mail Relaying ––Transport Maps (1)Transport Maps (1)

Transport maps• It override default transport types for delivery of messages• transport_maps = hash:/usr/local/etc/postfix/transport• Ex:

domain_or_address transport:nexthopcsie.nctu.edu.tw smtp:[mailgate.csie.nctu.edu.tw]cs.nctu.edu.tw smtp:[csmailgate.cs.nctu.edu.tw]cis.nctu.edu.tw smtp:[mail.cis.nctu.edu.tw]

example.com smtp:[192.168.23.56]:20025orillynet.com smtpora.com [email protected] error:no mail accepted for kdent

Page 36: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

36

Mail Relaying Mail Relaying ––Transport Maps (2)Transport Maps (2)

One usage in transport map• Postponing mail relay

Such as ISP has to postpone until customer network is online• Ex:

I am an ISP, and I has a mail server that is MX for abc.com

In /usr/local/etc/postfix/transportabc.com ondemand

In /usr/local/etc/postfix/master.cfondemand unix - - n - - smtp

In /usr/local/etc/postfix/main.cfdefer_transports = ondemandtransport_maps = hash:/usr/local/etc/postfix/transport

Whenever the customer network is online, do$ postqueue –f abc.com

Page 37: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

37

Mail Relaying Mail Relaying ––IInbound Mail Gateway (1)nbound Mail Gateway (1)

Inbound Mail Gateway• Accept all mail for a network from the Internet and relays it to internal mail

systems• Ex:

csmx1.cs.nctu.edu.tw is a IMGcsmailgate.cs.nctu.edu.tw is internal mail system

Page 38: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

38

Mail Relaying Mail Relaying ––IInbound Mail Gateway (2)nbound Mail Gateway (2)

To be IMG, suppose• You are administrator for cs.nctu.edu.tw• You have to be the IMG for secureLab.cs.nctu.edu.tw and

javaLab.cs.nctu.edu.tw

1. The MX record for secureLab.cs.nctu.edu.tw and javaLab.cs.nctu.edu.tw should point to csmx1.cs.nctu.edu.tw

2. In csmx1.cs.nctu.edu.tw, relay_domains = secureLab.cs.nctu.edu.tw javaLab.cs.nctu.edu.twtransport_maps = hash:/usr/local/etc/postfix/transportsecureLab.cs.nctu.edu.tw relay:[secureLab.cs.nctu.edu.tw]javaLab.cs.nctu.edu.tw relay:[javaLab.cs.nctu.edu.tw]

3. In secureLab.cs.nctu.edu.tw ( and so do javaLab.cs.nctu.edu.tw)mydestination = secureLab.cs.nctu.edu.tw

Page 39: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

39

Mail Relaying Mail Relaying ––OutOutbound Mail Gatewaybound Mail Gateway

Outbound Mail Gateway• Accept mails from inside network and relay them to Internet hosts

on behalf of internal mail serversTo be OMG, suppose• You are administrator for cs.nctu.edu.tw• You have to be the OMG for secureLab.cs.nctu.edu.tw and

javaLab.cs.nctu.edu.tw

1. In csmx1.cs.nctu.edu.twmynetworks = hash:/usr/local/etc/postfix/mynetworkssecureLab.cs.nctu.edu.twjavaLab.cs.nctu.edu.tw

2. All students in secureLab will configure there MUA (ex. outlook)to use secureLab.cs.nctu.edu.tw to be the SMTP server

3. In secureLab.cs.nctu.edu.tw, relayhost = [csmx1.cs.nctu.edu.tw]

Page 40: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

40

Advanced Aliasing Advanced Aliasing ––Virtual Alias MapsVirtual Alias Maps

Virtual Alias Map• It rewrites recipient addresses for all local, all virtual, and all remote

mail destinations.• virtual_alias_maps = hash:/usr/local/etc/postfix/virtual• Ex:

domain_or_address transport:[email protected] @[email protected] @chbsd.cs.nctu.edu.tw

• Applying regular expressionvirtual_alias_maps = pcre:/usr/local/etc/postfix/virtual

/@csie\.nctu\.edu\.tw/ @cs.nctu.edu.tw/chwong@csie\.nctu\.edu\.tw/ @chbsd.cs.nctu.edu.tw/(\S+)\.(\S+)@nabsd\.cs\.nctu\.edu\.tw/ [email protected]

Page 41: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

41

Multiple DomainsMultiple Domains

Use single system to host many domains• Ex:

We use csmailgate.cs.nctu.edu.tw to host both– cs.nctu.edu.tw– csie.nctu.edu.tw

• PurposeCan be used for final delivery on the machine orCan be used for forwarding to destination elsewhere

Important considerations• Does the same user id with different domain should go to the same

mailbox or different mailbox ?YES (shared domain)NO (Separate domain)

• Does every user require a system account in /etc/passwd ?YES (system account)NO (virtual account)

Page 42: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

42

Multiple Domains Multiple Domains ––Shared Domain with System AccountShared Domain with System Account

Situation• The mail system should accept mails for both canonical and virtual domains

and• The same mailbox for the same user id

Procedure • Modify “mydomain” to canonical domain• Modify “mydestination” parameter to let mails to virtual domain can be local

delivered • Ex:

mydomain = cs.nctu.edu.twmydestination = $myhostname, $mydomain, csie.nctu.edu.tw

※ In this way, mail to both [email protected] and [email protected] go to csmailgate:/var/mail/chwong

Limitation• Can not separate [email protected] from [email protected]

Page 43: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

43

Multiple Domains Multiple Domains ––Separate Domains with System AccountsSeparate Domains with System Accounts

Situation• The mail system should accept mails for both canonical and virtual domains and• Mailboxes are not necessarily the same for the same user id

Procedure• Modify “mydomain” to canonical domain• Modify “virtual_alias_domains” to accept mails to virtual domains• Create “virtual_alias_mas” map• Ex:

mydomain = cs.nctu.edu.twvirtual_alias_domains = abc.com.tw, xyz.com.twvirtual_alias_maps = hash:/usr/local/etc/postfix/virtual

In /usr/local/etc/postfix/virtual– [email protected] andy– @xyz.com.tw jack

Limitation• Need to maintain UNIX account for virtual domain user

Page 44: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

44

Multiple Domains Multiple Domains ––Separate Domains with Virtual Accounts (1)Separate Domains with Virtual Accounts (1)

Useful when users in virtual domains:• Do not need to login to system• Only need to retrieve mail through POP/IMAP server

Procedure• Modify “virtual_mailbox_domains” to let postfix know what mails it should

accepts• Modify “virtual_mailbox_base” and create related directory to put mails• Create “virtual_mailbox_mas” map• Ex:

virtual_mailbox_domain = abc.com.tw, xyz.com.twvirtual_mailbox_base = /var/vmailCreate /var/vmail/abc-domain and /var/vmail/xyz-domainvirtual_mailbox_maps = hash:/usr/local/etc/postfix/vmailbox

In /usr/local/etc/postfix/vmailbox– [email protected] abc-domain/CEO (Mailbox format)– [email protected] xyz-domain/CEO/ (Maildir format)

Page 45: Postfix - National Chiao Tung University€¦ · ¾The smtpd on postfix.org takes this message and invoke cleanup then put in incoming queue ¾The local DA find that frank is an alias,

Com

puter Center, C

S, N

CTU

45

Multiple Domains Multiple Domains ––Separate Domains with Virtual Accounts (2)Separate Domains with Virtual Accounts (2)

Ownerships of virtual mailboxes• Simplest way:

The same owner of POP/IMAP Servers

• Flexibility in postfixvirtual_uid_maps and virtual_gid_mapsEx:

– virtual_uid_maps = static:1003– virtual_gid_maps = static:105

– virtual_uid_maps = hash:/usr/local/etc/postfix/virtual_uids– virtual_uid_maps = hash:/usr/local/etc/postfix/virtual_uids static:1003

– In /usr/local/etc/postfix/virtual_uids

» [email protected] 1004» [email protected] 1008


Recommended