File: sendmail.in

package info (click to toggle)
sendmail 8.13.8-3%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,204 kB
  • ctags: 138
  • sloc: sh: 8,118; perl: 4,184; makefile: 3,810; ansic: 186
file content (15 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Make sendmail aware of changes to resolv.conf
# so that we can reset the statistics for unresolvable hostnames

# Purge any latent host status that might cause us to *NOT* send mail
AM='-Am';
if [ ! -f @datadir@/sendmail/cf/feature/msp.m4 ]; then
	AM='';
	fi;
@sbindir@/sendmail $AM -bH -O Timeout.hoststatus=1s;

# Start/reload sendmail as needed
#@sysconfdir@/init.d/sendmail reload || true;