[csw-buildfarm] [MAILER-DAEMON at login.bo.opencsw.org: Returned mail: see transcript for details]

Maciej Blizinski maciej at login.bo.opencsw.org
Wed Feb 29 11:16:47 CET 2012


I can't send email from login using sendmail.

Is this a known issue? Can we have a better way of sending emails?

----- Forwarded message from Mail Delivery Subsystem <MAILER-DAEMON at login.bo.opencsw.org> -----

Date: Fri, 24 Feb 2012 21:52:48 +0100 (CET)
From: Mail Delivery Subsystem <MAILER-DAEMON at login.bo.opencsw.org>
To: maciej at login.bo.opencsw.org
Subject: Returned mail: see transcript for details

The original message was received at Sun, 19 Feb 2012 21:47:58 +0100 (CET)
from maciej at localhost

   ----- The following addresses had permanent fatal errors -----
vlc-devel at videolan.org
    (expanded from: vlc-devel at videolan.org)
devel at lists.opencsw.org
    (expanded from: devel at lists.opencsw.org)
maciej at opencsw.org
    (expanded from: maciej at opencsw.org)

   ----- Transcript of session follows -----
maciej at opencsw.org,devel at lists.opencsw.org,vlc-devel at videolan.org... Deferred: Connection timed out with [127.0.0.1]
Message could not be delivered for 5 days
Message will be deleted from queue

Reporting-MTA: dns; login.bo.opencsw.org
Arrival-Date: Sun, 19 Feb 2012 21:47:58 +0100 (CET)

Final-Recipient: RFC822; vlc-devel at videolan.org
Action: failed
Status: 4.4.7
Remote-MTA: DNS; [127.0.0.1]
Last-Attempt-Date: Fri, 24 Feb 2012 21:52:48 +0100 (CET)

Final-Recipient: RFC822; devel at lists.opencsw.org
Action: failed
Status: 4.4.7
Remote-MTA: DNS; [127.0.0.1]
Last-Attempt-Date: Fri, 24 Feb 2012 21:52:48 +0100 (CET)

Final-Recipient: RFC822; maciej at opencsw.org
Action: failed
Status: 4.4.7
Remote-MTA: DNS; [127.0.0.1]
Last-Attempt-Date: Fri, 24 Feb 2012 21:52:48 +0100 (CET)

Date: Sun, 19 Feb 2012 21:45:44 +0100
From: Maciej Blizinski <maciej at opencsw.org>
To: vlc-devel at videolan.org
Cc: OpenCSW development <devel at lists.opencsw.org>, Maciej Blizinski
 <maciej at opencsw.org>
Subject: [PATCH 1/2] Bootstrap on Solaris
X-Mailer: git-send-email 1.7.5.4

Solaris /bin/sh does not support "$( ... )" nor "if ! test ..."

Tested on Solaris 10.
---
 bootstrap     |   14 +++++++++++---
 modules/genmf |    6 ++++--
 2 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/bootstrap b/bootstrap
index d315be2..1f478e2 100755
--- a/bootstrap
+++ b/bootstrap
@@ -22,7 +22,7 @@ export CYGWIN
 set -e
 set -x
 
-cd "$(dirname "$0")"
+cd "`dirname "$0"`"
 
 ##
 ## Check for various tools
@@ -66,8 +66,16 @@ fi
 
 # Check for autopoint (GNU gettext)
 export AUTOPOINT
-test "$AUTOPOINT" || AUTOPOINT=autopoint
-if ! "$AUTOPOINT" --dry-run --force >/dev/null 2>&1; then
+if test "$AUTOPOINT"; then
+  :
+else
+  AUTOPOINT=autopoint
+fi
+if "$AUTOPOINT" --dry-run --force >/dev/null 2>&1; then
+  # Solaris /bin/sh does not support "if ! test ...", we have to invert the
+  # expression and use the "else" statement.
+  :
+else
   AUTOPOINT=true
   echo > ABOUT-NLS
 fi
diff --git a/modules/genmf b/modules/genmf
index d7b2887..11cd702 100755
--- a/modules/genmf
+++ b/modules/genmf
@@ -7,14 +7,16 @@
 ##  Authors: Sam Hocevar <sam at zoy.org>
 ##           R??mi Denis-Courmont <rem # videolan # org>
 
-cd $(dirname "$0")/.. || exit 1
+cd `dirname "$0"`/.. || exit 1
 
 while test "$1"
 do
   printf "."
   dir="$1"
   modf="modules/${dir}/Modules.am"
-  if ! test -f "$modf"; then
+  if test -f "$modf"; then
+    :
+  else
     echo "$modf does not exist!" >&2
     exit 1
   fi
-- 
1.7.5.4



----- End forwarded message -----



More information about the buildfarm mailing list