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.
15 lines
386 B
15 lines
386 B
## |
|
## apache-sendmail.conf -- Apache configuration for mod_sendmail |
|
## |
|
|
|
LoadModule sendmail_module @l_prefix@/libexec/apache/mod_sendmail.so |
|
|
|
<Location /sendmail> |
|
Order deny,allow |
|
Deny from all |
|
Allow from 127.0.0.1 |
|
SetHandler sendmail |
|
SendmailName @l_prefix@/sbin/sendmail |
|
SendmailArguments -t -i |
|
</Location> |
|
|
|
|