blob: 7136901a0336b194adfcb15f1655db733c3ab7de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Minimum defaults or important defaults...
#
# See the file /usr/local/share/doc/tkrat/CONFIGURATION for a more
# detailed explanation of these.
#
# Which domain we should pretend we are from
set option(masquerade_as) {}
# Which domain we are in
set option(domain) {}
# Should we sent even though we have a bad hostname?
set option(force_send) 0
# Command to get default folder
set option(default_folder) "INBOX file {} /var/mail/$env(USER)"
# Default sending program
set option(sendprog) /usr/sbin/sendmail
# Can the sending program handle eightbit data
set option(sendprog_8bit) true
# Use the sending program, or use smtp
set option(sendprot) prog
|