# phpman > man > virtual(8postfix)

[VIRTUAL(8postfix)](https://www.chedong.com/phpMan.php/man/VIRTUAL/8postfix/markdown)                                                                  [VIRTUAL(8postfix)](https://www.chedong.com/phpMan.php/man/VIRTUAL/8postfix/markdown)



## NAME
       virtual - Postfix virtual domain mail delivery agent

## SYNOPSIS
       **virtual** [generic Postfix daemon options]

## DESCRIPTION
       The [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent is designed for virtual mail hosting services. Originally based
       on the Postfix [**local**(8)](https://www.chedong.com/phpMan.php/man/local/8/markdown) delivery agent, this agent looks up recipients with  map  lookups  of
       their  full  recipient address, instead of using hard-coded unix password file lookups of the
       address local part only.

       This delivery agent only delivers mail.  Other features such as mail  forwarding,  out-of-of‐
       fice  notifications,  etc.,  must  be configured via virtual_alias maps or via similar lookup
       mechanisms.

## MAILBOX LOCATION
       The mailbox location is controlled by the **virtual**___**mailbox**___**base** and **virtual**___**mailbox**___**maps**  con‐
       figuration  parameters (see below).  The **virtual**___**mailbox**___**maps** table is indexed by the recipi‐
       ent address as described under TABLE SEARCH ORDER below.

       The mailbox pathname is constructed as follows:

         **$virtual**___**mailbox**___**base/$virtual**___**mailbox**___**maps(**_recipient_**)**

       where _recipient_ is the full recipient address.

## UNIX MAILBOX FORMAT
       When the mailbox location does not end in **/**, the message is delivered in UNIX mailbox format.
       This format stores multiple messages in one textfile.

       The  [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown)  delivery  agent  prepends a "**From** _sender_ _time_stamp_" envelope header to each
       message, prepends a  **Delivered-To:**  message  header  with  the  envelope  recipient  address,
       prepends  an **X-Original-To:** header with the recipient address as given to Postfix, prepends a
       **Return-Path:** message header with the envelope sender address, prepends a **>** character to lines
       beginning with "**From** ", and appends an empty line.

       The  mailbox  is  locked for exclusive access while delivery is in progress. In case of prob‐
       lems, an attempt is made to truncate the mailbox to its original length.

## QMAIL MAILDIR FORMAT
       When the mailbox location ends in **/**, the message is delivered in qmail **maildir**  format.  This
       format stores one message per file.

       The [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent prepends a **Delivered-To:** message header with the final envelope
       recipient address, prepends an **X-Original-To:** header with the recipient address as  given  to
       Postfix, and prepends a **Return-Path:** message header with the envelope sender address.

       By definition, **maildir** format does not require application-level file locking during mail de‐
       livery or retrieval.

## MAILBOX OWNERSHIP
       Mailbox ownership is controlled by the **virtual**___**uid**___**maps** and **virtual**___**gid**___**maps**  lookup  tables,
       which  are indexed with the full recipient address. Each table provides a string with the nu‐
       merical user and group ID, respectively.

       The **virtual**___**minimum**___**uid** parameter imposes a lower bound on numerical user ID values that  may
       be specified in any **virtual**___**uid**___**maps**.

## CASE FOLDING
       All  delivery  decisions are made using the full recipient address, folded to lower case. See
       also the next section for a few exceptions with optional address extensions.

## TABLE SEARCH ORDER
       Normally, a lookup table is specified as a text file that serves as input to  the  [**postmap**(1)](https://www.chedong.com/phpMan.php/man/postmap/1/markdown)
       command.  The  result, an indexed file in **dbm** or **db** format, is used for fast searching by the
       mail system.

       The search order is as follows. The search stops upon the first successful lookup.

       •      When the recipient has an optional address extension the _user+<extension@domain.tld_> ad‐
              dress is looked up first.

              With Postfix versions before 2.1, the optional address extension is always ignored.

       •      The <_user@domain.tld_> address, without address extension, is looked up next.

       •      Finally, the recipient _@domain_ is looked up.

       When  the  table  is  provided via other means such as NIS, LDAP or SQL, the same lookups are
       done as for ordinary indexed files.

       Alternatively, a table can be provided as a regular-expression map where patterns  are  given
       as  regular  expressions. In that case, only the full recipient address is given to the regu‐
       lar-expression map.

## SECURITY
       The [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent is not security sensitive, provided that the lookup tables with
       recipient user/group ID information are adequately protected. This program is not designed to
       run chrooted.

       The [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent disallows regular expression substitution of $1 etc. in regular
       expression lookup tables, because that would open a security hole.

       The  [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown)  delivery  agent will silently ignore requests to use the [**proxymap**(8)](https://www.chedong.com/phpMan.php/man/proxymap/8/markdown) server.
       Instead it will open the table directly. Before Postfix version  2.2,  the  virtual  delivery
       agent will terminate with a fatal error.

## STANDARDS
       RFC 822 (ARPA Internet Text Messages)

## DIAGNOSTICS
       Mail  bounces  when the recipient has no mailbox or when the recipient is over disk quota. In
       all other cases, mail for an existing recipient is deferred and a warning is logged.

       Problems and transactions are logged to [**syslogd**(8)](https://www.chedong.com/phpMan.php/man/syslogd/8/markdown) or [**postlogd**(8)](https://www.chedong.com/phpMan.php/man/postlogd/8/markdown).  Corrupted  message  files
       are marked so that the queue manager can move them to the **corrupt** queue afterwards.

       Depending  on  the  setting  of  the  **notify**___**classes** parameter, the postmaster is notified of
       bounces and of other trouble.

## BUGS
       This delivery agent supports address extensions in email addresses and in lookup table  keys,
       but does not propagate address extension information to the result of table lookup.

       Postfix  should  have  lookup  tables that can return multiple result attributes. In order to
       avoid the inconvenience of maintaining three tables, use an LDAP or MYSQL database.

## CONFIGURATION PARAMETERS
       Changes to **main.cf** are picked up automatically, as [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) processes run for only  a  lim‐
       ited amount of time. Use the command "**postfix** **reload**" to speed up a change.

       The  text below provides only a parameter summary. See [**postconf**(5)](https://www.chedong.com/phpMan.php/man/postconf/5/markdown) for more details including
       examples.

## MAILBOX DELIVERY CONTROLS
       **virtual**___**mailbox**___**base** **(empty)**
              A prefix that the [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent prepends  to  all  pathname  results  from
              $virtual_mailbox_maps table lookups.

       **virtual**___**mailbox**___**maps** **(empty)**
              Optional  lookup  tables  with  all  valid  addresses  in the domains that match $vir‐
              tual_mailbox_domains.

       **virtual**___**minimum**___**uid** **(100)**
              The minimum user ID value that the [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent accepts as a result  from
              $virtual_uid_maps table lookup.

       **virtual**___**uid**___**maps** **(empty)**
              Lookup  tables  with the per-recipient user ID that the [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent uses
              while writing to the recipient's mailbox.

       **virtual**___**gid**___**maps** **(empty)**
              Lookup tables with the per-recipient group ID for [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) mailbox delivery.

       Available in Postfix version 2.0 and later:

       **virtual**___**mailbox**___**domains** **($virtual**___**mailbox**___**maps)**
              Postfix is final destination for the specified list of domains; mail is delivered  via
              the $virtual_transport mail delivery transport.

       **virtual**___**transport** **(virtual)**
              The default mail delivery transport and next-hop destination for final delivery to do‐
              mains listed with $virtual_mailbox_domains.

       Available in Postfix version 2.5.3 and later:

       **strict**___**mailbox**___**ownership** **(yes)**
              Defer delivery when a mailbox file is not owned by its recipient.

## LOCKING CONTROLS
       **virtual**___**mailbox**___**lock** **(see** **'postconf** **-d'** **output)**
              How to lock a UNIX-style [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) mailbox before attempting delivery.

       **deliver**___**lock**___**attempts** **(20)**
              The maximal number of attempts to acquire an exclusive  lock  on  a  mailbox  file  or
              [**bounce**(8)](https://www.chedong.com/phpMan.php/man/bounce/8/markdown) logfile.

       **deliver**___**lock**___**delay** **(1s)**
              The  time between attempts to acquire an exclusive lock on a mailbox file or [**bounce**(8)](https://www.chedong.com/phpMan.php/man/bounce/8/markdown)
              logfile.

       **stale**___**lock**___**time** **(500s)**
              The time after which a stale exclusive mailbox lockfile is removed.

## RESOURCE AND RATE CONTROLS
       **virtual**___**mailbox**___**limit** **(51200000)**
              The maximal size in bytes of an individual [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) mailbox or maildir file, or zero
              (no limit).

       Implemented in the [qmgr(8)](https://www.chedong.com/phpMan.php/man/qmgr/8/markdown) daemon:

       **virtual**___**destination**___**concurrency**___**limit** **($default**___**destination**___**concurrency**___**limit)**
              The maximal number of parallel deliveries to the same destination via the virtual mes‐
              sage delivery transport.

       **virtual**___**destination**___**recipient**___**limit** **($default**___**destination**___**recipient**___**limit)**
              The maximal number of recipients per message for the virtual message  delivery  trans‐
              port.

## MISCELLANEOUS CONTROLS
       **config**___**directory** **(see** **'postconf** **-d'** **output)**
              The default location of the Postfix main.cf and master.cf configuration files.

       **daemon**___**timeout** **(18000s)**
              How  much time a Postfix daemon process may take to handle a request before it is ter‐
              minated by a built-in watchdog timer.

       **delay**___**logging**___**resolution**___**limit** **(2)**
              The maximal number of digits after the decimal point  when  logging  sub-second  delay
              values.

       **ipc**___**timeout** **(3600s)**
              The  time  limit  for  sending or receiving information over an internal communication
              channel.

       **max**___**idle** **(100s)**
              The maximum amount of time that an idle Postfix daemon process waits for  an  incoming
              connection before terminating voluntarily.

       **max**___**use** **(100)**
              The  maximal number of incoming connections that a Postfix daemon process will service
              before terminating voluntarily.

       **process**___**id** **(read-only)**
              The process ID of a Postfix command or daemon process.

       **process**___**name** **(read-only)**
              The process name of a Postfix command or daemon process.

       **queue**___**directory** **(see** **'postconf** **-d'** **output)**
              The location of the Postfix top-level queue directory.

       **syslog**___**facility** **(mail)**
              The syslog facility of Postfix logging.

       **syslog**___**name** **(see** **'postconf** **-d'** **output)**
              A prefix that is prepended to the process name in syslog records, so that,  for  exam‐
              ple, "smtpd" becomes "prefix/smtpd".

       Available in Postfix version 3.0 and later:

       **virtual**___**delivery**___**status**___**filter** **($default**___**delivery**___**status**___**filter)**
              Optional  filter  for the [**virtual**(8)](https://www.chedong.com/phpMan.php/man/virtual/8/markdown) delivery agent to change the delivery status code
              or explanatory text of successful or unsuccessful deliveries.

       Available in Postfix version 3.3 and later:

       **enable**___**original**___**recipient** **(yes)**
              Enable support for the original recipient address after an address is rewritten  to  a
              different address (for example with aliasing or with canonical mapping).

       **service**___**name** **(read-only)**
              The master.cf service name of a Postfix daemon process.

       Available in Postfix 3.5 and later:

       **info**___**log**___**address**___**format** **(external)**
              The email address form that will be used in non-debug logging (info, warning, etc.).

## SEE ALSO
       [qmgr(8)](https://www.chedong.com/phpMan.php/man/qmgr/8/markdown), queue manager
       [bounce(8)](https://www.chedong.com/phpMan.php/man/bounce/8/markdown), delivery status reports
       [postconf(5)](https://www.chedong.com/phpMan.php/man/postconf/5/markdown), configuration parameters
       [postlogd(8)](https://www.chedong.com/phpMan.php/man/postlogd/8/markdown), Postfix logging
       [syslogd(8)](https://www.chedong.com/phpMan.php/man/syslogd/8/markdown), system logging

## READMEFILES
       Use "**postconf** **readme**___**directory**" or
       "**postconf** **html**___**directory**" to locate this information.
       VIRTUAL_README, domain hosting howto

## LICENSE
       The Secure Mailer license must be distributed with this software.

## HISTORY
       This  delivery  agent was originally based on the Postfix local delivery agent. Modifications
       mainly consisted of removing code that either was not applicable or that was not safe in this
       context: aliases, ~user/.forward files, delivery to "|command" or to /file/name.

       The **Delivered-To:** message header appears in the **qmail** system by Daniel Bernstein.

       The **maildir** structure appears in the **qmail** system by Daniel Bernstein.

**AUTHOR(S)**
       Wietse Venema
       IBM T.J. Watson Research
       P.O. Box 704
       Yorktown Heights, NY 10598, USA

       Wietse Venema
       Google, Inc.
       111 8th Avenue
       New York, NY 10011, USA

       Andrew McNamara
       <andrewm@connect.com.au>
       connect.com.au Pty. Ltd.
       Level 3, 213 Miller St
       North Sydney 2060, NSW, Australia



                                                                                   [VIRTUAL(8postfix)](https://www.chedong.com/phpMan.php/man/VIRTUAL/8postfix/markdown)
