I have Nginx setup for dynamic hosts (similar to Apache mass vhosts) and this is causing an issue with Postfix.
This is causing an issue for the server sending emails - Message-ID with no domain name.
In my server block I have server_name ~(?<domain>.+)$;
When Postfix sends an email, the message ID doesn’t show a FQDN, it shows @~(?<domain>.+)$, the same regex used for my server_name.
Does anyone know how to get Nginx/Postfix to play nicely together? The only thing I can think of is that Nginx isn’t passing the server_name properly.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This comment has been deleted
Hi,
I believe Postfix is using the hostname that is passed to it by PHP. By default, the fastcgi_params file contains the following line:
fastcgi_param SERVER_NAME $server_name;
Adding the following line in your nginx config above include fastcgi_params; should set the $_SERVER['SERVER_NAME'] PHP variable to the actual domain name:
fastcgi_param SERVER_NAME $host;
Don’t forget to restart Nginx so that the changes take effect:
sudo service nginx restart
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.