| Server IP : 81.2.241.106 / Your IP : 216.73.216.165 Web Server : Apache/2.4.67 (Debian) System : Linux tranq-f.bakta.org 5.10.0-45-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64 User : lisky ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/xfer/from_smeagol/etc/postfix/ |
Upload File : |
# # VIRTUAL(5) VIRTUAL(5) # # NAME # virtual - format of Postfix virtual table # # SYNOPSIS # postmap /etc/postfix/virtual # # DESCRIPTION # The optional virtual table specifies address redirections # for local and non-local recipients or domains. The redi- # rections are used by the cleanup(8) daemon. The redirec- # tions are recursive. # # The virtual redirection is applied only to recipient enve- # lope addresses, and does not affect message headers. # Think Sendmail rule set S0, if you like. Use canonical(5) # mapping to rewrite header and envelope addresses in gen- # eral. # # Normally, the virtual table is specified as a text file # that serves as input to the postmap(1) command. The # result, an indexed file in dbm or db format, is used for # fast searching by the mail system. Execute the command # postmap /etc/postfix/virtual in order to rebuild the # indexed file after changing the text file. # # 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, the table can be provided as a regular- # expression map where patterns are given as regular expres- # sions. In that case, the lookups are done in a slightly # different way as described below. # # POSTFIX-STYLE VIRTUAL DOMAINS # With a Postfix-style virtual domain, the virtual domain # has its own user name space. Local (i.e. non-virtual) # usernames are not visible in a Postfix-style virtual # domain. In particular, local aliases(5) and mailing lists # are not visible as localname@virtual.domain. # # Use a Sendmail-style virtual domain (see below) if local # usernames, aliases(5) or mailing lists should be visible # as localname@virtual.domain. # # Support for a Postfix-style virtual domain looks like: # # /etc/postfix/virtual: # virtual.domain anything (right-hand content does not matter) # postmaster@virtual.domain postmaster # user1@virtual.domain address1 # user2@virtual.domain address2, address3 # # The virtual.domain anything entry is required for a Post- # fix-style virtual domain. # # Do not list a Postfix-style virtual domain in the main.cf # mydestination configuration parameter. Such an entry is # required only for a Sendmail-style virtual domain. # # With a Postfix-style virtual domain, the Postfix SMTP # server accepts mail for known-user@virtual.domain and # rejects mail for unknown-user@virtual.domain as undeliver- # able. # # SENDMAIL-STYLE VIRTUAL DOMAINS # With a Sendmail-style virtual domain, every local (i.e. # non-virtual) username is visible in the virtual domain. In # particular, every local alias and mailing list is visible # as localname@virtual.domain. # # Use a Postfix-style virtual domain (see above) if local # usernames, aliases(5) or mailing lists should not be visi- # ble as localname@virtual.domain. # # Support for a Sendmail-style virtual domain looks like: # # /etc/postfix/main.cf: # mydestination = $myhostname localhost.$mydomain $mydomain # virtual.domain # # /etc/postfix/virtual: # user1@virtual.domain address1 # user2@virtual.domain address2, address3 # # The main.cf mydestination entry is required for a Send- # mail-style virtual domain. # # Do not specify a virtual.domain anything virtual map entry # for a Sendmail-style virtual domain. Such an entry is # required only with a Postfix-style virtual domain. # # With a Sendmail-style virtual domain, the Postfix local # delivery agent delivers mail for an unknown user@vir- # tual.domain to a local (i.e. non-virtual) user that has # the same name; if no such recipient exists, the Postfix # local delivery agent bounces the mail to the sender. # # TABLE FORMAT # The format of the virtual table is as follows, mappings # being tried in the order as listed in this manual page: # # pattern result # When pattern matches a mail address, replace it by # the corresponding result. # # blank lines and comments # Empty lines and whitespace-only lines are ignored, # as are lines whose first non-whitespace character # is a `#'. # # multi-line text # A logical line starts with non-whitespace text. A # line that starts with whitespace continues a logi- # cal line. # # With lookups from indexed files such as DB or DBM, or from # networked tables such as NIS, LDAP or SQL, patterns are # tried in the order as listed below: # # user@domain address, address, ... # Mail for user@domain is redirected to address. # This form has the highest precedence. # # user address, address, ... # Mail for user@site is redirected to address when # site is equal to $myorigin, when site is listed in # $mydestination, or when it is listed in # $inet_interfaces. # # This functionality overlaps with functionality of # the local alias(5) database. The difference is that # virtual mapping can be applied to non-local # addresses. # # @domain address, address, ... # Mail for any user in domain is redirected to # address. This form has the lowest precedence. # # In all the above forms, when address has the form @other- # domain, the result is the same user in otherdomain. This # works for the first address in the expansion only. # # ADDRESS EXTENSION # When a mail address localpart contains the optional recip- # ient delimiter (e.g., user+foo@domain), the lookup order # becomes: user+foo@domain, user@domain, user+foo, user, and # @domain. An unmatched address extension (+foo) is propa- # gated to the result of table lookup. # # REGULAR EXPRESSION TABLES # This section describes how the table lookups change when # the table is given in the form of regular expressions. For # a description of regular expression lookup table syntax, # see regexp_table(5) or pcre_table(5). # # Each pattern is a regular expression that is applied to # the entire address being looked up. Thus, user@domain mail # addresses are not broken up into their user and @domain # constituent parts, nor is user+foo broken up into user and # foo. # # Patterns are applied in the order as specified in the # table, until a pattern is found that matches the search # string. # # Results are the same as with indexed file lookups, with # the additional feature that parenthesized substrings from # the pattern can be interpolated as $1, $2 and so on. # # BUGS # The table format does not understand quoting conventions. # # CONFIGURATION PARAMETERS # The following main.cf parameters are especially relevant # to this topic. See the Postfix main.cf file for syntax # details and for default values. Use the postfix reload # command after a configuration change. # # virtual_maps # List of virtual mapping tables. # # Other parameters of interest: # # inet_interfaces # The network interface addresses that this system # receives mail on. # # mydestination # List of domains that this mail system considers # local. # # myorigin # The domain that is appended to locally-posted mail. # # owner_request_special # Give special treatment to owner-xxx and xxx-request # addresses. # # SEE ALSO # cleanup(8) canonicalize and enqueue mail # postmap(1) create mapping table # pcre_table(5) format of PCRE tables # regexp_table(5) format of POSIX regular expression tables # # LICENSE # The Secure Mailer license must be distributed with this # software. # # AUTHOR(S) # Wietse Venema # IBM T.J. Watson Research # P.O. Box 704 # Yorktown Heights, NY 10598, USA # # 1 # #tonybennett.cz tb #obchod@tonybennett.cz tb0001 #info@tonybennett.cz tb0001 #obchod@tonybennett.cz tb-obchod #info@tonybennett.cz tb-info #ucto@tonybennett.cz tb0001 #objednavky@tonybennett.cz tb0002 #tony.bennett@tonybennett.cz tb0003 #tonybennett@tonybennett.cz tb0003 #romana.bennett@tonybennett.cz rbennett@seznam.cz #romana.bennett@tonybennett.cz tb0004 #milan.dolezel@tonybennett.cz tb0005 #martina.perinova@tonybennett.cz tb0006 #hana.varhulikova@tonybennett.cz tb0008 #miluse.polakova@tonybennett.cz tb0009 #miroslava.librova@tonybennett.cz tb0010 #marek.curilla@tonybennett.cz tb0012 #jana.civinova@tonybennett.cz tb0013 #@tonybennett.cz tb0010 eurorentia.cz er bakta@eurorentia.cz bakta #euro@eurorentia.cz er-euro #p.saska@eurorentia.cz er-saska @eurorentia.cz petr.saska@gmail.com rekal.cz rk bakta@rekal.cz bakta stejskal@rekal.cz rk0001 holota@rekal.cz rk0002 info@rekal.cz rk0003 sprava@rekal.cz rk0004 rekalsro@rekal.cz rk0005 dita@rekal.cz rk0006 petr@rekal.cz rk0007 mirka@rekal.cz rk0008 roman@rekal.cz rk0009 anna@rekal.cz rk0010 petra@rekal.cz rk0011 monika@rekal.cz rk0012 zuzana@rekal.cz rk0012 hanka@rekal.cz rk0013 q-m.cz qm michal@q-m.cz qm0001 peprny@q-m.cz qm0002 uberall@q-m.cz qm0003 mikova@q-m.cz qm0004 lument.cz lum info@lument.cz lum0001 @lument.cz lum0001 bustehrad.cz bh bkzbu@bustehrad.cz bh0001 zdenek@bustehrad.cz bh0002 muzeum@bustehrad.cz bh0003 sylva@bustehrad.cz bh0004 ivona@bustehrad.cz bh0005 infoline@bustehrad.cz bh0006 pavelhrubes.cz ph info@pavelhrubes.cz ph0001 objednavka@pavelhrubes.cz ph0002 pavelhrubes@pavelhrubes.cz ph0003 #aktermer.cz akt #katerina.termerova@aktermer.cz akt0001 #k.termerova@aktermer.cz akt0002 #david.termer@aktermer.cz akt0003 #d.termer@aktermer.cz akt0004 #notebook@aktermer.cz akt0005 ariset.cz ari kust@ariset.cz ari0001 info@ariset.cz k.mara@volny.cz bakta.org bakta bakta@bakta.org bakta radek.stastny@bakta.org bakta perl@bakta.org bakta msdn@bakta.org bakta steam@bakta.org bakta stastny@bakta.org bakta #dod@bakta.org bakta #dods@bakta.org bakta qsuc@bakta.org bakta mono@bakta.org bakta mail@bakta.org bakta webmaster@bakta.org bakta domeny@bakta.org bakta vlasak@bakta.org pvlach@seznam.cz #@bakta.org bakta rozvaha.com roz rozvaha@rozvaha.com roz0001 @rozvaha.com roz0001 #eurocar-ec.com ec #@eurocar-ec.com bohnice@autocentrum-bohnice.cz poppyseedgrinder.cz pop info@poppyseedgrinder.cz pop0001 support@poppyseedgrinder.cz pop0002 yarda@poppyseedgrinder.cz pop0003 macabre@poppyseedgrinder.cz pop0004 ondrej@poppyseedgrinder.cz pop0004 jirka@poppyseedgrinder.cz pop0005 ota@poppyseedgrinder.cz pop0006 cifron@poppyseedgrinder.cz pop0007 lerros.cz ler lerros@lerros.cz ler0001 Simona.Javorska@lerros.cz Javorska.Simona@seznam.cz @lerros.cz ler0001 resi-as.cz ras @resi-as.cz peprny@q-m.cz faravreskovice.cz fvr @faravreskovice.cz mencl@jurista.cz fly-graphics.cz fly info@fly-graphics.cz fly0001 vlasak@fly-graphics.cz fly0002 obchod@fly-graphics.cz fly0003 # poznamka: puvodni schanka tappa@tappa.cz kompletne presmerovana na tap0002 (katka) #tappa.cz tap #tappa@tappa.cz tap0002 #katka@tappa.cz tap0002 nka.cz nka h@nka.cz hannnah novotny@nka.cz ci5 ak-kucera.cz akk info@ak-kucera.cz akk0001, akk0002, akk0003 kancelar@ak-kucera.cz akk0001, akk0002, akk0003 office@ak-kucera.cz akk0001, akk0002, akk0003, akk0004, akk0005, akk0007 veronika@ak-kucera.cz akk0001 veronika.psenicova@ak-kucera.cz akk0001 psenicova@ak-kucera.cz akk0001 v.psenicova@ak-kucera.cz akk0001 kucera@ak-kucera.cz akk0002 vondrackova@ak-kucera.cz akk0002 stepankova@ak-kucera.cz akk0004 bustova@ak-kucera.cz akk0005 #cellar@ak-kucera.cz akk0006 belovsky@ak-kucera.cz akk0007 @ak-kucera.cz akk0002 #akk0004 je rezerva kucera-ak.cz akk info@kucera-ak.cz akk0001, akk0002, akk0003 kancelar@kucera-ak.cz akk0001, akk0002, akk0003 office@kucera-ak.cz akk0001, akk0002, akk0003, akk0004, akk0005, akk0007 veronika@kucera-ak.cz akk0001 veronika.psenicova@kucera-ak.cz akk0001 psenicova@kucera-ak.cz akk0001 v.psenicova@kucera-ak.cz akk0001 kucera@kucera-ak.cz akk0002 vondrackova@kucera-ak.cz akk0002 stepankova@kucera-ak.cz akk0004 bustova@kucera-ak.cz akk0005 #cellar@kucera-ak.cz akk0006 @kucera-ak.cz akk0002 belovsky@kucera-ak.cz akk0007 #lokalblok.cz lkb #lucie@lokalblok.cz lkb0001 #stena@lokalblok.cz lkb0003 #@lokalblok.cz lkb0002 #@lokalblok.cz lkb0001 prohockey.cz pho @prohockey.cz petr.novotny@egmont.cz eurozeta.ch erz office@eurozeta.ch erz0002 @eurozeta.ch erz0001 #@eurozeta.ch pet.kmet@quick.cz dbtoolsplus.com Dbt info@dbtoolsplus.com dbt0001 novotny@dbtoolsplus.com dbt0002 kockovska.cz koc petr.novotny@kockovska.cz koc0001 alena.novotna@kockovska.cz koc0002 spamfighter.cz spm spamfighter@spamfighter.cz spm0001 @spamfighter.cz spm0001 dayofdefeat.cz dod yeseter@dayofdefeat.cz yeseter@centrum.cz sachtovi.cz sac charlota@sachtovi.cz sac0001 charlotta@sachtovi.cz sac0001 josef@sachtovi.cz sac0002 jana@sachtovi.cz sac0003 matyas@sachtovi.cz sac0004 benedikt@sachtovi.cz sac0005 ukoruny.cz uko suchy@ukoruny.cz uko0001 restaurace@ukoruny.cz uko0002 stavbyroubal.cz str info@stavbyroubal.cz str0001 martin.roubal@stavbyroubal.cz str0002 katka@stavbyroubal.cz str0003 kancelar@stavbyroubal.cz str0004 blazkova@stavbyroubal.cz str0005 fiserova@stavbyroubal.cz str0006 viskova@stavbyroubal.cz str0007 zengaya.cz zen macabre@zengaya.cz zen0001 e-demokracie.cz ede fraitag@e-demokracie.cz ede0001 mikula@e-demokracie.cz ede0002 vlach@e-demokracie.cz ede0003 vups.cz vup @vups.cz vup0001 pokercz.cz pok poker@pokercz.cz pok0001 @pokercz.cz pok0001 kapkanadeje.cz kap @kapkanadeje.cz kap0001 michalovi.eu michal david@michalovi.eu michal0001 petr@michalovi.eu michal0002 pavel@michalovi.eu michal0003 dagmar@michalovi.eu michal0004 ondrej@michalovi.eu michal0005 simon@michalovi.eu michal0006 zuzana@michalovi.eu michal0007 arenaoperations.cz are info@arenaoperations.cz are0001, rafael.karpisek@keytravel.cz, bena@leonardovbc.com bena@arenaoperations.cz are0002, bena@leonardovbc.com karpisek@arenaoperations.cz are0002, rafael.karpisek@keytravel.cz maly@arenaoperations.cz are0004 kovplsek.cz kov @kovplsek.cz kov0001 veseleknihy.cz ves @veseleknihy.cz ves, jevrej.dv@gmail.com atelierkpp.cz akp cvjen@atelierkpp.cz akp0001 david@atelierkpp.cz akp0002 szotkowski@atelierkpp.cz akp0003 hunkesova@atelierkpp.cz akp0004 roupec@atelierkpp.cz akp0005 frantisek@atelierkpp.cz akp0006 iva@atelierkpp.cz akp0007 knappova@atelierkpp.cz akp0008 pavlina@atelierkpp.cz akp0009 machackova@atelierkpp.cz akp0010 alseda.cz als tulenko@alseda.cz als0001, tulenko@atlas.cz sadkova@alseda.cz als0002 kolomy@alseda.cz als0003 michal@alseda.cz als0004 info@alseda.cz alseda@jurista.cz lichtneger@alseda.cz als0005 budka@alseda.cz als0006 huterova@alseda.cz als0007 jiri.budka@alseda.cz jiri.budka@kthmedical.cz garruc.cz gar @garruc.cz gar0001 benesovska18.com ben @benesovska18.com ben0001 #lowlands.cz low #iveta.sebestianova@lowlands.cz low0001 #jitka.danyiova@lowlands.cz low0002 #eva.prusova@lowlands.cz low0003 #jana.zuckova@lowlands.cz low0004 #lowlands@lowlands.cz low0005 #hamaclub@lowlands.cz low0005 #hans.joosten@lowlands.cz low0006 #bernard@lowlands.cz low0007 alsedadata.cz ald lichtneger@alsedadata.cz ald0002, pevny@volny.cz, jan@lichtneger.com, lichtneger@alseda.cz info@alsedadata.cz chytre@jurista.cz, pevny@volny.cz, jan@lichtneger.com, lichtneger@alseda.cz linda@alsedadata.cz ald0003 tulenko@alsedadata.cz als0001, tulenko@atlas.cz @alsedadata.cz ald0001 klymene.at kly info@klymene.at chytre@jurista.cz krmivo-kitekat.cz ktk kitekat@krmivo-kitekat.cz ktk0001 norematrade.cz nor @norematrade.cz chytre@jurista.cz info@norematrade.cz chytre@jurista.cz