summaryrefslogtreecommitdiffstats
path: root/rules/msmtp.in
blob: 8fc32fc6011797acb1422a09198a38c732e9adb8 (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
37
38
39
40
41
42
43
44
## SECTION=staging
## old section:
### 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

	  STAGING: remove in ptxdist-2021.05.0
	  Realy old version and download broken. Must be updated to a new
	  version. Project moved to https://marlam.de/msmtp/

if MSMTP

choice
	prompt "SSL Support"

config MSMTP_NOSSL
	bool
	prompt "none"

config MSMTP_OPENSSL
	bool
	# Fails to build with OpenSSL 1.1.x
	depends on BROKEN
	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