summaryrefslogtreecommitdiffstats
path: root/rules/msmtp.in
blob: 8c5a801dfd448448821798b8fd6587d58abb0727 (plain)
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
27
28
29
30
31
32
33
34
35
36
## SECTION=networking

menuconfig MSMTP
	tristate
	select OPENSSL	if MSMTP_OPENSSL
	select GNUTLS	if MSMTP_GNUTLS
	prompt "msmtp                         "
	help
	  light SMTP client with support for server profiles

if MSMTP

choice
	prompt "SSL Support"

config MSMTP_NOSSL
	bool
	prompt "none"

config MSMTP_OPENSSL
	bool
	prompt "OpenSSL"

config MSMTP_GNUTLS
	bool
	prompt "GnuTLS"

endchoice

config MSMTP_SSL
	string
	default "no"		if MSMTP_NOSSL
	default "openssl"	if MSMTP_OPENSSL
	default "gnutls"	if MSMTP_GNUTLS

endif