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.

postsrs.conf 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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=MAIL_DOMAIN
  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. # First separator character after SRS0 or SRS1.
  14. # Can be one of: -+=
  15. SRS_SEPARATOR==
  16. # Secret key to sign rewritten addresses.
  17. # When postsrsd is installed for the first time, a random secret is generated
  18. # and stored in /etc/postsrsd.secret. For most installations, that's just fine.
  19. #
  20. SRS_SECRET=/etc/postsrsd.secret
  21. # Local ports for TCP list.
  22. # These ports are used to bind the TCP list for postfix. If you change
  23. # these, you have to modify the postfix settings accordingly. The ports
  24. # are bound to the loopback interface, and should never be exposed on
  25. # the internet.
  26. #
  27. SRS_FORWARD_PORT=10001
  28. SRS_REVERSE_PORT=10002
  29. # Drop root privileges and run as another user after initialization.
  30. # This is highly recommended as postsrsd handles untrusted input.
  31. #
  32. RUN_AS=nobody
  33. # Jail daemon in chroot environment
  34. CHROOT=/usr/local/lib/postsrsd