Eu queria configurar o ProFTPD no Ubuntu 16.04 Eu instalei o pacote proftpd-basic (o único que eu encontrei nos repositórios):
$ dpkg --get-selections | grep proftpd
proftpd-basic install
Mas este pacote aparentemente não tem nenhum módulo TLS compilado em:
$ proftpd -l
Compiled-in modules:
mod_core.c
mod_xfer.c
mod_rlimit.c
mod_auth_unix.c
mod_auth_file.c
mod_auth.c
mod_ls.c
mod_log.c
mod_site.c
mod_delay.c
mod_facts.c
mod_dso.c
mod_ident.c
mod_auth_pam.c
mod_readme.c
mod_memcache.c
mod_cap.c
mod_ctrls.c
mod_lang.c
$ proftpd -l | grep tls
$
Não consigo encontrar nenhum pacote para o módulo tls nos repositórios:
$ apt-cache search proftpd-mod
proftpd-basic - Versatile, virtual-hosting FTP daemon - binaries
proftpd-mod-autohost - ProFTPD module mod_autohost
proftpd-mod-case - ProFTPD module mod_case
proftpd-mod-clamav - ProFTPD module mod_clamav
proftpd-mod-dnsbl - ProFTPD module mod_dnsbl
proftpd-mod-fsync - ProFTPD module mod_fsync
proftpd-mod-geoip - Versatile, virtual-hosting FTP daemon - GeoIP module
proftpd-mod-ldap - Versatile, virtual-hosting FTP daemon - LDAP module
proftpd-mod-msg - ProFTPD module mod_msg
proftpd-mod-mysql - Versatile, virtual-hosting FTP daemon - MySQL module
proftpd-mod-odbc - Versatile, virtual-hosting FTP daemon - ODBC module
proftpd-mod-pgsql - Versatile, virtual-hosting FTP daemon - PostgreSQL module
proftpd-mod-sqlite - Versatile, virtual-hosting FTP daemon - SQLite3 module
proftpd-mod-tar - ProFTPD module mod_tar
proftpd-mod-vroot - ProFTPD module mod_vroot
Preciso compilar o proftpd a partir da fonte com o switch do módulo tls ou existe alguma maneira mais rápida de ativar o TLS?