File: mta

package info (click to toggle)
base-config 2.53.10.3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,072 kB
  • ctags: 36
  • sloc: sh: 1,755; makefile: 101; perl: 48
file content (10 lines) | stat: -rwxr-xr-x 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e
# exim4 is the default MTA.
# However, it's possible that it was not installed, as we can also function
# with no MTA. Or the user may have already installed a different MTA.
# See the menutest in the .mnu file.
if [ "$1" = new ]; then
	exec dpkg-reconfigure --unseen-only --default-priority exim4-config
else
	exec dpkg-reconfigure --default-priority exim4-config
fi