mirror of
https://github.com/darold/sendmailanalyzer.git
synced 2026-05-15 14:15:56 -06:00
16 lines
377 B
Text
16 lines
377 B
Text
#
|
|
# By default SendmailAnalyzer statistics are only accessible from localhost.
|
|
#
|
|
Alias /sareport /usr/share/sendmailanalyzer
|
|
|
|
<Directory /usr/share/sendmailanalyzer>
|
|
Options ExecCGI
|
|
AddHandler cgi-script .cgi
|
|
DirectoryIndex sa_report.cgi
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from 127.0.0.1
|
|
Allow from ::1
|
|
# Allow from .example.com
|
|
</Directory>
|
|
|