Difference between revisions of "Postfix/aliasing"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
 
Line 1: Line 1:
 
===config files===
 
===config files===
 
* {{l/fn/abs|etc/aliases}}
 
* {{l/fn/abs|etc/aliases}}
 +
* {{l/fn/abs|etc/postfix/virtual}}
 
===user aliases===
 
===user aliases===
 
To set up aliases, either edit the file specified by the {{l/same|pfx=main.cf/|alias_maps}} setting in {{l/same|main.cf}} ([[etc/aliases|/etc/aliases]] by default) and then run [[newaliases]] (or <code>postalias {{arg|alias file}}</code>, e.g. <code>postalias /etc/aliases</code>) to update the database, or else use [[Webmin]] (Servers &rarr; Postfix Mail Server &rarr; "Mail Aliases" icon &rarr; "Create a new alias" link).
 
To set up aliases, either edit the file specified by the {{l/same|pfx=main.cf/|alias_maps}} setting in {{l/same|main.cf}} ([[etc/aliases|/etc/aliases]] by default) and then run [[newaliases]] (or <code>postalias {{arg|alias file}}</code>, e.g. <code>postalias /etc/aliases</code>) to update the database, or else use [[Webmin]] (Servers &rarr; Postfix Mail Server &rarr; "Mail Aliases" icon &rarr; "Create a new alias" link).

Latest revision as of 20:52, 9 August 2021

config files

user aliases

To set up aliases, either edit the file specified by the alias_maps setting in main.cf (/etc/aliases by default) and then run newaliases (or postalias <alias file>, e.g. postalias /etc/aliases) to update the database, or else use Webmin (Servers → Postfix Mail Server → "Mail Aliases" icon → "Create a new alias" link).

There is also a /etc/postfix/virtual file for aliases in virtual domains; it can be edited manually, but you need to run postmap /etc/postfix/virtual after modifying it.

virtual users

By default, virtual aliases seem to get looked up only when email comes from the outside; locally generated emails are "returned" as undeliverable with the error message "Diagnostic-Code: x-unix; user unknown"

The following change in main.cf solves that problem –

– but creates a new one, in that externally-sourced messages are now delivered twice (or four times if addressed directly to a virtual user instead of a virtual alias).

Someone who understands the internal structure of postfix could probably figure out what this means (and how to fix it), but I'm still working on it.

catch-all

To set up a catch-all address, edit main.cf and set the following parameters:

The syntax for <whereToSend> is explained here.

Examples:

  • luser_relay = $user@anotherdomain.org
    • forwards all email addressed to "invaliduser@firstdomain.org" to "invaliduser@anotherdomain.org"
  • luser_relay = youraccount@anotherdomain.org
    • forwards all email addressed to invalid users to "youraccount@anotherdomain.org".

This page mentions some other parameters but neglects the ones above.