Browse Source

msmtp: changed to prefer openssl over gnutls because of entropy gathering issues

user/chris/test/early-mdev
Alejandro Mery 14 years ago
parent
commit
5f2377855d
  1. 8
      mail/msmtp/msmtp.conf

8
mail/msmtp/msmtp.conf

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../msmtp/msmtp.conf
# Copyright (C) 2010 The OpenSDE Project
# Copyright (C) 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
@ -12,10 +13,11 @@
# GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END ---
if pkginstalled gnutls; then
var_append confopt ' ' '--with-ssl=gnutls'
elif pkginstalled openssl; then
if pkginstalled openssl; then
var_append confopt ' ' '--with-ssl=openssl'
elif pkginstalled gnutls; then
# Fatal: no entropy gathering module detected
var_append confopt ' ' '--with-ssl=gnutls'
else
var_append confopt ' ' '--with-ssl=no'
fi

Loading…
Cancel
Save