Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Postfix Documentation
Previous Page Home Next Page

Configuring local_recipient_maps in main.cf

The local_recipient_maps parameter specifies lookup tables with all names or addresses of local recipients. A recipient address is local when its domain matches $ mydestination, $ inet_interfaces or $ proxy_interfaces. If a local username or address is not listed in $ local_recipient_maps, then the Postfix SMTP server will reject the address with "User unknown in local recipient table".

The default setting, shown below, assumes that you use the default Postfix local(8) delivery agent for local delivery, where recipients are either UNIX accounts or local aliases:

/etc/postfix/main.cf:
    
local_recipient_maps = 
proxy:unix:passwd.byname $
alias_maps

To turn off unknown local recipient rejects by the SMTP server, specify:

/etc/postfix/main.cf:
    
local_recipient_maps =

That is, an empty value. With this setting, the Postfix SMTP server will not reject mail with "User unknown in local recipient table".

Postfix Documentation
Previous Page Home Next Page