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

Installing a pre-built Postfix package

  • To unpack a pre-built Postfix package, execute the equivalent of:

    # umask 022
    # gzip -d <outputfile.tar.gz | (cd / ; tar xvpf -) 

    The umask command is necessary for getting the correct permissions on non-Postfix directories that need to be created in the process.

  • Create the necessary mail_owner account and setgid_group group for exclusive use by Postfix.

  • Execute the postfix command to set ownership and permission of Postfix files and directories, and to update Postfix configuration files. If necessary, specify any non-default settings for mail_owner or setgid_group on the postfix command line:

    # postfix set-permissions upgrade-configuration \
           
    setgid_group=xxx 
    mail_owner=yyy
    

    With Postfix versions before 2.1 you achieve the same result by invoking the post-install script directly.

Postfix Documentation
Previous Page Home Next Page