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.in 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. # 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=@SYSCONF_DIR@/@PROJECT_NAME@.secret
  21. # Length of hash to be used in rewritten addresses
  22. SRS_HASHLENGTH=4
  23. # Minimum length of hash to accept when validating return addresses
  24. SRS_HASHMIN=4
  25. # Local ports for TCP list.
  26. # These ports are used to bind the TCP list for postfix. If you change
  27. # these, you have to modify the postfix settings accordingly. The ports
  28. # are bound to the loopback interface, and should never be exposed on
  29. # the internet.
  30. #
  31. SRS_FORWARD_PORT=10001
  32. SRS_REVERSE_PORT=10002
  33. # Drop root privileges and run as another user after initialization.
  34. # This is highly recommended as postsrsd handles untrusted input.
  35. #
  36. RUN_AS=nobody
  37. # Jail daemon in chroot environment
  38. CHROOT=@CHROOT_DIR@