You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

postsrsd.default 1.2KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Default settings for postsrsd
  2. # Local domain name.
  3. # Addresses are rewritten to originate from this domain. The default value
  4. # is taken from `postconf -h mydomain` and probably okay.
  5. #
  6. #SRS_DOMAIN=example.com
  7. # Exclude additional domains.
  8. # You may list domains which shall not be subjected to address rewriting.
  9. # If a domain name starts with a dot, it matches all subdomains, but not
  10. # the domain itself. Separate multiple domains by space or comma.
  11. #
  12. #SRS_EXCLUDE_DOMAINS=.example.com,example.org
  13. # Secret key to sign rewritten addresses.
  14. # When postsrsd is installed for the first time, a random secret is generated
  15. # and stored in /etc/postsrsd.secret. For most installations, that's just fine.
  16. #
  17. #SRS_SECRET=/etc/postsrsd.secret
  18. # Local ports for TCP list.
  19. # These ports are used to bind the TCP list for postfix. If you change
  20. # these, you have to modify the postfix settings accordingly. The ports
  21. # are bound to the loopback interface, and should never be exposed on
  22. # the internet.
  23. #
  24. #SRS_FORWARD_PORT=10001
  25. #SRS_REVERSE_PORT=10002
  26. # Drop root privileges and run as another user after initialization.
  27. # This is highly recommended as postsrsd handles untrusted input.
  28. #
  29. RUN_AS=nobody