Advertisement
Guest User

SigningTable

a guest
May 11th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. # OPENDKIM SIGNING TABLE
  2. # This table controls how to apply one or more signatures to outgoing messages based
  3. # on the address found in the From: header field. In simple terms, this tells
  4. # OpenDKIM "how" to apply your keys.
  5.  
  6. # To use this file, uncomment the SigningTable option in /etc/opendkim.conf,
  7. # then uncomment one of the usage examples below and replace example.com with your
  8. # domain name, then restart OpenDKIM.
  9.  
  10. # WILDCARD EXAMPLE
  11. # Enables signing for any address on the listed domain(s), but will work only if
  12. # "refile:/etc/opendkim/SigningTable" is included in /etc/opendkim.conf.
  13. # Create additional lines for additional domains.
  14.  
  15. #*@example.com default._domainkey.example.com
  16.  
  17. # NON-WILDCARD EXAMPLE
  18. # If "file:" (instead of "refile:") is specified in /etc/opendkim.conf, then
  19. # wildcards will not work. Instead, full user@host is checked first, then simply host,
  20. # then user@.domain (with all superdomains checked in sequence, so "foo.example.com"
  21. # would first check "user@foo.example.com", then "user@.example.com", then "user@.com"),
  22. # then .domain, then user@*, and finally *. See the opendkim.conf(5) man page under
  23. # "SigningTable" for more details.
  24.  
  25. #example.com default._domainkey.example.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement