1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Use /usr/sbin/sendmail as default mailer on OpenBSD.

This commit is contained in:
Pascal Stumpf 2012-11-19 00:26:54 +01:00 committed by Jon Trulson
parent 6ecf213b63
commit 5b9d3fc5ec

View file

@ -740,6 +740,8 @@ RFCTransport::launchSendmail(DtMailEnv & error,
if (error.isSet()) {
#if defined(USL) || defined(__uxp__)
mailer = "/usr/ucblib/sendmail";
#elif defined(__OpenBSD__)
mailer = "/usr/sbin/sendmail";
#else
mailer = "/usr/lib/sendmail";
#endif