Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
I
ISPConfig 3
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 494
    • Issues 494
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 28
    • Merge Requests 28
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • ISPConfig
  • ISPConfig 3
  • Issues
  • #6019

Closed
Open
Opened Jan 15, 2021 by KoS@kos

postfix.conf - put the options line-by-line instead of one single line

Instead of having a single line per option in postfix.conf, it would make it better readable if the arguments are line by line, e.g.: instead of

smtpd_helo_restrictions = reject_invalid_helo_hostname, permit_mynetworks, check_helo_access regexp:{config_dir}/helo_access, permit_sasl_authenticated, reject_non_fqdn_helo_hostname, check_helo_access regexp:{config_dir}/blacklist_helo, {reject_unknown_helo_hostname}, permit

make it

smtpd_helo_restrictions = reject_invalid_helo_hostname, 
  permit_mynetworks, 
  check_helo_access regexp:{config_dir}/helo_access, 
  permit_sasl_authenticated, 
  reject_non_fqdn_helo_hostname, 
  check_helo_access regexp:{config_dir}/blacklist_helo, 
  {reject_unknown_helo_hostname}, 
  permit

https://git.ispconfig.org/ispconfig/ispconfig3/-/blob/develop/install/tpl/debian_postfix.conf.master#L29

This would make it also better comparable after an upgrade of ISPconfig and/or the server. (e.g. for the users with etckeeper to keep track of any configuration changes).

Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking
None
Due date
None
Reference: ispconfig/ispconfig3#6019